-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.18 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
52
{
"name": "jest-it-up",
"version": "0.0.0-development",
"description": "Automatically bump up global Jest thresholds whenever coverage goes above them",
"keywords": [
"jest",
"test",
"testing",
"global",
"coverage",
"threshold"
],
"homepage": "https://github.com/rbardini/jest-it-up",
"bugs": {
"url": "https://github.com/rbardini/jest-it-up/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbardini/jest-it-up.git"
},
"license": "MIT",
"author": "Rafael Bardini <[email protected]> (https://rbardini.com)",
"type": "commonjs",
"main": "lib/index.js",
"bin": "./bin/jest-it-up",
"files": [
"bin/*",
"lib/*.js"
],
"scripts": {
"format": "prettier .",
"prepare": "husky",
"test": "jest",
"posttest": "./bin/jest-it-up"
},
"dependencies": {
"ansi-colors": "^4.0.0",
"commander": "^12.0.0",
"prompts": "^2.4.0"
},
"devDependencies": {
"husky": "9.1.5",
"jest": "29.7.0",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0",
"prettier-plugin-packagejson": "2.5.2"
},
"engines": {
"node": ">=20"
}
}