-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.29 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-bitbucket",
"version": "1.4.3",
"description": "A Bitbucket provider for Strider",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run test-only",
"lint": "eslint config lib test",
"test-only": "mocha -R spec",
"tdd": "mocha -R spec -w"
},
"repository": {
"type": "git",
"url": "https://github.com/Strider-CD/strider-bitbucket.git"
},
"keywords": [
"git",
"hg",
"bitbucket",
"oauth",
"strider"
],
"engines": {
"node": ">=4.2"
},
"author": "Jared Forsyth <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"strider": {
"id": "bitbucket",
"title": "Bitbucket",
"type": "provider",
"hosted": true,
"config": {
"controller": "BitbucketCtrl"
},
"accountConfig": {
"setupLink": "/account/#provider-bitbucket"
},
"webapp": "lib/webapp.js",
"worker": "lib/worker.js",
"inline_icon": "bitbucket"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.2.2",
"mocha": "^3.0.2",
"sinon": "^1.17.5"
},
"dependencies": {
"async": "^2.0.1",
"debug": "^2.2.0",
"gravatar": "^1.5.2",
"oauth": "^0.9.10",
"passport-bitbucket": "^2.0.0",
"strider-git": "^0.2.4",
"strider-hg": "^0.2.3"
}
}