-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.69 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
{
"name": "@waye/ui",
"version": "0.2.0",
"description": "waye base component",
"main": "lib/waye.common.js",
"files": [
"lib",
"src",
"packages"
],
"scripts": {
"build:file": "node build/bin/build-entry.js",
"build:utils": "babel src --out-dir lib --ignore src/index.js",
"build:theme": "node build/bin/gen-cssfile && gulp build --gulpfile packages/theme/gulpfile.js && cp-cli packages/theme/lib lib/theme",
"lerna": "./node_modules/.bin/lerna publish",
"docs:dev": "yarn build:file && vuepress dev docs",
"docs:build": "yarn build:file && vuepress build docs",
"clean": "rimraf lib && rimraf packages/*/lib",
"lint": "eslint --ignore-path .eslintignore --ignore-pattern packages/theme/src/**/* src/**/* tests/**/* packages/**/* build/**/* --ext .js --quiet",
"waye:all": "webpack --config build/webpack.common.js",
"waye:comp": "webpack --config build/webpack.component.js",
"waye:umd": "webpack --config build/webpack.conf.js",
"dist": "yarn clean && yarn build:file && yarn waye:all && yarn waye:comp && yarn waye:umd && yarn build:utils && yarn build:theme",
"pub": "sh build/release.sh",
"test": "vue-cli-service test:unit"
},
"dependencies": {
"@waye/area-data": "^5.1.1",
"element-ui": "^2.5.17",
"moment": "^2.24.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.18",
"@vue/cli-plugin-eslint": "~4.5.18",
"@vue/cli-plugin-unit-jest": "~4.5.18",
"@vue/cli-service": "~4.5.18",
"@vue/component-compiler-utils": "^2.6.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-cli": "^6.26.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"core-js": "^3.23.3",
"cp-cli": "^1.0.2",
"cross-env": "^5.2.0",
"eslint": "^8.19.0",
"eslint-plugin-vue": "^9.1.1",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^6.0.0",
"gulp-cssmin": "^0.2.0",
"gulp-sass": "^4.0.2",
"json-templater": "^1.0.4",
"lerna": "^3.15.0",
"progress-bar-webpack-plugin": "^1.11.0",
"sass": "^1.43.2",
"sass-loader": "^7.1.0",
"sinon": "^7.5.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"uppercamelcase": "^1.1.0",
"url-loader": "^1.0.1",
"vue-loader": "^15.10.0",
"vuepress": "^1.0.2",
"webpack": "^4.14.0",
"webpack-cli": "^3.3.6",
"webpack-node-externals": "^1.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/wayejs/waye.git"
},
"keywords": [
"element-ui",
"waye",
"vue"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"author": "lynzz",
"license": "MIT"
}