-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "code996",
"version": "1.1.1",
"description": "统计 Git commit 的时间分布,进而推导出项目的编码工作强度",
"main": "dist/index.js",
"bin": {
"code996": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"start": "node dist/index.js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"996",
"workload",
"analysis",
"cli"
],
"author": "hellodigua",
"repository": {
"type": "git",
"url": "git+https://github.com/hellodigua/code996.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"holiday-calendar": "^1.3.0",
"ora": "^5.4.1"
},
"engines": {
"node": ">=16.0.0"
}
}