forked from mirrors/probot
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
{
|
|
"name": "probot",
|
|
"version": "0.2.0",
|
|
"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": "probot run",
|
|
"test": "mocha && xo"
|
|
},
|
|
"author": "Brandon Keepers",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bunyan": "^1.8.5",
|
|
"bunyan-format": "^0.2.1",
|
|
"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",
|
|
"pkg-conf": "^2.0.0",
|
|
"resolve": "^1.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"expect": "^1.20.2",
|
|
"mocha": "^3.0.2",
|
|
"xo": "^0.18.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"
|
|
}
|
|
}
|