2016-09-17 00:10:30 +08:00
|
|
|
{
|
2017-03-13 00:10:45 +08:00
|
|
|
"name": "probot",
|
2019-01-12 14:02:37 +08:00
|
|
|
"version": "0.0.0-development",
|
2018-05-13 13:16:43 +08:00
|
|
|
"description": "🤖 A framework for building GitHub Apps to automate and improve your workflow",
|
2017-03-13 00:10:45 +08:00
|
|
|
"repository": "https://github.com/probot/probot",
|
2017-11-21 11:13:18 +08:00
|
|
|
"main": "lib/index.js",
|
2018-05-26 04:17:19 +08:00
|
|
|
"types": "./lib/index.d.ts",
|
2017-03-12 05:58:36 +08:00
|
|
|
"bin": {
|
2017-04-27 05:39:01 +08:00
|
|
|
"probot": "./bin/probot.js"
|
2017-03-12 05:58:36 +08:00
|
|
|
},
|
2016-09-17 00:10:30 +08:00
|
|
|
"scripts": {
|
2018-05-26 04:17:19 +08:00
|
|
|
"build": "rimraf lib && tsc -p tsconfig.json",
|
|
|
|
"start": "node ./bin/probot run",
|
2018-07-13 23:23:50 +08:00
|
|
|
"lint": "tslint --project test",
|
|
|
|
"test": "tsc --noEmit -p test && jest --coverage && npm run lint && npm run doc-lint",
|
2018-07-07 03:33:35 +08:00
|
|
|
"doc-lint": "standard-markdown docs/",
|
2018-06-27 07:02:59 +08:00
|
|
|
"doc": "typedoc --options .typedoc.json",
|
2018-05-26 04:17:19 +08:00
|
|
|
"prepare": "npm run build"
|
2016-09-17 00:10:30 +08:00
|
|
|
},
|
2018-05-26 04:17:19 +08:00
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"bin",
|
|
|
|
"static",
|
|
|
|
"views"
|
|
|
|
],
|
2017-10-14 21:02:34 +08:00
|
|
|
"jest": {
|
|
|
|
"setupFiles": [
|
|
|
|
"<rootDir>/test/setup.js"
|
2018-05-26 04:17:19 +08:00
|
|
|
],
|
|
|
|
"coveragePathIgnorePatterns": [
|
|
|
|
"<rootDir>/lib/"
|
|
|
|
],
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"node"
|
|
|
|
],
|
|
|
|
"transform": {
|
2018-09-25 08:12:53 +08:00
|
|
|
".+\\.tsx?$": "ts-jest"
|
2018-05-26 04:17:19 +08:00
|
|
|
},
|
|
|
|
"testMatch": [
|
2018-09-27 03:22:11 +08:00
|
|
|
"<rootDir>/test/**/*.test.(ts|js)"
|
2018-05-26 04:17:19 +08:00
|
|
|
],
|
|
|
|
"globals": {
|
|
|
|
"ts-jest": {
|
2018-07-15 19:26:32 +08:00
|
|
|
"skipBabel": true
|
2018-05-26 04:17:19 +08:00
|
|
|
}
|
2018-07-28 07:03:55 +08:00
|
|
|
},
|
|
|
|
"testURL": "http://localhost/"
|
2017-10-14 21:02:34 +08:00
|
|
|
},
|
2018-06-10 12:20:03 +08:00
|
|
|
"keywords": [
|
|
|
|
"probot",
|
|
|
|
"github-apps",
|
|
|
|
"github",
|
|
|
|
"automation",
|
|
|
|
"robots",
|
|
|
|
"workflow"
|
|
|
|
],
|
2018-05-13 13:16:43 +08:00
|
|
|
"bugs": "https://github.com/probot/probot/issues",
|
|
|
|
"homepage": "https://probot.github.io",
|
2016-09-17 00:10:30 +08:00
|
|
|
"author": "Brandon Keepers",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2018-11-14 07:46:08 +08:00
|
|
|
"@octokit/rest": "^15.18.0",
|
2018-09-14 07:50:39 +08:00
|
|
|
"@octokit/webhooks": "^5.0.2",
|
2018-10-02 21:25:52 +08:00
|
|
|
"@types/supports-color": "^5.3.0",
|
2018-08-22 22:40:28 +08:00
|
|
|
"bottleneck": "^2.8.0",
|
2017-08-23 11:06:31 +08:00
|
|
|
"bunyan": "^1.8.12",
|
2017-03-20 00:51:22 +08:00
|
|
|
"bunyan-format": "^0.2.1",
|
2017-04-09 01:18:31 +08:00
|
|
|
"bunyan-sentry-stream": "^1.1.0",
|
2017-03-28 11:13:17 +08:00
|
|
|
"cache-manager": "^2.4.0",
|
2018-10-10 21:23:05 +08:00
|
|
|
"commander": "^2.19.0",
|
2018-12-11 03:42:25 +08:00
|
|
|
"dotenv": "~6.2.0",
|
2017-11-26 12:16:54 +08:00
|
|
|
"express": "^4.16.2",
|
2018-06-04 08:54:58 +08:00
|
|
|
"express-async-errors": "^3.0.0",
|
2017-11-21 22:21:39 +08:00
|
|
|
"hbs": "^4.0.1",
|
2018-10-26 23:56:25 +08:00
|
|
|
"is-base64": "0.1.0",
|
2017-08-23 11:06:31 +08:00
|
|
|
"js-yaml": "^3.9.1",
|
2017-11-20 13:11:33 +08:00
|
|
|
"jsonwebtoken": "^8.1.0",
|
2017-03-12 12:38:58 +08:00
|
|
|
"pkg-conf": "^2.0.0",
|
2017-07-01 01:34:23 +08:00
|
|
|
"promise-events": "^0.1.3",
|
2018-09-27 03:22:11 +08:00
|
|
|
"qs": "^6.5.2",
|
2018-03-15 12:20:01 +08:00
|
|
|
"raven": "^2.4.2",
|
2017-08-23 11:06:31 +08:00
|
|
|
"resolve": "^1.4.0",
|
2018-06-10 12:20:03 +08:00
|
|
|
"semver": "^5.5.0",
|
2018-12-21 23:42:31 +08:00
|
|
|
"supports-color": "^6.0.0",
|
2018-09-27 03:22:11 +08:00
|
|
|
"update-dotenv": "^1.1.0",
|
2018-06-10 12:20:03 +08:00
|
|
|
"uuid": "^3.2.1"
|
2016-09-17 00:10:30 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-05-26 04:17:19 +08:00
|
|
|
"@types/bunyan": "^1.8.4",
|
|
|
|
"@types/bunyan-format": "^0.2.0",
|
|
|
|
"@types/cache-manager": "^1.2.6",
|
|
|
|
"@types/dotenv": "^4.0.2",
|
|
|
|
"@types/express": "^4.0.39",
|
2018-06-28 11:31:18 +08:00
|
|
|
"@types/jest": "^23.1.3",
|
2018-05-26 04:17:19 +08:00
|
|
|
"@types/js-yaml": "^3.10.1",
|
2018-12-11 03:43:43 +08:00
|
|
|
"@types/jsonwebtoken": "^8.3.0",
|
2018-05-26 04:17:19 +08:00
|
|
|
"@types/nock": "^9.1.0",
|
2018-08-18 06:57:52 +08:00
|
|
|
"@types/node": "^10.7.0",
|
2018-09-27 03:22:11 +08:00
|
|
|
"@types/qs": "^6.5.1",
|
2018-05-26 04:17:19 +08:00
|
|
|
"@types/raven": "^2.1.5",
|
|
|
|
"@types/resolve": "^0.0.4",
|
|
|
|
"@types/semver": "^5.4.0",
|
|
|
|
"@types/supertest": "^2.0.4",
|
2018-06-10 12:20:03 +08:00
|
|
|
"@types/uuid": "^3.4.3",
|
2017-12-08 02:30:18 +08:00
|
|
|
"connect-sse": "^1.2.0",
|
2018-07-07 03:33:35 +08:00
|
|
|
"eslint": "^5.0.1",
|
|
|
|
"eslint-plugin-markdown": "^1.0.0-beta.8",
|
2018-09-27 03:22:11 +08:00
|
|
|
"jest": "^23.6.0",
|
2017-03-20 13:33:58 +08:00
|
|
|
"minami": "^1.1.1",
|
2018-09-15 04:23:49 +08:00
|
|
|
"nock": "^10.0.0",
|
2019-01-12 14:02:37 +08:00
|
|
|
"semantic-release": "^16.0.0-beta.16",
|
2018-01-12 11:39:50 +08:00
|
|
|
"smee-client": "^1.0.1",
|
2018-09-04 00:38:25 +08:00
|
|
|
"standard": "^12.0.0",
|
2018-10-10 23:54:31 +08:00
|
|
|
"standard-markdown": "^5.0.1",
|
2018-05-26 04:17:19 +08:00
|
|
|
"supertest": "^3.0.0",
|
2018-08-22 22:54:34 +08:00
|
|
|
"ts-jest": "^23.1.4",
|
2018-05-26 04:17:19 +08:00
|
|
|
"tslint": "^5.9.1",
|
|
|
|
"tslint-config-prettier": "^1.10.0",
|
2018-09-04 00:35:35 +08:00
|
|
|
"tslint-config-standard": "^8.0.0",
|
2018-10-10 23:27:00 +08:00
|
|
|
"typedoc": "^0.13.0",
|
2018-05-26 04:17:19 +08:00
|
|
|
"typescript": "^2.7.2"
|
2016-09-17 02:44:21 +08:00
|
|
|
},
|
2017-08-23 11:06:31 +08:00
|
|
|
"standard": {
|
|
|
|
"env": [
|
2017-10-14 21:02:34 +08:00
|
|
|
"jest"
|
2017-09-12 22:01:18 +08:00
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"markdown"
|
2016-10-09 13:29:05 +08:00
|
|
|
]
|
2016-09-17 23:53:42 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2017-06-10 07:04:38 +08:00
|
|
|
"node": ">=7.7"
|
2016-09-17 00:10:30 +08:00
|
|
|
}
|
|
|
|
}
|