forked from swc-project/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "@swc/jest",
"version": "0.2.21",
"description": "swc integration for jest",
"main": "index.js",
"homepage": "https://github.com/swc-project/jest",
"scripts": {
"build": "npm run lint && tsc",
"test": "npm test --workspaces",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts && echo 'No lint errors found!'"
},
"keywords": [],
"author": "강동윤 <[email protected]>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/swc-project/jest.git"
},
"peerDependencies": {
"@swc/core": "*"
},
"dependencies": {
"@jest/create-cache-key-function": "^27.4.2"
},
"devDependencies": {
"@jest/transform": "^27.5.1",
"@swc/core": "^1.2.177",
"@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"
],
"workspaces": [
"examples/react"
]
}