-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@hecom/codearts",
"version": "0.7.1",
"description": "华为云 CodeArts 统计分析工具",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codearts": "./bin/codearts"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc && npm link",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"prepublishOnly": "npm run build",
"dev": "ts-node src/bin/cli.ts",
"minor": "npm version minor -m \"Bump version to %s\"; git push --follow-tags",
"patch": "npm version patch -m \"Bump version to %s\"; git push --follow-tags",
"major": "npm version major -m \"Bump version to %s\"; git push --follow-tags"
},
"keywords": [
"huawei-cloud",
"codearts",
"work-hour",
"daily-report",
"cli",
"typescript",
"api",
"statistics"
],
"author": "summer88123",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/hecom-rn/hecom-codearts.git"
},
"homepage": "https://github.com/hecom-rn/hecom-codearts#readme",
"bugs": {
"url": "https://github.com/hecom-rn/hecom-codearts/issues"
},
"engines": {
"node": ">=23.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"ansi-escapes": "^4.3.2",
"axios": "^1.5.0",
"commander": "^14.0.3",
"echarts": "^6.0.0",
"inquirer": "^13.2.2",
"ora": "^9.3.0",
"picocolors": "^1.1.1"
},
"peerDependencies": {
"puppeteer": ">=20.0.0"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
}
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/inquirer": "^9.0.9",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.33",
"@types/ora": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"puppeteer": "^25.1.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}