aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/blueimp/jquery-file-upload/package.json
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-11-10 12:49:51 +0000
committerMario <mario@mariovavti.com>2019-11-10 14:10:03 +0100
commit580c3f4ffe9608d2beb56d418c68b3b112420e76 (patch)
tree82335d01179ac361d3f547a4b8e8c598d302e9f3 /vendor/blueimp/jquery-file-upload/package.json
parentd22766f458a8539a40a57f3946459a9be1f21cd6 (diff)
downloadvolse-hubzilla-580c3f4ffe9608d2beb56d418c68b3b112420e76.tar.gz
volse-hubzilla-580c3f4ffe9608d2beb56d418c68b3b112420e76.tar.bz2
volse-hubzilla-580c3f4ffe9608d2beb56d418c68b3b112420e76.zip
another bulk of composer updates
(cherry picked from commit 6685381fd8db507493c3d7c1793f8c05c681bbce)
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/package.json')
-rw-r--r--vendor/blueimp/jquery-file-upload/package.json81
1 files changed, 71 insertions, 10 deletions
diff --git a/vendor/blueimp/jquery-file-upload/package.json b/vendor/blueimp/jquery-file-upload/package.json
index b884aa126..55ff49854 100644
--- a/vendor/blueimp/jquery-file-upload/package.json
+++ b/vendor/blueimp/jquery-file-upload/package.json
@@ -1,6 +1,6 @@
{
"name": "blueimp-file-upload",
- "version": "9.34.0",
+ "version": "10.3.0",
"title": "jQuery File Upload",
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
"keywords": [
@@ -34,22 +34,83 @@
"url": "git://github.com/blueimp/jQuery-File-Upload.git"
},
"license": "MIT",
+ "peerDependencies": {
+ "jquery": ">=1.6"
+ },
"optionalDependencies": {
- "blueimp-canvas-to-blob": "3.5.0",
- "blueimp-load-image": "2.12.2",
- "blueimp-tmpl": "3.6.0"
+ "blueimp-canvas-to-blob": "3",
+ "blueimp-load-image": "2",
+ "blueimp-tmpl": "3"
},
"devDependencies": {
- "bower-json": "0.8.1",
- "jshint": "2.9.3"
+ "eslint": "6",
+ "eslint-config-blueimp": "1",
+ "eslint-config-prettier": "6",
+ "eslint-plugin-jsdoc": "15",
+ "eslint-plugin-prettier": "3",
+ "mocha-chrome": "2",
+ "prettier": "1",
+ "stylelint": "10",
+ "stylelint-config-prettier": "5",
+ "stylelint-config-recommended": "2"
+ },
+ "stylelint": {
+ "extends": [
+ "stylelint-config-recommended",
+ "stylelint-config-prettier"
+ ],
+ "ignoreFiles": [
+ "css/*.min.css",
+ "css/vendor/*",
+ "test/vendor/*"
+ ]
+ },
+ "eslintConfig": {
+ "extends": [
+ "blueimp",
+ "plugin:jsdoc/recommended",
+ "plugin:prettier/recommended"
+ ],
+ "env": {
+ "browser": true
+ }
+ },
+ "eslintIgnore": [
+ "js/*.min.js",
+ "js/vendor",
+ "test/vendor"
+ ],
+ "prettier": {
+ "proseWrap": "always",
+ "singleQuote": true
},
"scripts": {
- "bower-version-update": "./bower-version-update.js",
- "lint": "jshint *.js js/*.js js/cors/*.js",
- "test": "npm run lint",
+ "lint": "stylelint '**/*.css' && eslint .",
+ "unit": "docker-compose run --rm mocha",
+ "wdio": "docker-compose run --rm wdio",
+ "test": "npm run lint && npm run unit && npm run wdio && npm run wdio -- firefox",
+ "posttest": "docker-compose down -v",
"preversion": "npm test",
- "version": "npm run bower-version-update && git add bower.json",
"postversion": "git push --tags origin master && npm publish"
},
+ "files": [
+ "css/jquery.fileupload-noscript.css",
+ "css/jquery.fileupload-ui-noscript.css",
+ "css/jquery.fileupload-ui.css",
+ "css/jquery.fileupload.css",
+ "img/loading.gif",
+ "img/progressbar.gif",
+ "js/cors/jquery.postmessage-transport.js",
+ "js/cors/jquery.xdr-transport.js",
+ "js/vendor/jquery.ui.widget.js",
+ "js/jquery.fileupload-audio.js",
+ "js/jquery.fileupload-image.js",
+ "js/jquery.fileupload-process.js",
+ "js/jquery.fileupload-ui.js",
+ "js/jquery.fileupload-validate.js",
+ "js/jquery.fileupload-video.js",
+ "js/jquery.fileupload.js",
+ "js/jquery.iframe-transport.js"
+ ],
"main": "js/jquery.fileupload.js"
}