-
Notifications
You must be signed in to change notification settings - Fork 213
/
package.json
54 lines (54 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "release-please-action",
"private": true,
"version": "4.1.4",
"description": "automated releases based on conventional commits",
"main": "index.js",
"scripts": {
"test": "c8 mocha --node-option no-experimental-fetch --recursive --timeout=5000 build/test",
"prepare": "npm run compile",
"lint": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"build": "ncc build src/index.ts",
"pretest": "npm run compile"
},
"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.10.0",
"release-please": "^16.14.1"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^20.8.10",
"@types/sinon": "^10.0.0",
"@vercel/ncc": "^0.38.0",
"c8": "^7.5.0",
"gts": "^5.2.0",
"mocha": "^9.1.4",
"mocked-env": "^1.3.5",
"nock": "^13.2.1",
"sinon": "^9.2.4",
"standard": "^16.0.4",
"typescript": "^4.6.4"
},
"standard": {
"ignore": "dist/"
},
"engines": {
"node": ">=20.0.0"
}
}