-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 KB
/
package.json
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
{
"name": "magit-stats",
"version": "1.0.20-dev",
"description": "Your git repository statistics",
"main": "./src/index.ts",
"type": "module",
"bin": {
"magit-stats": "bin/magit-stats.cjs"
},
"scripts": {
"build": "webpack --mode=production --node-env=production",
"start": "npx ts-node --esm --experimentalSpecifierResolution=node src/index.ts",
"dev": "nodemon",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint -- --fix",
"prettier": "prettier src/ --check",
"prettier:fix": "prettier -- --write"
},
"pkg": {
"scripts": "bin/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LionyxML/magit-stats.git"
},
"keywords": [
"emacs",
"magit",
"git",
"stats"
],
"author": "Rahul M. Juliato",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/LionyxML/magit-stats/issues"
},
"homepage": "https://github.com/LionyxML/magit-stats#readme",
"dependencies": {
"@types/yargs": "^17.0.20",
"echarts": "^5.4.1",
"open": "^8.4.0",
"ramda": "^0.28.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"@types/ramda": "^0.28.22",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@webpack-cli/generators": "^3.0.1",
"eslint": "^8.33.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-shebang-plugin": "^1.1.8"
}
}