forked from neofinancial/ticket-check-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "ticket-check-action",
"description": "Verify that your pull request titles start with a ticket ID",
"version": "1.4.1",
"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,
"scripts": {
"build": "NODE_ENV=production ncc build src/index.ts -o build --minify",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint \"**/*.{ts,js}\"",
"pre-commit": "lint-staged"
},
"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.2.6",
"@actions/github": "4.0.0",
"@types/node": "13.11.0",
"@vercel/ncc": "0.25.1",
"eslint": "^7.32.0",
"eslint-config-neo": "0.5.2",
"husky": "^4.2.3",
"is-plain-object": "^5.0.0",
"lint-staged": "^10.1.1",
"prettier": "1.19.1",
"typescript": "3.8.3"
}
}