-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "git-hooks-cli",
"version": "1.0.0",
"description": "List git hooks with optional styled output",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"git-hooks": "./dist/cli.js"
},
"scripts": {
"dev": "ts-node src/cli.ts",
"build": "tsc",
"build:types": "vite build",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage --run",
"test:ui": "vitest --ui",
"lint": "biome check --write",
"lint:view": "biome check",
"all": "npm-run-all --parallel lint build test:coverage"
},
"keywords": [
"git",
"hooks",
"cli",
"table"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.19.32",
"@vitest/coverage-v8": "^2.1.9",
"cli-table-modern": "^0.0.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vite-plugin-dts": "^4.5.4",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b3ebb1f5438dee60284ed43cc2d654d2bc326264"
}