-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "strider-nyc",
"version": "1.0.0",
"description": "Test Plugin for Strider-CD that uses istanbul, via nyc",
"homepage": "https://github.com/skellertor/strider-nyc",
"main": "webapp.js",
"scripts": {
"lint": "eslint *.js config lib",
"test": "istanbul cover -x '**/node_modules/**' _mocha -- -R json-cov"
},
"repository": {
"type": "git",
"url": "https://github.com/skellertor/strider-nyc.git"
},
"keywords": [
"strider",
"plugin",
"test",
"nyc"
],
"engines": {
"node": ">=4.2"
},
"author": "skellertor",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"underscore": "^1.8.3"
},
"strider": {
"type": "job",
"id": "strider-nyc",
"title": "Strider nyc",
"worker": "worker.js",
"webapp": "webapp.js",
"icon": "icon.png",
"config": true
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.1.1",
"istanbul": "^0.4.5",
"mocha": "^2.0.0",
"nyc": "^8.1.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}