-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "@jef/conventional-commits-release-action",
"version": "1.1.0",
"private": true,
"description": "Lints pull requests based on Conventional Commits and Jira tickets",
"main": "build/src/main.js",
"scripts": {
"build": "npm run test && ncc build --source-map",
"compile": "tsc",
"clean": "gts clean",
"fix": "gts fix",
"lint": "gts lint",
"prestart": "npm run compile",
"start": "node ./build/src/main.js",
"pretest": "npm run compile",
"test": "c8 mocha build/test/**/test-*.js",
"posttest": "npm run lint"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jef/conventional-commits-release-action.git"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.22",
"@types/semver": "^7.3.9",
"@types/sinon": "^10.0.11",
"@vercel/ncc": "^0.33.3",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"gts": "^3.1.0",
"mocha": "^9.2.2",
"prettier": "^2.6.0",
"sinon": "^13.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"volta": {
"node": "16.14.2"
}
}