-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.64 KB
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
{
"name": "commit-me",
"version": "0.0.1",
"private": false,
"description": "Conventional Commit message validation",
"author": "Kevin de Jong",
"license": "MIT",
"homepage": "https://github.com/dev-build-deploy/commit-me",
"keywords": [
"github",
"action",
"conventional-commits",
"pre-commit"
],
"bugs": {
"url": "https://github.com/dev-build-deploy/commit-me/issues"
},
"scripts": {
"build": "run-p build:*",
"build:cli": "ncc build -o lib/cli src/entrypoints/cli.ts",
"build:action": "ncc build -o lib/action src/entrypoints/action.ts",
"build:pre-commit": "ncc build -o lib/precommit src/entrypoints/pre-commit.ts",
"test": "jest --coverage",
"lint": "eslint --ext .ts .",
"format": "prettier --write **/*.ts && prettier --write **/**/*.ts"
},
"bin": {
"commit-me": "./bin/commit-me",
"pre-commit-me": "./bin/pre-commit-me"
},
"dependencies": {
"@actions/core": "^1",
"@actions/github": "^6",
"@dev-build-deploy/commit-it": "^2",
"@dev-build-deploy/diagnose-it": "^1",
"commander": "^12",
"simple-git": "^3"
},
"devDependencies": {
"@octokit/openapi-types": "^19",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"@vercel/ncc": "^0",
"eslint": "^8",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^27",
"jest": "^29",
"npm-run-all2": "^6",
"prettier": "^3",
"ts-jest": "^29",
"typescript": "^5"
},
"engines": {
"node": ">=20"
}
}