-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "@octokit/app-permissions",
"version": "0.0.0-development",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "machine-readable, always up-to-date GitHub App permissions",
"main": "index.js",
"scripts": {
"lint": "prettier --check '{scripts,test,generated}/**/*.{mjs,md,json}' *.md package.json",
"lint:fix": "prettier --write '{scripts,test,generated}/**/*.{mjs,md,json}' *.md package.json",
"pretest": "npm run -s lint",
"test": "node test/smoke-test.mjs"
},
"repository": "github:octokit/app-permissions",
"keywords": [
"github app"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"devDependencies": {
"cheerio": "^1.0.0",
"minimist": "^1.2.5",
"prettier": "^3.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": "generated/*.json"
}
],
"@semantic-release/npm"
]
}
}