-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.04 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
{
"name": "eom-form",
"version": "0.3.0",
"description": "vue.js schema based form generator",
"private": false,
"scripts": {
"serve": "vue-cli-service serve --public http://0.0.0.0:8080",
"build": "vue-cli-service build",
"build-bundle": "vue-cli-service build --target lib --name eomForm ./src/components/index.js",
"lint": "vue-cli-service lint",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"main": "./dist/eomForm.common.js",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/scramatte/eom-form.git"
},
"keywords": [
"vue.js",
"form",
"schema",
"json"
],
"author": "Sebastien Cramatte",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/scramatte/eom-form/issues"
},
"homepage": "https://github.com/scramatte/eom-form#readme",
"dependencies": {
"@hokify/vuejs-datepicker": "^2.0.2",
"axios": "^0.19.2",
"bootstrap-vue": "^2.13.0",
"core-js": "^3.6.4",
"expression-eval": "^3.1.1",
"vue": "^2.6.11",
"vue-currency-input": "^1.18.3",
"vue-i18n": "^8.17.4",
"vue-multiselect": "^2.1.6",
"vue-numeric": "^2.3.0",
"vue-password-strength-meter": "^1.7.2",
"vue-quill-editor": "^3.0.6",
"vue-router": "^3.1.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.4.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}