ytg7vue 1.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +17 -0
- package/.editorconfig +14 -0
- package/.eslintignore +3 -0
- package/.eslintrc.js +151 -0
- package/.npminstall.done +1 -0
- package/.postcssrc.js +8 -0
- package/LICENSE +21 -0
- package/Listening +28 -0
- package/README.md +146 -0
- package/build/build.js +70 -0
- package/build/check-versions.js +45 -0
- package/build/config.js +81 -0
- package/build/dev-client.js +9 -0
- package/build/dev-server.js +93 -0
- package/build/utils.js +78 -0
- package/build/vue-loader.conf.js +12 -0
- package/build/webpack.common.js +37 -0
- package/build/webpack.component.js +36 -0
- package/build/webpack.prod.conf.js +38 -0
- package/components.json +8 -0
- package/conf.js +42 -0
- package/config/dev.env.js +6 -0
- package/config/index.js +43 -0
- package/config/prod.env.js +6 -0
- package/config/sit.env.js +6 -0
- package/favicon.ico +0 -0
- package/index.html +17 -0
- package/jsdoc-vue.js +12 -0
- package/lib/idev.common.js +1 -0
- package/lib/index.js +46869 -0
- package/lib/js/HdBtn.js +1 -0
- package/lib/js/HdComGrid.js +1 -0
- package/lib/js/HdGrid.js +1 -0
- package/lib/js/HdHotkey.js +1 -0
- package/lib/js/HdTableColumn.js +1 -0
- package/lib/js/HdTreeTable.js +1 -0
- package/package.json +115 -0
package/package.json
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
{
|
2
|
+
"name": "ytg7vue",
|
3
|
+
"version": "1.16.1",
|
4
|
+
"description": "烟台港插件",
|
5
|
+
"author": "liangjinghao",
|
6
|
+
"license": "commerical",
|
7
|
+
"private": false,
|
8
|
+
"main": "lib/idev.common.js",
|
9
|
+
"scripts": {
|
10
|
+
"dev": "node --max_old_space_size=8000 build/dev-server.js",
|
11
|
+
"clean": "rimraf lib",
|
12
|
+
"build:component": "npm run clean && webpack --config build/webpack.component.js",
|
13
|
+
"build:prod": "cross-env NODE_ENV=production env_config=prod node build/build.js",
|
14
|
+
"build:utils": "cross-env BABEL_ENV=utils babel src --out-dir lib --ignore src/index.js",
|
15
|
+
"build:sit": "cross-env NODE_ENV=production env_config=sit node build/build.js",
|
16
|
+
"build:sit-preview": "cross-env NODE_ENV=production env_config=sit npm_config_preview=true npm_config_report=true node build/build.js",
|
17
|
+
"lint": "eslint --fix --ext .js,.vue src",
|
18
|
+
"jsdoc": "jsdoc -c ./conf.js -r"
|
19
|
+
},
|
20
|
+
"dependencies": {
|
21
|
+
"async-validator": "^1.10.1",
|
22
|
+
"axios": "^0.17.1",
|
23
|
+
"echarts": "3.8.5",
|
24
|
+
"element-resize-detector": "^1.2.3",
|
25
|
+
"file-saver": "1.3.3",
|
26
|
+
"js-cookie": "2.2.0",
|
27
|
+
"jsonlint": "1.6.2",
|
28
|
+
"jspdf": "^1.5.3",
|
29
|
+
"jspdf-autotable": "^3.0.2",
|
30
|
+
"jszip": "3.1.4",
|
31
|
+
"minami": "^1.2.3",
|
32
|
+
"normalize.css": "7.0.0",
|
33
|
+
"nprogress": "0.2.0",
|
34
|
+
"screenfull": "5.0.2",
|
35
|
+
"showdown": "1.8.2",
|
36
|
+
"simplemde": "1.11.2",
|
37
|
+
"sortablejs": "1.6.1",
|
38
|
+
"vue": "2.5.9",
|
39
|
+
"vue-draggable-resizable": "^1.7.5",
|
40
|
+
"vue-resource": "^1.3.4",
|
41
|
+
"vue-router": "3.0.1",
|
42
|
+
"vue-shortkey": "^3.1.0",
|
43
|
+
"vue-splitpane": "1.0.0",
|
44
|
+
"vuedraggable": "2.15.0",
|
45
|
+
"vuex": "3.0.1",
|
46
|
+
"xlsx": "^0.11.7"
|
47
|
+
},
|
48
|
+
"devDependencies": {
|
49
|
+
"autoprefixer": "7.1.6",
|
50
|
+
"babel-core": "6.26.0",
|
51
|
+
"babel-eslint": "8.0.2",
|
52
|
+
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
53
|
+
"babel-loader": "7.1.2",
|
54
|
+
"babel-plugin-syntax-jsx": "^6.18.0",
|
55
|
+
"babel-plugin-transform-runtime": "6.23.0",
|
56
|
+
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
57
|
+
"babel-preset-env": "^1.6.1",
|
58
|
+
"babel-preset-stage-2": "6.24.1",
|
59
|
+
"babel-register": "6.26.0",
|
60
|
+
"chalk": "2.3.0",
|
61
|
+
"connect-history-api-fallback": "1.4.0",
|
62
|
+
"copy-webpack-plugin": "4.2.0",
|
63
|
+
"cross-env": "5.1.1",
|
64
|
+
"css-loader": "0.28.7",
|
65
|
+
"eslint": "4.11.0",
|
66
|
+
"eslint-friendly-formatter": "3.0.0",
|
67
|
+
"eslint-import-resolver-webpack": "0.8.3",
|
68
|
+
"eslint-loader": "1.9.0",
|
69
|
+
"eslint-plugin-html": "3.2.2",
|
70
|
+
"eslint-plugin-import": "2.8.0",
|
71
|
+
"eventsource-polyfill": "0.9.6",
|
72
|
+
"express": "4.16.2",
|
73
|
+
"extract-text-webpack-plugin": "3.0.2",
|
74
|
+
"file-loader": "0.11.2",
|
75
|
+
"friendly-errors-webpack-plugin": "1.6.1",
|
76
|
+
"function-bind": "1.1.0",
|
77
|
+
"fuse.js": "3.4.2",
|
78
|
+
"html-webpack-plugin": "2.30.0",
|
79
|
+
"http-proxy-middleware": "0.17.4",
|
80
|
+
"jsdoc": "^3.5.5",
|
81
|
+
"node-sass": "^4.5.0",
|
82
|
+
"opn": "4.0.2",
|
83
|
+
"optimize-css-assets-webpack-plugin": "3.2.0",
|
84
|
+
"ora": "1.1.0",
|
85
|
+
"postcss-loader": "^2.0.8",
|
86
|
+
"pushstate-server": "2.1.0",
|
87
|
+
"rimraf": "2.6.0",
|
88
|
+
"sass-loader": "6.0.6",
|
89
|
+
"script-loader": "0.7.2",
|
90
|
+
"semver": "5.3.0",
|
91
|
+
"sherry-docstrap": "^1.3.2",
|
92
|
+
"style-loader": "0.19.0",
|
93
|
+
"svg-sprite-loader": "3.4.1",
|
94
|
+
"url-loader": "0.6.2",
|
95
|
+
"vue-image-crop-upload": "^2.2.3",
|
96
|
+
"vue-loader": "^13.5.0",
|
97
|
+
"vue-style-loader": "3.0.3",
|
98
|
+
"vue-template-compiler": "2.5.9",
|
99
|
+
"webpack": "3.8.1",
|
100
|
+
"webpack-bundle-analyzer": "2.9.0",
|
101
|
+
"webpack-dev-middleware": "1.12.0",
|
102
|
+
"webpack-hot-middleware": "2.20.0",
|
103
|
+
"webpack-merge": "4.1.0",
|
104
|
+
"webpack-node-externals": "^1.7.2"
|
105
|
+
},
|
106
|
+
"engines": {
|
107
|
+
"node": ">= 4.0.0",
|
108
|
+
"npm": ">= 3.0.0"
|
109
|
+
},
|
110
|
+
"browserslist": [
|
111
|
+
"> 1%",
|
112
|
+
"last 2 versions",
|
113
|
+
"not ie <= 9"
|
114
|
+
]
|
115
|
+
}
|