forked from probot/probot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.26 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
{
"name": "probot",
"version": "0.0.0-development",
"description": "A framework for building GitHub Apps to automate and improve your workflow",
"repository": "github:probot/probot",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"probot": "./bin/probot.js"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"lint": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"docs/*.md\" *.md tsconfig.json package.json --end-of-line auto",
"lint:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"docs/*.md\" *.md tsconfig.json package.json --end-of-line auto",
"pretest": "npm run build && tsc --noEmit -p test",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest --ui --coverage",
"doc": "typedoc --options .typedoc.json --plugin .typedoc/typedoc_ga.mjs"
},
"files": [
"lib",
"bin",
"static",
"views"
],
"keywords": [
"probot",
"github-apps",
"github",
"automation",
"robots",
"workflow"
],
"homepage": "https://probot.github.io",
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"@octokit/core": "^5.0.2",
"@octokit/plugin-enterprise-compatibility": "^4.0.1",
"@octokit/plugin-paginate-rest": "^9.1.4",
"@octokit/plugin-rest-endpoint-methods": "^10.1.5",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/request": "^8.1.6",
"@octokit/types": "^12.3.0",
"@octokit/webhooks": "^12.0.10",
"@probot/get-private-key": "^1.1.2",
"@probot/octokit-plugin-config": "^2.0.1",
"@probot/pino": "^2.3.5",
"@types/express": "^4.17.21",
"bottleneck": "^2.19.5",
"commander": "^12.0.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"js-yaml": "^4.1.0",
"lru-cache": "^10.0.3",
"octokit-auth-probot": "^2.0.0",
"pino": "^9.0.0",
"pino-http": "^10.0.0",
"pkg-conf": "^3.1.0",
"update-dotenv": "^1.1.1"
},
"devDependencies": {
"@octokit/tsconfig": "^3.0.0",
"@octokit/webhooks-examples": "^7.3.1",
"@octokit/webhooks-methods": "^4.0.0",
"@octokit/webhooks-types": "^7.3.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/supertest": "^6.0.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"connect-sse": "^1.2.0",
"execa": "^5.0.0",
"fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
"get-port": "^5.1.1",
"prettier": "^3.0.3",
"rimraf": "^6.0.0",
"semantic-release": "^24.0.0",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"smee-client": "^2.0.0",
"sonic-boom": "^4.0.0",
"supertest": "^7.0.0",
"tsd": "^0.31.0",
"typedoc": "^0.26.0",
"typescript": "^5.2.2",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
[
"semantic-release-plugin-update-version-in-files",
{
"files": [
"lib/version.*"
]
}
]
]
},
"publishConfig": {
"provenance": true
}
}