forked from mirrors/probot
74 lines
1.5 KiB
JSON
74 lines
1.5 KiB
JSON
{
|
|
"name": "probot",
|
|
"version": "0.5.0",
|
|
"description": "a trainable robot that responds to activity on GitHub",
|
|
"repository": "https://github.com/probot/probot",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"probot": "./bin/probot.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node ./bin/probot run",
|
|
"test": "mocha && xo",
|
|
"doc": "jsdoc -c .jsdoc.json"
|
|
},
|
|
"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": "^9.2.0",
|
|
"github-integration": "^2.0.0",
|
|
"github-webhook-handler": "^0.6.0",
|
|
"load-plugins": "^2.1.2",
|
|
"pkg-conf": "^2.0.0",
|
|
"raven": "^2.0.0",
|
|
"resolve": "^1.3.2",
|
|
"semver": "^5.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"expect": "^1.20.2",
|
|
"jsdoc": "^3.4.3",
|
|
"jsdoc-strip-async-await": "^0.1.0",
|
|
"minami": "^1.1.1",
|
|
"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"
|
|
}
|
|
}
|