-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "vue-dynamic-form-component",
"version": "2.8.1",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "quincychen",
"url": "https://quincychen.cn"
},
"keywords": [
"vue",
"dynamic",
"form",
"component"
],
"repository": {
"type": "github",
"url": "https://github.com/chenquincy/vue-dynamic-form-component"
},
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --dest lib --name vue-dynamic-form-component ./packages/index.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"main": "./lib/vue-dynamic-form-component.umd.min.js",
"typings": "types/index.d.ts",
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"peerDependencies": {
"element-ui": "^2.11.1",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vuepress/plugin-google-analytics": "^1.2.0",
"babel-eslint": "^10.0.1",
"element-ui": "^2.11.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^7.0.0",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.1",
"vuepress-plugin-sitemap": "^2.1.2"
}
}