Files
probot/package.json
2017-03-11 22:38:58 -06:00

59 lines
1.1 KiB
JSON

{
"name": "github-probot",
"version": "1.0.0",
"description": "a trainable robot that responds to activity on GitHub",
"main": "index.js",
"bin": {
"probot": "./bin/probot.js"
},
"scripts": {
"start": "node index.js",
"test": "mocha && xo"
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"bunyan": "^1.8.5",
"dotenv-safe": "^4.0.3",
"github-integration": "^1.0.0",
"github-webhook-handler": "^0.6.0",
"pkg-conf": "^2.0.0",
"resolve": "^1.3.2"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.0.2",
"xo": "^0.16.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"
}
}
]
},
"engines": {
"node": "~7.7.0"
}
}