forked from googleapis/release-please-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.03 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": "release-please-action",
"private": true,
"version": "3.8.0",
"description": "automated releases based on conventional commits",
"main": "index.js",
"scripts": {
"test": "c8 mocha test/*.js",
"posttest": "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 <bencoe@gmail.com>",
"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.10.0",
"release-please": "git+https://github.com/stainless-api/release-please.git"
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"c8": "^7.5.0",
"mocha": "^9.1.4",
"nock": "^13.2.1",
"sinon": "^9.2.4",
"standard": "^16.0.4"
},
"standard": {
"ignore": "dist/"
}
}