forked from MMF-FE/svgicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.07 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
75
{
"private": true,
"name": "vue-svgicon",
"workspaces": {
"packages": [
"packages/*",
"demo/*"
]
},
"description": "A tool to create svg icon components. (vue 2.x)",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --ignore '@yzfe/{vue-demo,react-demo,svgicon-viewer}'",
"test": "yarn run build && lerna run test",
"publish": "lerna publish",
"serve:doc": "vuepress dev docs",
"build:doc": "vuepress build docs",
"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 <[email protected]> (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": {
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@vuepress/plugin-google-analytics": "^1.5.4",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^3.9.7",
"vuepress": "^1.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,tsx}": [
"prettier --write"
],
"*.{scss,less}": [
"stylelint --fix"
]
}
}