ecinc-cloud-yoagwgl 9.5.0
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/README.md +24 -0
- package/lib/ecyoagwgl.common.js +31701 -0
- package/lib/ecyoagwgl.umd.js +31711 -0
- package/lib/ecyoagwgl.umd.min.js +8 -0
- package/package.json +83 -0
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ecinc-cloud-yoagwgl",
|
|
3
|
+
"main": "/lib/ecyoagwgl.umd.min.js",
|
|
4
|
+
"version": "9.5.0",
|
|
5
|
+
"description": "易臣云应用平台-公文管理",
|
|
6
|
+
"keyword": "ecinc cloud plat",
|
|
7
|
+
"private": false,
|
|
8
|
+
"author": "ECINC",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"lint": "vue-cli-service lint",
|
|
11
|
+
"lib:wappaio": "vue-cli-service build --target lib --name ecwappaio --dest lib packages/wappaio.index.js",
|
|
12
|
+
"lib:wportal": "vue-cli-service build --target lib --name ecwportal --dest lib packages/wportal.index.js",
|
|
13
|
+
"lib:mappaio": "vue-cli-service build --target lib --name ecmappaio --dest lib packages/mappaio.index.js",
|
|
14
|
+
"lib:yoagwgl": "vue-cli-service build --target lib --name ecyoagwgl --dest lib packages/ecyoa/gwgl/index.js"
|
|
15
|
+
},
|
|
16
|
+
"husky": {
|
|
17
|
+
"hooks": {
|
|
18
|
+
"pre-commit": "lint-staged"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"lint-staged": {
|
|
22
|
+
"src/**/*.{js,vue}": [
|
|
23
|
+
"eslint --fix",
|
|
24
|
+
"git add"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@babel/polyfill": "^7.11.5",
|
|
29
|
+
"axios": "^0.19.0",
|
|
30
|
+
"clipboard": "^2.0.6",
|
|
31
|
+
"highlight.js": "^9.12.0",
|
|
32
|
+
"http-vue-loader": "^1.4.1",
|
|
33
|
+
"increase-memory-limit": "^1.0.7",
|
|
34
|
+
"jquery": "^3.4.1",
|
|
35
|
+
"jquery-ui": "^1.12.1",
|
|
36
|
+
"js-cookie": "^2.2.1",
|
|
37
|
+
"jsonlint": "^1.6.3",
|
|
38
|
+
"jsplumb": "^2.15.6",
|
|
39
|
+
"jwt-decode": "^2.2.0",
|
|
40
|
+
"sortablejs": "^1.10.1",
|
|
41
|
+
"tiff.js": "^1.0.0",
|
|
42
|
+
"vee-validate": "^3.0.11",
|
|
43
|
+
"vue-i18n": "^8.15.0",
|
|
44
|
+
"vuedraggable": "^2.23.2"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@babel/core": "^7.0.0",
|
|
48
|
+
"@babel/register": "^7.0.0",
|
|
49
|
+
"@riophae/vue-treeselect": "^0.4.0",
|
|
50
|
+
"@vue/cli-plugin-babel": "^4.5.18",
|
|
51
|
+
"@vue/cli-plugin-eslint": "^4.5.18",
|
|
52
|
+
"@vue/cli-service": "^4.5.18",
|
|
53
|
+
"babel-core": "^7.0.0-bridge.0",
|
|
54
|
+
"babel-eslint": "^10.0.1",
|
|
55
|
+
"babel-jest": "^25.5.1",
|
|
56
|
+
"element-ui": "^2.15.12",
|
|
57
|
+
"eslint": "5.15.3",
|
|
58
|
+
"eslint-plugin-vue": "5.2.2",
|
|
59
|
+
"lint-staged": "8.1.5",
|
|
60
|
+
"moment": "^2.24.0",
|
|
61
|
+
"node-sass": "^4.9.3",
|
|
62
|
+
"sass-loader": "^7.3.1",
|
|
63
|
+
"script-loader": "^0.7.2",
|
|
64
|
+
"vant": "^2.12.49",
|
|
65
|
+
"vue": "^2.7.16",
|
|
66
|
+
"vue-codemirror": "^4.0.6",
|
|
67
|
+
"vue-grid-layout": "^2.4.0",
|
|
68
|
+
"vuex": "^3.6.2"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=8.9",
|
|
72
|
+
"npm": ">= 3.0.0"
|
|
73
|
+
},
|
|
74
|
+
"browserslist": [
|
|
75
|
+
"> 1%",
|
|
76
|
+
"last 3 versions",
|
|
77
|
+
"not ie <= 9"
|
|
78
|
+
],
|
|
79
|
+
"directories": {
|
|
80
|
+
"test": "tests"
|
|
81
|
+
},
|
|
82
|
+
"license": "ISC"
|
|
83
|
+
}
|