package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "blueimp-file-upload",
  3. "version": "9.19.2",
  4. "title": "jQuery File Upload",
  5. "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.",
  6. "keywords": [
  7. "jquery",
  8. "file",
  9. "upload",
  10. "widget",
  11. "multiple",
  12. "selection",
  13. "drag",
  14. "drop",
  15. "progress",
  16. "preview",
  17. "cross-domain",
  18. "cross-site",
  19. "chunk",
  20. "resume",
  21. "gae",
  22. "go",
  23. "python",
  24. "php",
  25. "bootstrap"
  26. ],
  27. "homepage": "https://github.com/blueimp/jQuery-File-Upload",
  28. "author": {
  29. "name": "Sebastian Tschan",
  30. "url": "https://blueimp.net"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/blueimp/jQuery-File-Upload.git"
  35. },
  36. "license": "MIT",
  37. "optionalDependencies": {
  38. "blueimp-canvas-to-blob": "3.5.0",
  39. "blueimp-load-image": "2.12.2",
  40. "blueimp-tmpl": "3.6.0"
  41. },
  42. "devDependencies": {
  43. "bower-json": "0.8.1",
  44. "jshint": "2.9.3"
  45. },
  46. "scripts": {
  47. "bower-version-update": "./bower-version-update.js",
  48. "lint": "jshint *.js js/*.js js/cors/*.js",
  49. "test": "npm run lint",
  50. "preversion": "npm test",
  51. "version": "npm run bower-version-update && git add bower.json",
  52. "postversion": "git push --tags origin master && npm publish"
  53. },
  54. "main": "js/jquery.fileupload.js"
  55. }