-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.42 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": "jthoober",
"description": "run bash scripts when you get a push event from a github webhook",
"version": "4.0.0",
"author": "C J Silverio <[email protected]>",
"bin": {
"jthoober": "bin/jthoober.js"
},
"bugs": {
"url": "https://github.com/ceejbot/jthoober/issues"
},
"dependencies": {
"bistre": "~1.0.1",
"bole": "~3.0.2",
"dotenv": "~4.0.0",
"github-webhook-handler": "~0.6.0",
"restify": "~5.0.1",
"through2": "~2.0.3",
"yargs": "~9.0.1"
},
"devDependencies": {
"coveralls": "~2.13.1",
"eslint-config-ceejbot": "~1.1.0",
"mocha": "~3.5.3",
"must": "~0.13.4",
"nyc": "~11.2.1",
"restify-clients": "~1.5.1",
"sinon": "~3.3.0",
"xo": "~0.18.2"
},
"homepage": "https://github.com/ceejbot/jthoober",
"keywords": [
"deploy",
"github",
"webhook"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ceejbot/jthoober.git"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"dev": "NODE_ENV=dev ./runner.js --rules ./example-rules.js --secret sooper-sekrit",
"lint": "xo",
"test": "nyc mocha -t 5000 --check-leaks -R spec test/test-*.js",
"travis": "npm run lint && npm test"
},
"xo": {
"extends": "eslint-config-ceejbot",
"rules": {
"object-shorthand": 0,
"unicorn/prefer-starts-ends-with": 0
}
}
}