mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-15 02:18:58 +08:00
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "probot",
|
|
"version": "6.2.0",
|
|
"description": "🤖 A framework for building GitHub Apps to automate and improve your workflow",
|
|
"repository": "https://github.com/probot/probot",
|
|
"main": "lib/index.js",
|
|
"bin": {
|
|
"probot": "./bin/probot.js"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --coverage && standard && npm run doc-lint",
|
|
"doc-lint": "standard docs/**/*.md",
|
|
"doc": "jsdoc -c .jsdoc.json",
|
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
|
"postsemantic-release": "script/publish-docs"
|
|
},
|
|
"jest": {
|
|
"setupFiles": [
|
|
"<rootDir>/test/setup.js"
|
|
]
|
|
},
|
|
"keywords": ["probot", "github-apps", "github", "automation", "robots", "workflow"],
|
|
"bugs": "https://github.com/probot/probot/issues",
|
|
"homepage": "https://probot.github.io",
|
|
"author": "Brandon Keepers",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@octokit/rest": "^15.6.0",
|
|
"@octokit/webhooks": "^3.1.1",
|
|
"bottleneck": "^2.2.0",
|
|
"bunyan": "^1.8.12",
|
|
"bunyan-format": "^0.2.1",
|
|
"bunyan-sentry-stream": "^1.1.0",
|
|
"cache-manager": "^2.4.0",
|
|
"commander": "^2.11.0",
|
|
"dotenv": "~5.0.0",
|
|
"express": "^4.16.2",
|
|
"express-async-errors": "^2.1.0",
|
|
"hbs": "^4.0.1",
|
|
"js-yaml": "^3.9.1",
|
|
"jsonwebtoken": "^8.1.0",
|
|
"pkg-conf": "^2.0.0",
|
|
"promise-events": "^0.1.3",
|
|
"raven": "^2.4.2",
|
|
"resolve": "^1.4.0",
|
|
"semver": "^5.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"connect-sse": "^1.2.0",
|
|
"eslint": "^4.18.2",
|
|
"eslint-plugin-markdown": "^1.0.0-beta.6",
|
|
"jest": "^22.0.3",
|
|
"jsdoc": "^3.5.5",
|
|
"jsdoc-strip-async-await": "^0.1.0",
|
|
"minami": "^1.1.1",
|
|
"nock": "^9.2.0",
|
|
"semantic-release": "^15.0.0",
|
|
"smee-client": "^1.0.1",
|
|
"standard": "^11.0.0",
|
|
"supertest": "^3.0.0"
|
|
},
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
],
|
|
"plugins": [
|
|
"markdown"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=7.7"
|
|
}
|
|
}
|