-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
{
"name": "git-user-cli",
"version": "0.0.4",
"description": "A CLI that allows you to switch git users.",
"packageManager": "[email protected]",
"engines": {
"node": ">= 14.0.0",
"pnpm": ">= 8.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/northwang-lucky/gitusr.git"
},
"files": [
"bin"
],
"bin": {
"gitusr": "bin/gitusr/index.js",
"git-clone": "bin/git-clone/index.js"
},
"scripts": {
"prepare": "pnpm husky:install",
"link:global": "pnpm link --global",
"build": "rimraf bin && tsc",
"ver": "standard-version",
"commit": "cz",
"commit:lint": "commitlint --edit",
"husky:install": "rimraf ./.husky && husky install && pnpm husky:pre-commit-hook && pnpm husky:commit-msg-hook",
"husky:pre-commit-hook": "husky add .husky/pre-commit \"pnpm lint-staged\"",
"husky:commit-msg-hook": "husky add .husky/commit-msg \"pnpm commit:lint\"",
"lint-staged": "lint-staged",
"lint-staged:format": "prettier -w",
"lint-staged:eslint": "eslint"
},
"dependencies": {
"commander": "10.0.0",
"fs-extra": "11.1.0",
"inquirer": "8.2.5",
"shelljs": "0.8.5"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@types/fs-extra": "11.0.1",
"@types/inquirer": "8.2.5",
"@types/node": "18.11.0",
"@types/shelljs": "0.8.11",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.22.0",
"eslint-config-airbnb-typescript-prettier": "5.0.0",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.5.1",
"rimraf": "4.1.2",
"standard-version": "9.5.0",
"typescript": "4.4.4"
}
}