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": [
|
2019-02-16 12:12:56 +08:00
|
|
|
"<rootDir>/test/setup.ts"
|
2018-05-26 04:17:19 +08:00
|
|
|
],
|
|
|
|
"coveragePathIgnorePatterns": [
|
|
|
|
"<rootDir>/lib/"
|
|
|
|
],
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"node"
|
|
|
|
],
|
2019-03-04 07:52:41 +08:00
|
|
|
"preset": "ts-jest"
|
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": {
|
2019-07-13 04:53:08 +08:00
|
|
|
"@octokit/app": "^4.0.0",
|
2019-09-10 02:46:44 +08:00
|
|
|
"@octokit/graphql": "^4.2.0",
|
2019-01-08 14:37:17 +08:00
|
|
|
"@octokit/plugin-enterprise-compatibility": "^1.0.0",
|
2019-01-19 09:41:32 +08:00
|
|
|
"@octokit/plugin-retry": "^2.1.1",
|
2019-01-24 13:56:04 +08:00
|
|
|
"@octokit/plugin-throttling": "^2.3.0",
|
2019-09-10 02:46:44 +08:00
|
|
|
"@octokit/request": "^5.1.0",
|
2019-09-19 11:50:09 +08:00
|
|
|
"@octokit/rest": "^16.29.0",
|
2019-04-06 08:35:26 +08:00
|
|
|
"@octokit/webhooks": "^6.0.0",
|
2018-10-02 21:25:52 +08:00
|
|
|
"@types/supports-color": "^5.3.0",
|
2019-01-24 13:56:04 +08:00
|
|
|
"bottleneck": "^2.15.3",
|
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",
|
2019-11-01 18:16:12 +08:00
|
|
|
"commander": "^4.0.0",
|
2019-10-08 07:17:28 +08:00
|
|
|
"deepmerge": "^4.1.0",
|
2019-10-16 10:10:33 +08:00
|
|
|
"dotenv": "~8.2.0",
|
2019-03-04 02:18:11 +08:00
|
|
|
"eventsource": "^1.0.7",
|
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",
|
2019-10-13 01:42:31 +08:00
|
|
|
"hbs": "^4.0.6",
|
2019-01-24 13:56:04 +08:00
|
|
|
"ioredis": "^4.5.1",
|
2019-09-01 02:53:46 +08:00
|
|
|
"is-base64": "1.0.0",
|
2019-04-19 02:18:53 +08:00
|
|
|
"js-yaml": "^3.13.1",
|
2017-11-20 13:11:33 +08:00
|
|
|
"jsonwebtoken": "^8.1.0",
|
2019-01-08 14:37:17 +08:00
|
|
|
"octokit-pagination-methods": "1.1.0",
|
2019-03-02 22:14:17 +08:00
|
|
|
"pkg-conf": "^3.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",
|
2019-03-27 18:45:29 +08:00
|
|
|
"semver": "^6.0.0",
|
2019-06-12 01:49:31 +08:00
|
|
|
"supports-color": "^7.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",
|
2019-09-11 22:31:35 +08:00
|
|
|
"@types/cache-manager": "^2.10.0",
|
2019-10-27 23:59:34 +08:00
|
|
|
"@types/dotenv": "^8.2.0",
|
2019-03-04 02:18:11 +08:00
|
|
|
"@types/eventsource": "^1.1.0",
|
2019-11-02 10:27:26 +08:00
|
|
|
"@types/express": "^4.17.2",
|
2019-02-08 06:57:32 +08:00
|
|
|
"@types/ioredis": "^4.0.6",
|
2019-03-03 01:45:28 +08:00
|
|
|
"@types/jest": "^24.0.9",
|
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",
|
2019-09-12 07:13:21 +08:00
|
|
|
"@types/nock": "^11.1.0",
|
2019-05-04 06:18:42 +08:00
|
|
|
"@types/node": "^12.0.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",
|
2019-04-02 05:26:09 +08:00
|
|
|
"@types/semver": "^6.0.0",
|
2018-05-26 04:17:19 +08:00
|
|
|
"@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",
|
2019-06-22 12:21:21 +08:00
|
|
|
"eslint": "^6.0.0",
|
2018-07-07 03:33:35 +08:00
|
|
|
"eslint-plugin-markdown": "^1.0.0-beta.8",
|
2019-03-04 05:12:55 +08:00
|
|
|
"jest": "^24.1.0",
|
2017-03-20 13:33:58 +08:00
|
|
|
"minami": "^1.1.1",
|
2019-09-04 11:42:48 +08:00
|
|
|
"nock": "^11.3.2",
|
2019-09-19 11:50:09 +08:00
|
|
|
"semantic-release": "^16.0.0-beta.24",
|
2018-01-12 11:39:50 +08:00
|
|
|
"smee-client": "^1.0.1",
|
2019-08-23 07:28:54 +08:00
|
|
|
"standard": "^14.0.2",
|
2018-10-10 23:54:31 +08:00
|
|
|
"standard-markdown": "^5.0.1",
|
2019-03-15 21:15:08 +08:00
|
|
|
"supertest": "^4.0.2",
|
2019-02-19 07:24:23 +08:00
|
|
|
"ts-jest": "^24.0.0",
|
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",
|
2019-09-19 11:50:09 +08:00
|
|
|
"typedoc": "^0.15.0",
|
2019-04-03 23:57:13 +08:00
|
|
|
"typescript": "^3.4.1"
|
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
|
|
|
}
|
|
|
|
}
|