forked from Strider-CD/strider-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "strider-github",
"version": "2.3.1",
"description": "A github & github enterprise provider for strider",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run tests",
"lint": "jshint --verbose lib/",
"tests": "mocha --timeout 5000 -R spec test/"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-github.git"
},
"keywords": [
"git",
"strider"
],
"author": "Jared Forsyth <[email protected]>",
"license": "MIT",
"readmeFilename": "Readme.md",
"strider": {
"id": "github",
"title": "Github",
"type": "provider",
"hosted": true,
"config": {
"controller": "GithubCtrl"
},
"accountConfig": {
"setupLink": "/auth/github"
},
"webapp": "lib/webapp.js",
"worker": "lib/worker.js",
"inline_icon": "github"
},
"devDependencies": {
"expect.js": "~0.2.0",
"jshint": "~2.1.11",
"mocha": "~1.13.0",
"nock": "^2.10.0"
},
"dependencies": {
"async": "~0.2.9",
"crypto": "0.0.3",
"debug": "~0.7.3",
"gravatar": "~1.0.6",
"lodash": "^2.2.1",
"passport": "~0.1.17",
"passport-github": "^1.0.0",
"scmp": "0.0.2",
"ssh-keypair": "~1.0.0",
"step": "0.0.5",
"strider-git": "~0.2.4",
"superagent": "~0.15.4"
}
}