forked from nicolo-ribaudo/jest-light-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 828 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
{
"name": "jest-light-runner",
"version": "0.1.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)",
"type": "module",
"exports": {
".": "./src/index.js"
},
"scripts": {
"format": "yarn prettier . --ignore-unknown --write",
"lint": "yarn prettier . --ignore-unknown --check"
},
"dependencies": {
"expect": "^27.5.1",
"jest-circus": "^27.5.1",
"jest-each": "^27.5.1",
"jest-mock": "^27.5.1",
"jest-snapshot": "^27.5.1",
"piscina": "^3.1.0",
"supports-color": "^9.2.1"
},
"devDependencies": {
"prettier": "^2.6.2"
},
"peerDependencies": {
"jest": "^27.0.0"
},
"engines": {
"node": ">=12.20.0"
},
"license": "MIT"
}