-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.58 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
53
54
55
56
57
58
59
60
{
"name": "@jobber/jest-a-coverage-slip-detector",
"version": "1.4.0",
"description": "Ensures that new files have jest coverage and that legacy files only increase",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint .",
"prettier-format": "prettier --config .prettierrc 'src/**/*.js' --write",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"postversion": "git push -u origin HEAD && git push origin main --tags",
"release": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GetJobber/jest-a-coverage-slip-detector.git"
},
"keywords": [
"jest",
"ratchet"
],
"bin": {
"jest-a-coverage-slip-detector": "bin/jest-a-coverage-slip-detector"
},
"files": [
"bin/*",
"src/*.js",
"src/index.d.ts",
"LICENSE"
],
"author": "Jobber",
"license": "MIT",
"bugs": {
"url": "https://github.com/GetJobber/jest-a-coverage-slip-detector/issues"
},
"homepage": "https://github.com/GetJobber/jest-a-coverage-slip-detector#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1"
},
"dependencies": {
"chalk": "^4.1.2",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.1.6",
"lodash": "^4.17.21",
"minimatch": "^9.0.3",
"table": "^6.8.1"
},
"peerDependencies": {
"@jest/types": "*"
}
}