forked from probot/probot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
138 lines (138 loc) · 3.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "probot",
"version": "0.0.0-development",
"description": "🤖 A framework for building GitHub Apps to automate and improve your workflow",
"repository": "https://github.com/probot/probot",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"probot": "./bin/probot.js"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"start": "node ./bin/probot run",
"lint": "tslint --project test",
"test": "tsc --noEmit -p test && jest --coverage && npm run lint && npm run doc-lint",
"doc-lint": "standard-markdown docs/",
"doc": "typedoc --options .typedoc.json",
"prepare": "npm run build"
},
"files": [
"lib",
"bin",
"static",
"views"
],
"jest": {
"setupFiles": [
"<rootDir>/test/setup.ts"
],
"coveragePathIgnorePatterns": [
"<rootDir>/lib/"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"preset": "ts-jest"
},
"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/app": "^4.0.0",
"@octokit/graphql": "^4.2.0",
"@octokit/plugin-enterprise-compatibility": "^1.2.1",
"@octokit/plugin-retry": "^2.1.1",
"@octokit/plugin-throttling": "^2.3.0",
"@octokit/request": "^5.1.0",
"@octokit/rest": "^16.29.0",
"@octokit/webhooks": "^6.0.0",
"@types/supports-color": "^5.3.0",
"bottleneck": "^2.15.3",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"bunyan-sentry-stream": "^1.1.0",
"cache-manager": "^2.10.1",
"commander": "^4.0.0",
"deepmerge": "^4.1.0",
"dotenv": "~8.2.0",
"eventsource": "^1.0.7",
"express": "^4.16.2",
"express-async-errors": "^3.0.0",
"hbs": "^4.0.6",
"ioredis": "^4.5.1",
"is-base64": "1.0.0",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.1.0",
"octokit-pagination-methods": "1.1.0",
"pkg-conf": "^3.0.0",
"promise-events": "^0.1.3",
"qs": "^6.5.2",
"raven": "^2.4.2",
"resolve": "^1.4.0",
"semver": "^6.0.0",
"supports-color": "^7.0.0",
"update-dotenv": "^1.1.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/bunyan-format": "^0.2.0",
"@types/cache-manager": "^2.10.0",
"@types/dotenv": "^8.2.0",
"@types/eventsource": "^1.1.0",
"@types/express": "^4.17.2",
"@types/ioredis": "^4.0.6",
"@types/jest": "^24.0.9",
"@types/js-yaml": "^3.10.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/nock": "^11.1.0",
"@types/node": "^12.0.0",
"@types/qs": "^6.5.1",
"@types/raven": "^2.1.5",
"@types/resolve": "^0.0.4",
"@types/semver": "^6.0.0",
"@types/supertest": "^2.0.4",
"@types/uuid": "^3.4.3",
"connect-sse": "^1.2.0",
"eslint": "^6.0.0",
"eslint-plugin-markdown": "^1.0.0-beta.8",
"jest": "^24.1.0",
"minami": "^1.1.1",
"nock": "^11.3.2",
"semantic-release": "^15.13.30",
"smee-client": "^1.0.1",
"standard": "^14.0.2",
"standard-markdown": "^5.0.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.15.0",
"typescript": "^3.4.1"
},
"standard": {
"env": [
"jest"
],
"plugins": [
"markdown"
]
},
"engines": {
"node": ">=7.7"
}
}