-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
124 lines (124 loc) · 3.55 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "yi-ui",
"version": "0.3.4",
"repository": "lq782655835/yi-ui",
"author": "springleo <782655835@qq.com>",
"license": "MIT",
"main": "dist/YIUI.common.js",
"unpkg": "dist/YIUI.umd.min.js",
"files": [
"dist/*",
"index.js",
"src/*"
],
"keywords": [
"vue",
"vue-component",
"components",
"ui"
],
"description": "a lightweight ui for vue2.x",
"scripts": {
"dev": "vue-cli-service serve --open ./examples/main.js",
"build": "vue-cli-service build --target lib --name YIUI ./packages/index.js",
"dev:docs": "vuepress dev docs",
"build:docs": "vuepress build docs",
"commit": "git add -A && git-cz",
"release:lib": "release-it",
"release:docs": "npm run build:docs && gh-pages -d docs/.vuepress/dist",
"publish:npm": "git add -A && npm run build && release-it",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"packages/**/*.{vue,ts,tsx,js,jsx,json}": [
"prettier --write",
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"requireCleanWorkingDir": false
}
},
"dependencies": {
"highlight.js": "^9.15.8",
"material-design-icons": "^3.0.1",
"popper.js": "^1.15.0",
"style-resources-loader": "^1.3.3",
"vue": "2.6.11",
"vuepress": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-plugin-unit-jest": "^3.8.0",
"@vue/cli-service": "^3.0.3",
"@vue/test-utils": "1.0.0-beta.29",
"@vusion/md-vue-loader": "1.0.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"chalk": "^2.4.2",
"commitizen": "^4.0.4",
"conventional-changelog-cli": "^2.0.31",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0-0",
"gh-pages": "^2.0.1",
"husky": "^1.2.1",
"lint-staged": "^10.1.2",
"node-sass": "^4.10.0",
"nprogress": "^0.2.0",
"prettier": "^1.15.3",
"release-it": "^12.4.3",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.3",
"vue-jest": "^3.0.4",
"vue-router": "^3.0.7",
"vue-template-compiler": "2.6.11",
"vuepress-plugin-leo-demo-block": "0.1.1",
"vuepress-theme-antdocs": "^1.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}