-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
55
56
57
58
59
60
61
{
"name": "ticket-check-action",
"description": "Verify that your pull request titles start with a ticket ID",
"version": "2.0.0",
"author": "Neo Financial Engineering <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/ticket-check-action"
},
"main": "lib/main.js",
"private": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "NODE_ENV=production ncc build src/main.ts -o build --minify",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint \"**/*.{ts,js}\"",
"typecheck": "tsc --noEmit",
"pre-commit": "lint-staged",
"test": "jest"
},
"keywords": [
"actions",
"github",
"linter",
"node"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint"
],
"*.{ts,js,json,yaml,yml,md}": [
"prettier --write"
]
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-neo": "^0.9.0",
"husky": "^9.0.11",
"is-plain-object": "^5.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^2.8.7",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}