-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
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": "@jef/conventional-commits-pr-action",
"version": "1.2.0",
"private": true,
"description": "Lints pull requests based on Conventional Commits and Jira tickets",
"main": "./src/main.ts",
"scripts": {
"build": "npm run test && ncc build --source-map",
"compile": "tsc",
"clean": "gts clean",
"fix": "gts fix",
"lint": "gts lint",
"start": "node --experimental-loader=node:ts ./src/main.js",
"test": "jest",
"posttest": "npm run lint"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jef/conventional-commits-pr-action.git"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"conventional-commit-types": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"gts": "^6.0.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"volta": {
"node": "20.18.1"
}
}