-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 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
87
{
"name": "git-stats",
"displayName": "Git Stats",
"description": "Beautiful visualization of team code contributions with interactive charts and insights",
"version": "0.1.3",
"publisher": "lixianmin",
"author": {
"name": "lixianmin"
},
"license": "MIT",
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Visualization",
"Other"
],
"keywords": [
"git",
"statistics",
"visualization",
"team",
"contribution"
],
"galleryBanner": {
"color": "#6C5CE7",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/lixianmin/git.stats"
},
"bugs": {
"url": "https://github.com/lixianmin/git.stats/issues"
},
"homepage": "https://github.com/lixianmin/git.stats#readme",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "git-stats.showStats",
"title": "Show Git Stats",
"icon": "$(graph-line)"
}
],
"menus": {
"scm/title": [
{
"when": "scmProvider == git",
"command": "git-stats.showStats",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"moment": "^2.29.4",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.26.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.2.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}