-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.35 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.35 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
{
"name": "git-commit-analytics",
"version": "0.0.0",
"description": "A tool to analyze your git repository's commit log. I can help you generate daily/weekly or longer work reports.",
"type": "module",
"main": "src/index.js",
"author": "chengpeiquan",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development node ./src/index.js",
"build": "cross-env NODE_ENV=production npm run build:cjs && npm run build:sea",
"build:cjs": "tsup",
"build:sea": "node ./scripts/build.js",
"test": "jest --no-cache",
"lint": "eslint src",
"lint:inspector": "npx @eslint/config-inspector",
"format": "prettier --write .",
"up": "npx taze minor -r -f -w -i",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"prepare": "husky"
},
"devDependencies": {
"@bassist/commit": "^0.1.1",
"@bassist/eslint-config": "^0.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"husky": "^9.1.7",
"jest": "^29.5.0",
"lint-staged": "13.2.1",
"postject": "1.0.0-alpha.6",
"prettier": "^3.5.3",
"semantic-release": "^21.0.1",
"tsup": "^8.4.0"
},
"dependencies": {
"dayjs": "^1.11.7"
},
"lint-staged": {
"*.js": [
"prettier --write ./src"
]
}
}