-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "bitbucket-codeship-status",
"version": "2.0.0",
"description": "Small app that will automatically update newly created pull requests in Bitbucket with the branch's Codeship build status.",
"private": true,
"main": "app.js",
"scripts": {
"test": "grunt test && mocha",
"watch": "mocha -w"
},
"engines": {
"node": "0.10.33"
},
"repository": {
"type": "git",
"url": "https://github.com/chesleybrown/bitbucket-codeship-status.git"
},
"keywords": [
"bitbucket",
"codeship",
"build status"
],
"author": "Chesley",
"license": "MIT",
"bugs": {
"url": "https://github.com/chesleybrown/bitbucket-codeship-status/issues"
},
"homepage": "https://github.com/chesleybrown/bitbucket-codeship-status",
"dependencies": {
"basic-auth-connect": "1.0.0",
"body-parser": "^1.9.2",
"ejs": "2.3.4",
"express": "^4.10.1",
"log4js": "^0.6.28",
"request": "^2.47.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-tabs4life": "^2.0.2",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.0.1",
"chai": "^3.4.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"supertest": "^1.1.0",
"mockery": "^1.4.0"
}
}