-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
{
"name": "strider-github-status",
"version": "2.1.0",
"description": "Add build status indicators to pull requests and commits in github",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/Strider-CD/strider-github-status.git"
},
"keywords": [
"strider",
"github",
"pull-request",
"status",
"commit"
],
"engines": {
"node": ">=4.2"
},
"author": "Jared Forsyth <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Strider-CD/strider-github-status/issues"
},
"homepage": "https://github.com/Strider-CD/strider-github-status",
"dependencies": {
"github": "~0.2.4",
"debug": "~0.7.4"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"scripts": {
"lint": "eslint *.js lib",
"test-only": "mocha -- -R spec",
"pretest": "npm run lint",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"posttest": "istanbul check-coverage",
"prepublish": "npm test && npm prune"
},
"strider": {
"type": "job",
"id": "github-status",
"title": "Github Status",
"webapp": "webapp.js",
"worker": "worker.js",
"icon": "icon.png",
"config": {
"controller": "GithubStatusCtrl"
}
},
"devDependencies": {
"eslint": "^3.1.1",
"expect.js": "~0.2.0",
"istanbul": "~0.2.0",
"jshint": "~2.3.0",
"mocha": "~1.13.0"
}
}