forked from probot/probot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.38 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
60
61
62
63
64
65
66
67
68
{
"name": "probot",
"version": "0.4.1",
"description": "a trainable robot that responds to activity on GitHub",
"repository": "https://github.com/probot/probot",
"main": "index.js",
"bin": {
"probot": "./bin/probot"
},
"scripts": {
"start": "node ./bin/probot run",
"test": "mocha && xo"
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"bottleneck": "^1.15.1",
"bunyan": "^1.8.5",
"bunyan-format": "^0.2.1",
"bunyan-sentry-stream": "^1.1.0",
"cache-manager": "^2.4.0",
"commander": "^2.9.0",
"dotenv": "~4.0.0",
"github": "^8.1.0",
"github-integration": "^1.0.0",
"github-webhook-handler": "^0.6.0",
"load-plugins": "^2.1.2",
"pkg-conf": "^2.0.0",
"raven": "^1.2.0",
"resolve": "^1.3.2"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.0.2",
"xo": "^0.19.0"
},
"xo": {
"esnext": true,
"space": true,
"rules": {
"camelcase": 1,
"no-else-return": 0,
"key-spacing": 0
},
"ignores": [],
"envs": [
"node",
"mocha"
],
"globals": [
"on",
"include",
"contents"
],
"overrides": [
{
"files": "test/**/*.js",
"rules": {
"max-nested-callbacks": "off",
"prefer-arrow-callback": "off"
}
}
]
},
"engines": {
"node": "^7.7"
}
}