-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "jest-bench",
"version": "29.7.1",
"description": "Run benchmark with Jest",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && jest --projects jest-node.config.ts jest-jsdom.config.ts",
"test:node": "npm run build && jest --projects jest-node.config.ts",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"prepublish": "npm run build",
"keywords": [
"jest",
"benchmark"
],
"author": "Khoi Pham <pckhoi@gmail.com>",
"repository": "github:pckhoi/jest-benchmark",
"license": "MIT",
"peerDependencies": {
"jest": "^29.7.0"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"@jest/reporters": "^29.7.0",
"benchmark": "^2.1.4",
"chalk": "^4.1.0",
"lodash": "^4.17.20",
"ndjson": "^2.0.0"
},
"devDependencies": {
"@jest/environment": "^29.7.0",
"@types/benchmark": "^2.1.0",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.166",
"@types/ndjson": "^2.0.0",
"@types/node": "^14.14.16",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}