-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.15 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vue-form-builder",
"version": "1.2.0",
"description": "form builder & validation",
"keywords": [
"form",
"builder",
"validation"
],
"author": {
"name": "ZhongYou Lu",
"email": "[email protected]",
"url": "https://github.com/zhongyoulu"
},
"homepage": "https://github.com/zhongyoulu/vue-form-builder",
"repository": {
"type": "git",
"url": "git+https://github.com/zhongyoulu/vue-form-builder.git"
},
"bugs": "https://github.com/zhongyoulu/vue-form-builder/issues",
"main": "dist/form-builder.js",
"module": "dist/form-builder.esm.js",
"unpkg": "dist/form-builder.min.js",
"files": [
"/dist",
"/src"
],
"license": "MIT",
"private": false,
"sideEffects": false,
"scripts": {
"serve": "vue-cli-service serve dev/serve.js",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:umd": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format umd",
"build:esm": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format esm",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format unpkg",
"lint": "eslint src --fix --ext .js,.vue"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@iconify/iconify": "^2.0.0-rc.6",
"@popperjs/core": "^2.7.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"fuse.js": "^6.4.6",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"minimist": "^1.2.5",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-purge-icons": "^0.7.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"sass-loader": "^10.1.1",
"sortablejs": "^1.13.0",
"vue": "^2.6.12",
"vue-json-views": "^1.3.0",
"vue-select": "git+https://[email protected]/ZhongYouLu/vue-select.git",
"vue-template-compiler": "^2.6.12",
"vuedraggable": "^2.24.3"
},
"peerDependencies": {
"vue": "^2.6.12",
"vue-select": "git+https://[email protected]/ZhongYouLu/vue-select.git",
"sortablejs": "^1.13.0",
"vuedraggable": "^2.24.3",
"@popperjs/core": "^2.7.1",
"fuse.js": "^6.4.6",
"@iconify/iconify": "^2.0.0-rc.6"
},
"engines": {
"node": ">=12"
},
"rollup_config": {
"name": "FormBuilder",
"globals": {
"vue": "Vue",
"vuedraggable": "vuedraggable",
"vue-select": "VueSelect",
"fuse.js": "Fuse",
"@popperjs/core": "Popper",
"@iconify/iconify": "Iconify"
}
}
}