-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "ak-cli",
"version": "1.0.0",
"description": "脚手架",
"main": "index.js",
"scripts": {
"preinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"commit": "git cz",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"lint": "npm run lint:es && npm run lint:prettier",
"lint:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache",
"lint:prettier": "prettier --list-different \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\"",
"fix": "npm run fix:es && npm run fix:prettier ",
"fix:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache --fix",
"fix:prettier": "prettier --write \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.3.7",
"prettier": "2.6.2",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0"
},
"dependencies": {
"commander": "^8.3.0",
"indent": "^0.0.2"
},
"private": true,
"workspaces": [
"core/*",
"commands/*",
"models/*",
"utils/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}