forked from 2xic/jest-light-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 938 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
{
"name": "jest-light-runner",
"version": "0.4.1",
"description": "A Jest runner that runs tests directly in bare Node.js, without virtualizing the environment.",
"author": "Nicolò Ribaudo (https://github.com/nicolo-ribaudo)",
"repository": "nicolo-ribaudo/jest-light-runner",
"type": "module",
"exports": {
".": "./src/index.js"
},
"scripts": {
"format": "yarn prettier . --write",
"lint": "yarn prettier . --check"
},
"dependencies": {
"@jest/expect": "^29.0.1",
"@jest/fake-timers": "^29.2.2",
"jest-circus": "^29.0.1",
"jest-each": "^29.0.1",
"jest-mock": "^29.0.1",
"jest-snapshot": "^29.0.1",
"piscina": "^3.1.0",
"supports-color": "^9.2.1"
},
"devDependencies": {
"prettier": "^2.6.2"
},
"peerDependencies": {
"jest": "^27.5.0 || ^28.0.0 || ^29.0.0"
},
"engines": {
"node": ">=12.20.0"
},
"license": "MIT",
"files": [
"src"
]
}