-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.5 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
{
"name": "@vueblocks/element-schema-form",
"version": "0.1.8",
"description": "A schema-based form generator component for Element UI.",
"author": "xiaoluoboding <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build:lib": "vue-cli-service build --mode lib --target lib --name element-schema-form --dest lib src/index.js",
"build:rollup": "rollup -c rollup.config.js",
"build:demand": "cross-env MINIFY=true npm run build:rollup",
"bundle": "npm run build:lib && npm run build:demand",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"docs:deploy": "sh deploy.sh",
"report": "vue-cli-service build --mode lib --target lib --name element-schema-form --dest lib --report src/index.js"
},
"main": "lib/element-schema-form.umd.min.js",
"unpkg": "lib/element-schema-form.umd.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vueblocks/element-schema-form.git"
},
"keywords": [
"element",
"json-schema",
"form"
],
"license": "MIT",
"peerDependencies": {
"element-ui": "^2.11.1"
},
"dependencies": {
"core-js": "^3.3.2",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/eslint-config-standard": "^4.0.0",
"@vuepress/theme-default": "^1.8.2",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"cross-env": "^6.0.3",
"element-theme-chalk": "^2.10.1",
"element-ui": "^2.11.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"jsoneditor": "^7.0.1",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"normalize.css": "^8.0.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "^5.1.0",
"terser": "^4.3.9",
"vue-codemirror-lite": "^1.0.4",
"vue-router": "^3.0.3",
"vue-template-compiler": "^2.6.10",
"vue2-editor": "^2.10.2",
"vuepress": "^0.14.5",
"vuex": "^3.0.1"
}
}