-
Notifications
You must be signed in to change notification settings - Fork 258
/
package.json
113 lines (113 loc) · 2.73 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "coveralls",
"description": "takes json-cov output into stdin and POSTs to coveralls.io",
"version": "3.1.1",
"keywords": [
"coverage",
"coveralls"
],
"author": "Gregg Caines",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git://github.com/nickmerwin/node-coveralls.git"
},
"bugs": {
"url": "https://github.com/nickmerwin/node-coveralls/issues"
},
"homepage": "https://github.com/nickmerwin/node-coveralls#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)"
],
"bin": {
"coveralls": "./bin/coveralls.js"
},
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "xo",
"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"
},
"dependencies": {
"js-yaml": "^3.13.1",
"lcov-parse": "^1.0.0",
"log-driver": "^1.2.7",
"minimist": "^1.2.5",
"request": "^2.88.2"
},
"devDependencies": {
"glob-parent": ">=5.1.2",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"should": "^9.0.2",
"shx": "^0.3.2",
"sinon": "^8.1.1",
"trim-newlines": ">=3.0.1",
"xo": "^0.24.0"
},
"engines": {
"node": ">=6"
},
"files": [
"bin/coveralls.js",
"lib/*.js",
"index.js"
],
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"xo": {
"space": true,
"ignores": [
"test/fixtures/"
],
"rules": {
"camelcase": "off",
"capitalized-comments": "off",
"handle-callback-err": "error",
"import/order": "off",
"no-negated-condition": "off",
"object-curly-spacing": [
"error",
"always"
],
"quote-props": [
"error",
"consistent"
],
"space-before-function-paren": [
"error",
"never"
],
"spaced-comment": "off",
"unicorn/filename-case": "off"
},
"overrides": [
{
"files": "test/*.js",
"envs": [
"mocha"
]
}
]
}
}