-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "pr-title-validator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "ncc build ./src/index.ts --out ./dist --minify",
"test": "jest",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "https://github.com/kevits/pr-title-validator.git"
},
"keywords": [
"conventional-commit",
"validator",
"pr-title"
],
"author": "kevits",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@kevits/conventional-commit": "^1.0.0",
"@octokit/graphql": "^5.0.5"
},
"bugs": {
"url": "https://github.com/kevits/pr-title-validator/issues"
},
"homepage": "https://github.com/kevits/pr-title-validator",
"devDependencies": {
"@octokit/webhooks-definitions": "^3.67.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.19",
"@vercel/ncc": "^0.36.1",
"jest": "^29.4.1",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
}
}