-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.92 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
{
"name": "root",
"private": true,
"version": "1.6.14",
"description": "快速切换本地 Git 用户配置",
"main": "./lib/index.js",
"bin": {
"gcm": "./bin/gcm.js",
"gitconf": "./bin/gcm.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"new:pkg": "lerna create",
"test:version": "pnpm build && node lib/index.js --version",
"test:use": "pnpm build && node lib/index.js use github",
"test:add": "pnpm build && node lib/index.js add",
"test:remove": "pnpm build && node lib/index.js remove",
"test:list": "pnpm build && node lib/index.js list",
"test:scan": "pnpm build && node lib/index.js scan",
"test:current": "pnpm build && node lib/index.js current",
"test:doctor": "pnpm build && node lib/index.js doctor",
"test:upgrade": "pnpm build && node lib/index.js upgrade",
"build": "pnpm --filter=@lexmin0412/gcm* run build",
"ts": "ts-node src/",
"ci:version": "lerna version patch --yes --conventional-commits --create-release github",
"ci:publish": "lerna publish from-package --yes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lexmin0412/gcm.git"
},
"keywords": [
"gcm",
"tools",
"cli",
"git",
"userConfig"
],
"author": {
"name": "lexmin0412",
"email": "[email protected]",
"url": "https://blog.cellerchan.top"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/lexmin0412/gcm/issues"
},
"homepage": "https://github.com/lexmin0412/gcm#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/inquirer": "^8.2.1",
"@types/node": "^18.6.3",
"@types/semver": "^7.3.12",
"lerna": "^8.1.2",
"release-it": "^15.5.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"es",
"lib"
],
"types": "./lib/index.d.ts",
"jsnext:main": "./es/index.js",
"module": "./es/index.js"
}