-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "norm-monorepo",
"description": "fe6 的代码规范集合",
"scripts": {
"lint": "pretty-quick",
"husky": "husky install",
"gitcz": "git cz"
},
"engines": {
"node": ">= 16.13.0",
"pnpm": ">=7.9"
},
"packageManager": "[email protected]",
"author": "李梦龙 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fe6/norm/issues"
},
"homepage": "https://github.com/fe6/norm#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@fe6/norm-git-cz-config": "workspace:^",
"@fe6/norm-prettier": "workspace:^",
"@types/node": "^17.0.21",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.9",
"chalk": "^4.1.2",
"commitizen": "4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-customizable": "^6.3.0",
"execa": "^5.1.1",
"husky": "^7.0.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"prompts": "^2.4.2",
"semver": "^7.3.5",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./packages/git-cz-config/customizable.js"
}
},
"pnpm": {
"overrides": {
"@fe6/norm-prettier": "workspace:^",
"@fe6/norm-git-cz-config": "workspace:^"
}
}
}