forked from mirrors/probot
42 lines
793 B
JSON
42 lines
793 B
JSON
{
|
|
"name": "github-probot",
|
|
"version": "1.0.0",
|
|
"description": "a trainable robot that responds to activity on GitHub",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"test": "mocha && xo"
|
|
},
|
|
"author": "Brandon Keepers",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"debug": "2.2.0",
|
|
"expect": "^1.20.2",
|
|
"github": "^5.2.0",
|
|
"github-webhook-handler": "^0.6.0",
|
|
"handlebars": "^4.0.5",
|
|
"jsdoc": "^3.4.2",
|
|
"tree-walk": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^3.0.2",
|
|
"pegjs": "^0.10.0",
|
|
"xo": "^0.16.0"
|
|
},
|
|
"xo": {
|
|
"esnext": true,
|
|
"space": true,
|
|
"rules": {
|
|
"no-else-return": 0
|
|
},
|
|
"ignores": [],
|
|
"envs": [
|
|
"node",
|
|
"mocha"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "6.6.0"
|
|
}
|
|
}
|