-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "commit-coach",
"version": "1.0.4",
"description": "An intelligent commit analysis tool that provides insights and coaching for code changes",
"main": "dist/index.js",
"type": "module",
"bin": {
"commit-coach": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"build:action": "tsc --module CommonJS --outDir dist src/action.ts && mv dist/action.js dist/action.cjs",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"pre-commit": "npm run format && npm run lint:fix && npm run test:run",
"coach": "npm run build && npm run start",
"hooks:install": "lefthook install",
"hooks:uninstall": "lefthook uninstall",
"hooks:run": "lefthook run",
"release": "node scripts/release.js",
"release:patch": "npm run release patch",
"release:minor": "npm run release minor",
"release:major": "npm run release major",
"release:prerelease": "npm run release prerelease"
},
"keywords": [
"git",
"commit",
"code-review",
"ci",
"automation",
"insights",
"github-action",
"code-quality",
"testing",
"documentation"
],
"author": "Stephen",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^22.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"glob": "^11.0.3",
"ignore": "^7.0.5",
"simple-git": "^3.28.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.0",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.37.0",
"globals": "^16.4.0",
"lefthook": "^2.0.3",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=24.0.0"
}
}