-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "@octoherd/octokit",
"publishConfig": {
"access": "public"
},
"version": "0.0.0-development",
"description": "Customized Octokit for Octoherd",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">= 18"
},
"scripts": {
"test": "node test.js"
},
"keywords": [
"octoherd",
"octokit"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"repository": "github:octoherd/octokit",
"dependencies": {
"@octokit/core": "^6.1.2",
"@octokit/plugin-paginate-rest": "^11.0.0",
"@octokit/plugin-retry": "^7.0.0",
"@octokit/plugin-throttling": "^9.0.0",
"quick-format-unescaped": "^4.0.1"
},
"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": [
"version.js"
]
}
]
]
}
}