2016-09-17 00:10:30 +08:00
|
|
|
{
|
2016-10-13 02:43:48 +08:00
|
|
|
"name": "github-probot",
|
2016-09-17 00:10:30 +08:00
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "a trainable robot that responds to activity on GitHub",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2016-09-18 00:03:19 +08:00
|
|
|
"start": "node server.js",
|
2016-10-10 23:29:42 +08:00
|
|
|
"test": "mocha && xo"
|
2016-09-17 00:10:30 +08:00
|
|
|
},
|
|
|
|
"author": "Brandon Keepers",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2016-10-15 15:15:45 +08:00
|
|
|
"debug": "2.2.0",
|
2016-09-17 02:21:53 +08:00
|
|
|
"expect": "^1.20.2",
|
2016-10-15 15:15:45 +08:00
|
|
|
"github": "^5.2.0",
|
2016-10-28 23:18:27 +08:00
|
|
|
"github-webhook-handler": "^0.6.0",
|
2016-10-09 13:29:05 +08:00
|
|
|
"handlebars": "^4.0.5",
|
2016-10-28 23:18:27 +08:00
|
|
|
"jsdoc": "^3.4.2",
|
|
|
|
"tree-walk": "^0.4.0"
|
2016-09-17 00:10:30 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-09-17 02:44:21 +08:00
|
|
|
"mocha": "^3.0.2",
|
2016-10-17 13:43:11 +08:00
|
|
|
"pegjs": "^0.10.0",
|
2016-09-17 02:44:21 +08:00
|
|
|
"xo": "^0.16.0"
|
|
|
|
},
|
|
|
|
"xo": {
|
2016-10-10 23:27:37 +08:00
|
|
|
"esnext": true,
|
2016-09-17 02:44:21 +08:00
|
|
|
"space": true,
|
2016-10-28 23:30:10 +08:00
|
|
|
"rules": {
|
|
|
|
"no-else-return": 0
|
|
|
|
},
|
2016-09-17 02:44:21 +08:00
|
|
|
"ignores": [],
|
2016-10-09 13:29:05 +08:00
|
|
|
"envs": [
|
|
|
|
"node",
|
|
|
|
"mocha"
|
|
|
|
]
|
2016-09-17 23:53:42 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "6.6.0"
|
2016-09-17 00:10:30 +08:00
|
|
|
}
|
|
|
|
}
|