-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "jest-light-runner",
"version": "0.6.0",
"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": "^30.0.0-alpha.1",
"@jest/fake-timers": "^30.0.0-alpha.1",
"jest-circus": "^30.0.0-alpha.1",
"jest-each": "^30.0.0-alpha.1",
"jest-mock": "^30.0.0-alpha.1",
"jest-snapshot": "^30.0.0-alpha.1",
"supports-color": "^9.2.1",
"tinypool": "^0.8.1"
},
"devDependencies": {
"prettier": "^2.6.2"
},
"peerDependencies": {
"jest": "^27.5.0 || ^28.0.0 || ^29.0.0|| ^30.0.0-0"
},
"engines": {
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
},
"license": "MIT",
"files": [
"src"
],
"packageManager": "[email protected]"
}