-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 983 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 983 Bytes
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
{
"name": "@codemonkeycxy/gitpulse",
"version": "0.1.21",
"description": "A quick health check for any git repository, surfacing potential problem areas from commit history",
"bin": {
"gitpulse": "bin/gitpulse.js"
},
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"keywords": [
"git",
"analysis",
"repository",
"health",
"report"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codemonkeycxy/gitpulse.git"
},
"homepage": "https://github.com/codemonkeycxy/gitpulse#readme",
"bugs": {
"url": "https://github.com/codemonkeycxy/gitpulse/issues"
},
"dependencies": {
"chart.js": "^4.4.0",
"commander": "^12.0.0",
"open": "^10.1.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.js"
]
},
"engines": {
"node": ">=18.0.0"
}
}