forked from nickmerwin/node-coveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "coveralls",
"description": "takes json-cov output into stdin and POSTs to coveralls.io",
"keywords": [
"coverage",
"coveralls"
],
"version": "3.0.11",
"bugs": {
"url": "https://github.com/nickmerwin/node-coveralls/issues"
},
"scripts": {
"lint": "jshint ./lib ./test ./index.js",
"mocha": "_mocha -b -R spec",
"test-cov": "nyc npm run mocha",
"test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose",
"test": "npm run lint && npm run mocha"
},
"bin": {
"coveralls": "./bin/coveralls.js"
},
"maintainers": [
"Nick Merwin <[email protected]> (https://coveralls.io)"
],
"contributors": [
"Gregg Caines <[email protected]> (http://caines.ca)",
"Joshua Ma <[email protected]> (http://joshma.com)",
"Alan Gutierrez <[email protected]> (http://www.prettyrobots.com/)",
"Kir Belevich (https://github.com/svg)",
"elliotcable <[email protected]> (http://elliottcable.name/)",
"Slotos <[email protected]> (http://slotos.net)",
"mattjmorrison <[email protected]> (http://mattjmorrison.com)",
"Arpad Borsos <[email protected]> (http://swatinem.de/)",
"Adam Moss (https://github.com/adam-moss)"
],
"dependencies": {
"js-yaml": "^3.13.1",
"lcov-parse": "^1.0.0",
"log-driver": "^1.2.7",
"minimist": "^1.2.5"
},
"devDependencies": {
"jshint": "^2.11.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.0",
"should": "^13.2.3",
"shx": "^0.3.2",
"sinon-restore": "^1.0.1"
},
"engines": {
"node": ">=6"
},
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/nickmerwin/node-coveralls.git"
},
"author": "Gregg Caines",
"license": "BSD-2-Clause",
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"files": [
"{bin,lib}/*.js",
"index.js"
]
}