Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

88 řádky
2.1 KiB

  1. {
  2. "name": "dropzone",
  3. "version": "6.0.0-beta.2",
  4. "description": "Handles drag and drop of files for you.",
  5. "keywords": [
  6. "dragndrop",
  7. "drag and drop",
  8. "file upload",
  9. "upload"
  10. ],
  11. "homepage": "https://www.dropzone.dev/js",
  12. "source": "src/dropzone.js",
  13. "main": "dist/dropzone.js",
  14. "module": "dist/dropzone.mjs",
  15. "standalone": "dist/dropzone-min.js",
  16. "browserslist": "defaults, > 0.25%",
  17. "targets": {
  18. "main": {
  19. "source": "src/dropzone.js"
  20. },
  21. "module": {
  22. "source": "src/dropzone.js"
  23. },
  24. "standalone": {
  25. "source": "tool/dropzone-global.js",
  26. "outputFormat": "global"
  27. },
  28. "built-test": {
  29. "source": "test/unit-tests.js",
  30. "distDir": "test/built/"
  31. }
  32. },
  33. "maintainers": [
  34. {
  35. "name": "Matias Meno",
  36. "email": "m@tias.me",
  37. "web": "https://www.yesmeno.com"
  38. }
  39. ],
  40. "contributors": [
  41. {
  42. "name": "Matias Meno",
  43. "email": "m@tias.me",
  44. "web": "https://www.yesmeno.com"
  45. }
  46. ],
  47. "scripts": {
  48. "watch": "parcel watch",
  49. "build": "parcel build && yarn run css",
  50. "css": "yarn sass src/:dist/ --style compressed",
  51. "watch-css": "yarn sass src/:dist/ --watch --style compressed",
  52. "test": "karma start test/karma.conf.js",
  53. "start-test-server": "node test/test-server.js"
  54. },
  55. "bugs": {
  56. "email": "m@tias.me",
  57. "url": "https://github.com/dropzone/dropzone/issues"
  58. },
  59. "license": "MIT",
  60. "repository": {
  61. "type": "git",
  62. "url": "https://github.com/dropzone/dropzone.git"
  63. },
  64. "dependencies": {
  65. "@swc/helpers": "^0.2.13",
  66. "just-extend": "^5.0.0"
  67. },
  68. "devDependencies": {
  69. "@parcel/transformer-inline-string": "^2.0.0",
  70. "@parcel/transformer-sass": "^2.0.0",
  71. "chai": "4.3.4",
  72. "cypress": "^8.7.0",
  73. "cypress-file-upload": "^5.0.8",
  74. "karma": "^6.1.0",
  75. "karma-chrome-launcher": "^3.1.0",
  76. "karma-mocha": "^2.0.1",
  77. "karma-sinon-chai": "^2.0.2",
  78. "karma-spec-reporter": "^0.0.32",
  79. "mocha": "^9.1.3",
  80. "mocha-headless-chrome": "^3.0.0",
  81. "node-static": "^0.7.11",
  82. "parcel": "^2.0.0",
  83. "sass": "^1.33.0",
  84. "sinon": "^11.1.2",
  85. "sinon-chai": "^3.5.0"
  86. }
  87. }