probot/package.json

72 lines
1.7 KiB
JSON

{
"name": "probot",
"version": "0.0.0-development",
"description": "a trainable robot that responds to activity on GitHub",
"repository": "https://github.com/probot/probot",
"main": "lib/index.js",
"bin": {
"probot": "./bin/probot.js"
},
"scripts": {
"start": "node ./bin/probot run",
"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"
]
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"bottleneck": "^1.16.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": "~4.0.0",
"eventsource": "^1.0.5",
"express": "^4.16.2",
"github": "^12.0.3",
"github-webhook-handler": "^0.7.0",
"hbs": "^4.0.1",
"jest": "^22.0.3",
"js-yaml": "^3.9.1",
"jsonwebtoken": "^8.1.0",
"pkg-conf": "^2.0.0",
"promise-events": "^0.1.3",
"raven": "^2.1.2",
"resolve": "^1.4.0",
"semver": "^5.4.1"
},
"devDependencies": {
"connect-sse": "^1.2.0",
"eslint": "^4.6.1",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"jsdoc": "^3.5.5",
"jsdoc-strip-async-await": "^0.1.0",
"minami": "^1.1.1",
"nock": "^9.0.19",
"semantic-release": "^8.0.3",
"smee-client": "^1.0.1",
"standard": "^10.0.3",
"supertest": "^3.0.0"
},
"standard": {
"env": [
"jest"
],
"plugins": [
"markdown"
]
},
"engines": {
"node": ">=7.7"
}
}