-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.62 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.62 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
{
"name": "git-scout",
"version": "0.0.3",
"description": "Powerful CLI for analyzing multiple Git repositories — statistics, insights & productivity tools for developers.",
"main": "dist/index.js",
"bin": {
"git-scout": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"prepare": "npm run build",
"link:local": "npm run build && npm link"
},
"keywords": [
"git",
"cli",
"command-line",
"multi-repo",
"git-analytics",
"git-statistics",
"developer-tools",
"productivity",
"typescript",
"nodejs",
"terminal"
],
"author": "malcohelper",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/malcohelper/git-scout.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bugs": {
"url": "https://github.com/malcohelper/git-scout/issues"
},
"homepage": "https://github.com/malcohelper/git-scout#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^8.2.6",
"cli-table3": "^0.6.3",
"zod": "^3.22.4",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/inquirer": "^8.2.10",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}