forked from ceejbot/jthoober
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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": "jthoober",
"description": "run bash scripts when you get a push event from a github webhook",
"version": "1.1.0",
"author": "C J Silverio <[email protected]>",
"contributors": [
"Joey Baker <[email protected]>",
"C J Silverio <[email protected]>"
],
"bin": {
"jthoober": "server.js"
},
"bugs": {
"url": "https://github.com/ceejbot/jthoober/issues"
},
"dependencies": {
"bistre": "~1.0.1",
"bole": "~2.0.0",
"github-webhook-handler": "~0.3.4",
"mkdirp": "~0.5.0",
"restify": "~2.8.5",
"through2": "^0.6.3",
"touch": "0.0.3",
"yargs": "~2.3.0"
},
"devDependencies": {
"lab": "~5.1.1",
"must": "~0.12.0",
"rimraf": "^2.2.8",
"sinon": "~1.12.2"
},
"homepage": "https://github.com/ceejbot/jthoober",
"keywords": [
"github",
"webhook",
"deploy"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ceejbot/jthoober.git"
},
"scripts": {
"test": "lab -v -l -c test/",
"dev": "NODE_ENV=dev node server.js --rules ./example-rules.js --secret sooper-sekrit",
"lint": "jshint lib/*.js *.js test/*.js"
}
}