-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.2 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
75
76
77
78
79
80
81
{
"name": "coveralls-next",
"description": "takes json-cov output into stdin and POSTs to coveralls.io",
"version": "4.2.1",
"keywords": [
"coverage",
"coveralls"
],
"author": "Gregg Caines",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git://github.com/jtwebman/coveralls-next.git"
},
"bugs": {
"url": "https://github.com/jtwebman/coveralls-next/issues"
},
"homepage": "https://github.com/jtwebman/coveralls-next#readme",
"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)",
"JT Turner <[email protected]> (https://github.com/jtwebman)"
],
"bin": {
"coveralls": "./bin/coveralls.js"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"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",
"test": "npm run lint && npm run mocha"
},
"dependencies": {
"form-data": "4.0.0",
"js-yaml": "4.1.0",
"lcov-parse": "1.0.0",
"log-driver": "1.2.7",
"minimist": "1.2.8"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"mocha": "10.4.0",
"nyc": "15.1.0",
"prettier": "3.2.5",
"should": "13.2.3",
"shx": "0.3.4",
"sinon": "17.0.1"
},
"engines": {
"node": ">=16"
},
"files": [
"bin/coveralls.js",
"lib/*.js",
"index.js"
],
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}