-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.71 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.71 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "git-auto-config",
"version": "0.0.5",
"packageManager": "pnpm@7.1.7",
"description": "Auto config diffient user.name and user.email in different git repos",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"gitp": "./bin/cli.js"
},
"keywords": [
"git",
"git config",
"user.name",
"user.email",
"git proxy"
],
"scripts": {
"build": "rollup -c",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"coverage": "vitest run --coverage",
"release": "bumpp CHANGELOG.md && pnpm publish",
"typecheck": "tsc --noEmit",
"fix": "eslint --fix --ext .js,.ts src tests scripts",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublishOnly": "pnpm run build"
},
"files": [
"bin",
"dist/"
],
"author": "cyly 786156072@qq.com",
"homepage": "https://github.com/ChpShy/git-auto-config#readme",
"bugs": {
"url": "https://github.com/ChpShy/git-auto-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChpShy/git-auto-config.git"
},
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./types/index.d.ts"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec esno scripts/verifyCommit.ts $1"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"{src,scripts,types,tests}/**/*.ts": [
"eslint --fix --ext .ts"
],
"packages/*/{src,types,tests}/**/*.ts": [
"eslint --ext .ts"
],
"packages/**/*.d.ts": [
"eslint --ext .ts"
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.2",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^17.0.30",
"@vitest/ui": "^0.7.4",
"bumpp": "^8.2.1",
"c8": "^7.11.0",
"conventional-changelog-cli": "^2.2.2",
"esbuild": "^0.14.27",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"esno": "^0.16.3",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-esbuild": "^4.8.2",
"simple-git-hooks": "^2.7.0",
"typescript": "^4.1",
"vite": "^2.8.6",
"vitest": "^0.7.4"
},
"dependencies": {
"cac": "^6.7.12",
"picocolors": "^1.0.0"
}
}