-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "@octokit/request-action",
"private": true,
"version": "0.0.0-development",
"description": "A GitHub Action to send arbitrary requests to GitHub's REST API",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js -o dist",
"lint": "prettier --check *.js **/*.{md,yml} package.json",
"lint:fix": "prettier --write *.js **/*.{md,yml} package.json"
},
"repository": "github:octokit/request-action",
"keywords": [
"github-action"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@octokit/action": "^7.0.0",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.0",
"@vercel/ncc": "^0.38.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/*.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"provenance": true
}
}