forked from googleapis/release-please-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 876 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
{
"name": "release-please-action",
"private": true,
"version": "2.0.0",
"description": "automated releases based on conventional commits",
"main": "index.js",
"scripts": {
"test": "standard",
"fix": "standard --fix",
"build": "ncc build index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcoe/release-please-action.git"
},
"keywords": [
"release-please",
"action"
],
"author": "Ben Coe <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bcoe/release-please-action/issues"
},
"homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"release-please": "^6.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"standard": "^14.3.4"
},
"standard": {
"ignore": "dist/"
}
}