-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.24 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.24 KB
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
{
"name": "lee-ui-components",
"version": "0.4.2",
"title": "LEEUI",
"description": "An UI toolkit on vue.js",
"keywords": [
"UI",
"Component",
"Vue"
],
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"start": "vuepress dev docs --open",
"build:js": "webpack --config build/webpack.components.js",
"build:css": "npx gulp --gulpfile build/gulp.css.js",
"build:site": "vuepress build docs",
"build": "npm run build:js && npm run build:css",
"lint:es": "npx eslint \"src/components/**/*.{vue,js}\" src/index.js --fix",
"lint:style": "npx stylelint \"**/*.{scss,vue}\" --fix",
"lint": "npm run lint:es && npm run lint:style",
"test": "jest",
"publish": "npm publish --access public",
"cm": "cz"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,scss}": [
"npm run lint"
]
},
"peerDependencies": {
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@vue/test-utils": "^1.0.3",
"@vuese/cli": "^2.13.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"cache-loader": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.5.0",
"eslint-plugin-vue": "^6.2.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-sass": "^4.1.0",
"hash-sum": "^2.0.0",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"sass-loader": "^10.0.2",
"stylelint": "^13.6.1",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.5.4",
"webpack-cli": "^4.1.0",
"webpack-node-externals": "^2.5.0",
"yorkie": "^2.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"dependencies": {
"@babel/runtime": "^7.11.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}