-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 942 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
{
"name": "github-build-bot",
"version": "0.3.0",
"devDependencies": {
"chai": "^3.3.0",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-eslint": "^1.0.0",
"gulp-mocha": "^2.1.3"
},
"dependencies": {
"babel-eslint": "^4.1.3",
"babel-runtime": "^5.8.24",
"body-parser": "^1.14.0",
"express": "^4.13.3",
"forever": "^0.15.2",
"github": "^2.6.0",
"mkdirp": "^0.5.1",
"os-family": "^1.0.0",
"promise": "^7.0.4",
"request": "^2.87.0",
"request-promise": "^4.2.2"
},
"main": "lib/index",
"bin": {
"github-build-bot": "./bin/github-build-bot.js"
},
"scripts": {
"test": "gulp test",
"start": "forever start ./bin/github-build-bot.js",
"stop": "forever stop -t ./bin/github-build-bot.js",
"restart": "forever restart -t ./bin/github-build-bot.js",
"logs": "forever logs -f 0"
},
"files": [
"bin",
"lib"
]
}