forked from probot/probot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
{
"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": {
"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": {
"@octokit/rest": "15.2.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"
}
}