-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 KB
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
{
"name": "check-code-coverage",
"version": "0.0.0-development",
"description": "Utilities for checking the coverage produced by NYC against extra or missing files",
"main": "src/index.js",
"bin": {
"check-coverage": "bin/check-coverage.js",
"only-covered": "bin/only-covered.js",
"check-total": "bin/check-total.js",
"update-badge": "bin/update-badge.js",
"set-gh-status": "bin/set-gh-status.js"
},
"files": [
"bin",
"src",
"!src/test.js"
],
"scripts": {
"test": "ava src/test.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/check-code-coverage.git"
},
"keywords": [
"coverage",
"code-coverage",
"utility",
"nyc"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/check-code-coverage/issues"
},
"homepage": "https://github.com/bahmutov/check-code-coverage#readme",
"devDependencies": {
"ava": "3.15.0",
"prettier": "2.8.8",
"semantic-release": "19.0.5"
},
"dependencies": {
"arg": "4.1.3",
"debug": "4.3.4",
"got": "11.8.6",
"lodash": "4.17.21"
}
}