-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 975 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
38
39
40
41
42
43
44
{
"name": "validate-n8n-pull-request-title",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"format": "prettier . --write",
"build": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest"
},
"keywords": [
"github-action",
"conventional-commits",
"n8n"
],
"repository": {
"type": "git",
"url": "https://github.com/ivov/validate-n8n-pull-request-title.git"
},
"author": {
"name": "Iván Ovejero",
"url": "https://ivov.dev"
},
"license": "MIT",
"jest": {
"setupFilesAfterEnv": [
"jest-chain"
]
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"fast-glob": "^3.2.12",
"fastest-levenshtein": "^1.0.16",
"typescript": "^4.8.4"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"husky": "^8.0.1",
"jest": "^29.1.2",
"jest-chain": "^1.1.6",
"prettier": "^2.7.1"
}
}