forked from fregante/release-with-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 852 Bytes
/
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
{
"name": "release-with-changelog",
"version": "1.0.0",
"description": "Create a GitHub relase with changelog for every tag you push",
"main": "distribution/index.js",
"scripts": {
"build": "ncc build index.js -o distribution",
"test": "xo && npm run jest",
"jest": "GITHUB_SERVER_URL='https://github.com' GITHUB_REPOSITORY='fregante/release-with-changelog' jest"
},
"repository": "fregante/release-with-changelog",
"keywords": [
"github",
"actions",
"javascript",
"tags",
"releases",
"changelog"
],
"author": "Laxman Damera",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"jest": "^26.5.3",
"strip-indent": "^3.0.0",
"xo": "^0.32.1"
},
"xo": {
"envs": [
"jest"
],
"ignore": [
"distribution"
]
}
}