-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "breakbot",
"version": "0.2.0",
"private": true,
"description": "BreakBot tracks the introduction of breaking changes in Java libraries on GitHub and their impact on client projects",
"contributors": [
"Léonard Rizzo <[email protected]>",
"Thomas Degueule <[email protected]>"
],
"license": "ISC",
"homepage": "https://github.com/alien-tools/breakbot",
"keywords": [
"probot",
"github",
"probot-app",
"breaking-changes",
"java"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "jest --coverage"
},
"dependencies": {
"@octokit/auth-app": "^3.6.1",
"@octokit/core": "^3.5.1",
"@octokit/plugin-rest-endpoint-methods": "^5.13.0",
"@octokit/rest": "^18.5.6",
"@octokit/webhooks": "^9.20.0",
"@octokit/webhooks-types": "^4.18.0",
"@probot/octokit-plugin-config": "^1.1.4",
"@types/common-tags": "^1.8.1",
"body-parser": "^1.19.0",
"common-tags": "^1.8.0",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^2.6.6",
"openssl-nodejs": "^1.0.5",
"pino": "^6.11.3",
"probot": "^12.1.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^26.6.3",
"nock": "^13.0.5",
"nyc": "^15.1.0",
"smee-client": "^1.2.2",
"source-map-support": "^0.5.19",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.2"
},
"engines": {
"node": ">= 10.13.0"
}
}