-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 989 Bytes
/
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
{
"name": "validate-pr-title",
"version": "1.0.0",
"description": "Validate the PR title to match the given prefixes",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"format": "prettier . --write",
"lint": "eslint . --ext .ts",
"test": "jest",
"lint-test-build": "npm run lint && npm run test && npm run build"
},
"author": "Fredrik Anbacken",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"@typescript-eslint/parser": "^8.5.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^5.0.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "5.0.4"
},
"engines": {
"node": ">=20.17.0 <21"
}
}