-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.28 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
47
48
49
50
51
{
"name": "jest-watch-toggle-config",
"version": "3.0.0",
"description": "Jest watch plugin for toggling boolean settings (e.g. verbosity, test coverage)",
"main": "src/index.js",
"engines": {
"node": ">= 16"
},
"type": "module",
"scripts": {
"lint": "eslint src",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"keywords": [
"jest",
"plugin",
"watch",
"toggle"
],
"author": "Christophe Porteneuve <[email protected]> (https://delicious-insights.com/)",
"bugs": {
"url": "https://github.com/jest-community/jest-watch-toggle-config/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]/jest-community/jest-watch-toggle-config"
},
"jest": {
"transform": {}
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8"
},
"peerDependencies": {
"jest": ">= 23.4.1"
},
"dependencies": {
"chalk": "^5.2.0"
}
}