Update dependencies
This commit is contained in:
parent
ea02a5be68
commit
eff2fe85a0
|
@ -9,7 +9,7 @@ https://github.com/josdejong/jsoneditor
|
||||||
- Repair button is now capable of turning MongoDB documents into valid JSON.
|
- Repair button is now capable of turning MongoDB documents into valid JSON.
|
||||||
- Fixed #730: in `code` mode, there was an initial undo action which clears
|
- Fixed #730: in `code` mode, there was an initial undo action which clears
|
||||||
the content.
|
the content.
|
||||||
- Upgraded dependencies `vanilla-picker@2.9.1`, `mobius1-selectr@2.4.13`,
|
- Upgraded dependencies `vanilla-picker@2.9.2`, `mobius1-selectr@2.4.13`,
|
||||||
`ajv@6.10.2`.
|
`ajv@6.10.2`.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6519,9 +6519,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"vanilla-picker": {
|
"vanilla-picker": {
|
||||||
"version": "2.9.1",
|
"version": "2.9.2",
|
||||||
"resolved": "https://registry.npmjs.org/vanilla-picker/-/vanilla-picker-2.9.1.tgz",
|
"resolved": "https://registry.npmjs.org/vanilla-picker/-/vanilla-picker-2.9.2.tgz",
|
||||||
"integrity": "sha512-JcXwFwclAdfJ1eJWeiLdM9sYMPfmrUEqzCOeO74QaAgdZpe8VyBldSlimZfLP8OefBXWGH+wL80QwhP2TSv0eg==",
|
"integrity": "sha512-/VvbdCFno9jhOsqK8IVj7Jg6Cst5jeRdP9OWJo5H8R6s34mx/rTZFViucvUWyunbSML97C9SuIGZkRWEWjm3zg==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@sphinxxxx/color-conversion": "^2.2.1"
|
"@sphinxxxx/color-conversion": "^2.2.1"
|
||||||
}
|
}
|
||||||
|
@ -6644,9 +6644,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"webpack": {
|
"webpack": {
|
||||||
"version": "4.36.1",
|
"version": "4.38.0",
|
||||||
"resolved": "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz",
|
"resolved": "https://registry.npmjs.org/webpack/-/webpack-4.38.0.tgz",
|
||||||
"integrity": "sha512-Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg==",
|
"integrity": "sha512-lbuFsVOq8PZY+1Ytz/mYOvYOo+d4IJ31hHk/7iyoeWtwN33V+5HYotSH+UIb9tq914ey0Hot7z6HugD+je3sWw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@webassemblyjs/ast": "1.8.5",
|
"@webassemblyjs/ast": "1.8.5",
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
"bugs": "https://github.com/josdejong/jsoneditor/issues",
|
"bugs": "https://github.com/josdejong/jsoneditor/issues",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "gulp",
|
"build": "gulp",
|
||||||
|
"minify": "gulp minify",
|
||||||
"start": "gulp watch",
|
"start": "gulp watch",
|
||||||
"test": "mocha test"
|
"test": "mocha test"
|
||||||
},
|
},
|
||||||
|
@ -30,7 +31,7 @@
|
||||||
"json-source-map": "0.4.0",
|
"json-source-map": "0.4.0",
|
||||||
"mobius1-selectr": "2.4.13",
|
"mobius1-selectr": "2.4.13",
|
||||||
"picomodal": "3.0.0",
|
"picomodal": "3.0.0",
|
||||||
"vanilla-picker": "2.9.1"
|
"vanilla-picker": "2.9.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"date-format": "2.1.0",
|
"date-format": "2.1.0",
|
||||||
|
@ -43,6 +44,6 @@
|
||||||
"mkdirp": "0.5.1",
|
"mkdirp": "0.5.1",
|
||||||
"mocha": "6.2.0",
|
"mocha": "6.2.0",
|
||||||
"uglify-js": "3.6.0",
|
"uglify-js": "3.6.0",
|
||||||
"webpack": "4.36.1"
|
"webpack": "4.38.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue