-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.61 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
{
"name": "@octokit/openapi",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "0.0.0-development",
"description": "GitHub's official OpenAPI spec with Octokit extensions",
"main": "index.js",
"files": [
"index.js",
"generated"
],
"scripts": {
"download": "node scripts/download.mjs",
"build": "node scripts/build.mjs",
"test": "node scripts/test.mjs",
"lint": "prettier --check . '!cache' '!generated' '!anicca'",
"lint:fix": "prettier --write . '!cache' '!generated' '!anicca'",
"pretest": "npm run -s lint"
},
"repository": "github:octokit/openapi",
"keywords": [
"github",
"openapi",
"octokit"
],
"author": "Gregor Martynus (https://dev.to/gr2m)",
"license": "MIT",
"devDependencies": {
"@octokit/core": "^6.0.1",
"deep-equal": "^2.2.3",
"execa": "^9.0.0",
"github-enterprise-server-versions": "^2.0.1",
"lodash": "^4.17.21",
"map-obj": "^5.0.2",
"prettier": "^3.2.5",
"semantic-release": "^24.0.0",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"sort-keys": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"semantic-release-plugin-update-version-in-files",
{
"files": [
"generated/*"
]
}
],
[
"@semantic-release/github",
{
"assets": "generated/*.json"
}
],
"@semantic-release/npm"
]
}
}