@koumoul/vjsf 2.10.1 → 2.10.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koumoul/vjsf",
3
- "version": "2.10.1",
3
+ "version": "2.10.2",
4
4
  "description": "Generate forms for the vuetify UI library (vuejs) based on annotated JSON schemas.",
5
5
  "main": "dist/main.js",
6
6
  "scripts": {
@@ -46,39 +46,36 @@
46
46
  },
47
47
  "homepage": "https://github.com/koumoul-dev/vuetify-jsonschema-form#readme",
48
48
  "dependencies": {
49
- "@mdi/js": "^5.5.55",
50
- "ajv": "^8.6.2",
49
+ "@mdi/js": "^6.5.95",
50
+ "ajv": "^8.9.0",
51
51
  "ajv-formats": "^2.1.1",
52
- "ajv-i18n": "^4.1.0",
53
- "debounce": "^1.2.0",
52
+ "ajv-i18n": "^4.2.0",
53
+ "debounce": "^1.2.1",
54
54
  "debug": "^4.3.3",
55
55
  "fast-copy": "^2.1.1",
56
- "fast-equals": "^2.0.0",
57
- "markdown-it": "^8.4.2",
58
- "match-all": "^1.2.5",
59
- "object-hash": "^2.1.1",
60
- "property-expr": "^2.0.4",
56
+ "fast-equals": "^2.0.4",
57
+ "markdown-it": "^12.3.2",
58
+ "match-all": "^1.2.6",
59
+ "object-hash": "^2.2.0",
60
+ "property-expr": "^2.0.5",
61
61
  "vuedraggable": "^2.24.3"
62
62
  },
63
63
  "devDependencies": {
64
- "@babel/cli": "^7.5.5",
65
- "@babel/core": "^7.5.5",
66
- "@babel/preset-env": "^7.5.5",
64
+ "@babel/core": "^7.16.12",
65
+ "@babel/preset-env": "^7.16.11",
67
66
  "@koumoul/data-fair-search-widget": "^0.3.0",
68
67
  "@koumoul/gh-pages-multi": "^0.6.0",
69
- "@mdi/font": "^3.8.95",
68
+ "@mdi/font": "^6.5.95",
70
69
  "@nuxtjs/axios": "^5.13.6",
71
70
  "@nuxtjs/vuetify": "^1.12.3",
72
71
  "@toast-ui/vue-editor": "^2.5.1",
73
- "@vue/test-utils": "^1.0.3",
74
- "axios": "^0.21.1",
72
+ "@vue/test-utils": "^1.3.0",
73
+ "axios": "^0.25.0",
75
74
  "babel-core": "^7.0.0-bridge.0",
76
- "babel-eslint": "^10.0.2",
77
- "babel-jest": "^26.1.0",
78
- "babel-loader": "^8.0.6",
79
- "babel-polyfill": "^6.26.0",
75
+ "babel-eslint": "^10.1.0",
76
+ "babel-loader": "^8.2.3",
80
77
  "brace": "^0.11.1",
81
- "easymde": "^2.14.0",
78
+ "easymde": "^2.16.1",
82
79
  "eslint": "^6.1.0",
83
80
  "eslint-config-standard": "^13.0.1",
84
81
  "eslint-plugin-import": "^2.18.2",
@@ -86,26 +83,23 @@
86
83
  "eslint-plugin-node": "^9.1.0",
87
84
  "eslint-plugin-promise": "^4.2.1",
88
85
  "eslint-plugin-standard": "^4.0.0",
89
- "eslint-plugin-vue": "^5.2.3",
90
- "fuse.js": "^3.4.6",
91
- "highlight.js": "^10.4.1",
92
- "hjson": "^3.1.2",
86
+ "eslint-plugin-vue": "^7.20.0",
87
+ "highlight.js": "^11.4.0",
93
88
  "jest": "^26.1.0",
94
89
  "jest-serializer-vue": "^2.0.2",
95
- "mini-css-extract-plugin": "^0.8.0",
96
- "nuxt": "^2.15.3",
90
+ "mini-css-extract-plugin": "^1.6.2",
91
+ "nuxt": "^2.15.8",
97
92
  "random-words": "^1.1.0",
98
- "sanitize-html": "^2.3.0",
93
+ "sanitize-html": "^2.6.1",
99
94
  "stringify-object": "^3.3.0",
100
95
  "tiptap-vuetify": "^2.24.0",
101
96
  "v-mask": "^2.3.0",
102
97
  "vue-axios": "^2.1.5",
103
98
  "vue-cropperjs": "^4.2.0",
104
- "vue-jest": "^3.0.5",
105
- "vue-template-compiler": "^2.6.11",
106
- "vuetify": "^2.5.2",
107
- "webpack": "^4.39.0",
108
- "webpack-cli": "^3.3.6",
109
- "yaml": "^1.7.1"
99
+ "vue-jest": "^3.0.7",
100
+ "vue-template-compiler": "^2.6.14",
101
+ "vuetify": "^2.6.2",
102
+ "webpack-cli": "^4.9.1",
103
+ "yaml": "^1.10.2"
110
104
  }
111
105
  }
package/webpack.config.js CHANGED
@@ -1,5 +1,5 @@
1
1
  const path = require('path')
2
- const VueLoaderPlugin = require('vue-loader/lib/plugin')
2
+ const { VueLoaderPlugin } = require('vue-loader')
3
3
  const MiniCssExtractPlugin = require('mini-css-extract-plugin')
4
4
 
5
5
  const base = {
@@ -8,22 +8,16 @@ const base = {
8
8
  rules: [{
9
9
  test: /\.js$/,
10
10
  exclude: /(node_modules)/,
11
- loader: 'babel-loader',
12
- options: {
13
- presets: ['@babel/preset-env']
14
- }
11
+ use: 'babel-loader'
15
12
  }, {
16
13
  test: /\.vue$/,
17
- loader: 'vue-loader'
14
+ use: 'vue-loader'
18
15
  }, {
19
16
  test: /\.css$/,
20
- loader: [MiniCssExtractPlugin.loader, 'css-loader']
21
- }, {
22
- test: /\.less$/,
23
- loader: [MiniCssExtractPlugin.loader, 'css-loader', 'less-loader']
17
+ use: [MiniCssExtractPlugin.loader, 'css-loader']
24
18
  }, {
25
19
  test: /\.(svg|eot|woff|ttf|woff2)$/,
26
- loader: ['file-loader']
20
+ use: 'file-loader'
27
21
  }]
28
22
  },
29
23
  plugins: [