-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1023 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "coverage",
"version": "0.4.1",
"description": "A command-line tool to collect and report code coverage of a JavaScript program",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"repository": "shinnn/coverage",
"license": "ISC",
"scripts": {
"pretest": "eslint .",
"test": "node . node . test.js"
},
"files": [
"index.js"
],
"bin": {
"coverage": "index.js"
},
"keywords": [
"code",
"coverage",
"quality",
"report",
"analysis",
"ecmascript",
"command",
"command-line",
"cli",
"travis-ci",
"github-actions",
"appveyor",
"circleci",
"codecov"
],
"dependencies": {
"c8": "^5.0.1",
"foreground-child": "^1.5.6",
"normalize-package-data": "^2.5.0",
"slash": "^3.0.0",
"test-exclude": "^5.2.3",
"which": "^1.3.1",
"yargs-parser": "^13.1.1"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.10.4",
"eslint": "^5.16.0",
"lodash": "^4.17.11",
"rmfr": "^2.0.0",
"tape": "^4.10.2"
},
"eslintConfig": {
"extends": "@shinnn"
}
}