forked from swc-project/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 936 Bytes
/
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
{
"name": "@swc/jest",
"version": "0.2.8",
"description": "swc integration for jest",
"main": "index.js",
"homepage": "https://github.com/swc-project/jest",
"scripts": {
"build": "tsc",
"test": "npm test --workspaces",
"prepublishOnly": "npm run build"
},
"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.3.1"
},
"devDependencies": {
"@swc/core": "^1.2.85",
"@types/node": "^14.17.14",
"jest": "^26.4.2",
"typescript": "^4.0.2"
},
"files": [
"index.js"
],
"engines": {
"npm": "^8.0.0"
},
"workspaces": [
"examples/*"
]
}