-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
42 lines (42 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
{
"name": "example-github-action",
"version": "1.0.0",
"private": true,
"description": "Probot & GitHub Action example",
"scripts": {
"build": "esbuild index.js --bundle --platform=node --outfile=dist/index.js --format=esm",
"test": "node --test"
},
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"repository": "github:probot/example-github-action",
"dependencies": {
"@probot/adapter-github-actions": "^4.0.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"esbuild": "^0.24.0",
"nock": "^14.0.0-beta.5",
"semantic-release": "^23.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
},
"type": "module"
}