forked from Strider-CD/strider-build-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 979 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
{
"name": "strider-build-badge",
"version": "0.1.0",
"description": "Enables strider to have build status badges",
"main": "webapp.js",
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"scripts": {
"lint": "eslint *.js lib",
"test-only": "node_modules/mocha/bin/_mocha -- -R spec",
"pretest": "npm run lint",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"posttest": "istanbul check-coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/microadam/strider-build-badge.git"
},
"keywords": [
"strider",
"plugin"
],
"engines": {
"node": ">=4.2"
},
"author": "Adam Duncan <[email protected]>",
"license": "MIT",
"strider": {
"type": "basic",
"id": "buildbadge",
"title": "Build Badge",
"webapp": "webapp.js"
},
"devDependencies": {
"eslint": "^3.1.1",
"expect.js": "~0.3.1",
"istanbul": "~0.4.4",
"mocha": "~2.5.3"
}
}