-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
74 lines (74 loc) · 2.01 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
74
{
"name": "vue-svgicon",
"private": true,
"description": "SVG icon toolkit",
"workspaces": {
"packages": [
"packages/*",
"docs"
]
},
"scripts": {
"build": "lerna run build --ignore '@yzfe/{taro-svgicon,svgicon-viewer}' --ignore '@demo/*'",
"test": "yarn run build && lerna run test",
"publish": "lerna publish --no-private",
"build:doc": "cd docs && yarn docs:build",
"deploy:doc": "./scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MMF-FE/svgicon.git"
},
"keywords": [
"vue",
"vue2.0",
"svg",
"icon",
"svgicon"
],
"author": "allenice <994298628@qq.com> (http://blog.allenice233.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MMF-FE/svgicon/issues"
},
"homepage": "https://github.com/MMF-FE/svgicon#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"peerDependencies": {
"vue": "^2.5.17",
"vue-template-compiler": "^2.5.16"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@yzfe/eslint-config-ts": "^2.2.0",
"@yzfe/stylelint-config": "^2.1.0",
"eslint": "^8.38.0",
"husky": "^8.0.3",
"lerna": "^7.3.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"stylelint": "^15.4.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx}": [
"eslint --fix --quiet"
],
"*.json": [
"prettier --write"
],
"*.{scss,less}": [
"stylelint --fix"
]
},
"packageManager": "yarn@4.0.1+sha256.5a9d054e67fbbae8774cd3667736fd74407ffbbb336898523ca1fe87b3fc4ee3"
}