-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
53 lines (53 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@swc/jest",
"version": "0.2.37",
"description": "swc integration for jest",
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://github.com/swc-project/pkgs/tree/main/packages/jest",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build && node scripts/publish_helper.js prepublish",
"postpublish": "node scripts/publish_helper.js postpublish",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "강동윤 <[email protected]>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/swc-project/pkgs.git"
},
"peerDependencies": {
"@swc/core": "*"
},
"dependencies": {
"@jest/create-cache-key-function": "^29.7.0",
"@swc/counter": "workspace:^",
"jsonc-parser": "^3.2.0"
},
"devDependencies": {
"@jest/transform": "^27.5.1",
"@swc/core": "^1.6.4",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"jest": "^27.4.4",
"typescript": "^4.5.3"
},
"engines": {
"npm": ">= 7.0.0"
},
"files": [
"index.js",
"index.d.ts"
],
"workspaces": [
"examples/react"
]
}