-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.42 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
{
"name": "create-or-update-pull-request-action",
"private": true,
"version": "1.10.1",
"description": "A GitHub Action to create or update a pull request based on local changes",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist"
},
"repository": "github:gr2m/create-or-update-pull-request-action",
"release": {
"branches": [
"+([0-9]).x",
"master",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"publishCmd": "npm run build"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
]
]
},
"keywords": [
"github-action"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/core": "^3.5.1",
"execa": "^2.0.4"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vercel/ncc": "^0.38.1",
"semantic-release": "^23.0.6"
}
}