mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-15 18:37:42 +08:00
* origin/master: (79 commits) Fix typo Add nodemon option to development docs Document event simulation document tailing logs on heroku Use commander for simulate command Use receive api to deliver event Add simulate as a subcommand Rename simulate script and fix lint errors Update LICENSE 0.7.5 chore(CHANGELOG): 0.7.5 fix: allow to set PRIVATE_KEY with "\\n" characters test: allow to set PRIVATE_KEY with "\\n" characters Don't capitalize npm 0.7.4 Update CHANGLEOG for 0.7.4 Fix bug introduced in 0.7.3 Consolidate Robot tests Fix changelog for 0.7.3 release 0.7.3 ...
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "probot",
|
|
"version": "0.7.5",
|
|
"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 --extend eslint-config-probot",
|
|
"doc": "jsdoc -c .jsdoc.json"
|
|
},
|
|
"author": "Brandon Keepers",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bottleneck": "^1.16.0",
|
|
"bunyan": "^1.8.5",
|
|
"bunyan-format": "^0.2.1",
|
|
"bunyan-sentry-stream": "^1.1.0",
|
|
"cache-manager": "^2.4.0",
|
|
"commander": "^2.10.0",
|
|
"dotenv": "~4.0.0",
|
|
"github": "^9.2.0",
|
|
"github-app": "^3.0.0",
|
|
"github-webhook-handler": "^0.6.0",
|
|
"js-yaml": "^3.8.4",
|
|
"load-plugins": "^2.1.2",
|
|
"pkg-conf": "^2.0.0",
|
|
"promise-events": "^0.1.3",
|
|
"raven": "^2.1.0",
|
|
"resolve": "^1.3.2",
|
|
"semver": "^5.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-config-probot": "^0.1.0",
|
|
"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": {
|
|
"overrides": [
|
|
{
|
|
"files": "test/**/*.js",
|
|
"rules": {
|
|
"max-nested-callbacks": "off",
|
|
"prefer-arrow-callback": "off"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=7.7"
|
|
}
|
|
}
|