-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
43 lines (43 loc) · 1.02 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": "wip-action",
"private": true,
"version": "0.0.0-development",
"description": "The WIP GitHub Action",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist",
"test": "node test/smoke.js"
},
"repository": "https://github.com/wip/action",
"keywords": [
"github-action"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"@octokit/action": "^3.1.2"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@zeit/ncc": "^0.22.3",
"nock": "^13.0.4",
"prettier": "^2.1.2",
"semantic-release": "^21.0.1"
},
"release": {
"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"
]
}
}