forked from bcoe/conventional-release-labels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "conventional-release-labels",
"private": true,
"version": "1.3.1",
"description": "automatically apply release labels to PR, based on conventionalcommits.org",
"main": "index.js",
"scripts": {
"test": "c8 mocha test/*.js",
"posttest": "standard",
"fix": "standard --fix",
"build": "rm -rf dist && ncc build index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcoe/conventional-release-labels.git"
},
"keywords": [
"conventional-release-labels",
"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.6.0",
"@actions/github": "^5.0.0",
"@conventional-commits/parser": "^0.4.1",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"c8": "^7.5.0",
"js-yaml": "^4.1.0",
"mocha": "^8.2.1",
"sinon": "^11.1.2",
"standard": "^16.0.4"
},
"standard": {
"ignore": "dist/"
}
}