-
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.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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": "commitgraph",
"version": "1.0.0",
"type": "module",
"description": "A git repository forensics tool to analyze file hotspots, knowledge distribution, and logical coupling.",
"main": "./dist/index.js",
"bin": {
"commitgraph": "./dist/index.js"
},
"scripts": {
"start": "tsx src/index.ts",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write \"**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"keywords": [],
"author": "Oluwadare Daniel",
"license": "ISC",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
}
}