-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@lzwme/git-helper",
"version": "1.7.2",
"description": "一个简单的 git 提交等操作的辅助小工具",
"main": "esm/index.js",
"browser": "esm/index.js",
"typings": "esm/index.d.ts",
"type": "module",
"bin": {
"githelper": "bin/githelper.js",
"gh": "bin/githelper.js"
},
"repository": "https://github.com/lzwme/git-helper.git",
"author": {
"name": "renxia",
"email": "[email protected]",
"url": "https://lzw.me"
},
"license": "MIT",
"private": false,
"engines": {
"node": ">=14.18"
},
"keywords": [
"git",
"git helper",
"git commit"
],
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"scripts": {
"prepare": "husky || true",
"dev": "npm run watch:build",
"start": "npm run watch",
"build": "run-s clean && run-p build:*",
"build:esm": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src/**/*.ts --fix",
"test": "run-s test:*",
"test:lint": "eslint src/**/*.ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:unit": "npm run cov",
"watch": "run-s clean && run-p \"watch:build\" \"watch:test\"",
"watch:build": "npm run build:esm -- -w",
"watch:test": "pnpm jest --watch",
"cov": "pnpm jest --coverage",
"doc": "typedoc src/ --exclude **/*.spec.ts --out docs",
"version": "standard-version",
"prepare-release": "run-s build test doc:html version",
"release": "run-s test build doc",
"clean": "node scripts/rmdir.js ./esm ./docs"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@jest/types": "^29.6.3",
"@lzwme/fed-lint-helper": "^2.6.6",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"@lzwme/fe-utils": "^1.8.1",
"commander": "^13.0.0",
"console-log-colors": "^0.5.0"
}
}