-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
62
63
64
65
66
67
{
"name": "commisery",
"description": "Validate your Pull Request against Conventional Commit compliance",
"version": "1.0.0",
"author": "Kevin de Jong",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tomtom-international/commisery-action.git"
},
"keywords": [
"github",
"action",
"conventional-commits",
"pre-commit"
],
"homepage": "https://github.com/tomtom-international/commisery-action#readme",
"bugs": {
"url": "https://github.com/tomtom-international/commisery-action/issues"
},
"scripts": {
"build": "run-p build:*",
"build:cli": "ncc build -o dist/cli src/cli/cli.ts",
"build:validate": "ncc build -o dist/validate src/actions/entrypoints/validate.ts",
"build:bump": "ncc build -o dist/bump src/actions/entrypoints/bump.ts",
"test": "jest",
"lint": "eslint **/*.ts --quiet",
"format": "prettier --write **/*.ts",
"package": "pkg ."
},
"bin": {
"commisery": "./bin/commisery"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6",
"@octokit/plugin-retry": "^6",
"@octokit/plugin-throttling": "^8",
"commander": "^12",
"dedent": "^1",
"difflib": "^0.2.4",
"simple-git": "^3.17.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@octokit/plugin-rest-endpoint-methods": "^10",
"@tsconfig/node20": "^20.1.2",
"@types/dedent": "^0.7.0",
"@types/difflib": "^0.2.6",
"@types/jest": "^29",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vercel/ncc": "^0",
"eslint": "^8",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-github": "^4",
"eslint-plugin-jest": "^27",
"eslint-plugin-prettier": "^5",
"npm-run-all": "^4.1.5",
"prettier": "^3",
"ts-jest": "^29"
},
"engines": {
"node": ">=20"
}
}