package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@zip.js/zip.js",
  3. "description": "A JavaScript library to zip and unzip files in the browser and Deno",
  4. "author": "Gildas Lormeau",
  5. "license": "BSD-3-Clause",
  6. "version": "2.4.26",
  7. "type": "module",
  8. "keywords": [
  9. "zip",
  10. "unzip",
  11. "browser",
  12. "web",
  13. "aes-256",
  14. "aes-192",
  15. "aes-128",
  16. "zip-crypto",
  17. "encryption",
  18. "zip64",
  19. "stream",
  20. "web-crypto",
  21. "web-workers",
  22. "deno"
  23. ],
  24. "scripts": {
  25. "build": "./build.sh",
  26. "test": "cd ./tests && \"./run-tests.sh\""
  27. },
  28. "main": "index.js",
  29. "types": "index.d.ts",
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/gildas-lormeau/zip.js.git"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/gildas-lormeau/zip.js/issues"
  36. },
  37. "homepage": "https://gildas-lormeau.github.io/zip.js",
  38. "devDependencies": {
  39. "@babel/core": "^7.18.5",
  40. "@babel/preset-env": "^7.18.2",
  41. "@rollup/plugin-babel": "^5.3.1",
  42. "@rollup/plugin-commonjs": "^22.0.0",
  43. "@rollup/plugin-node-resolve": "^13.3.0",
  44. "@rollup/plugin-replace": "^4.0.0",
  45. "babel-plugin-transform-async-to-promises": "^0.8.18",
  46. "core-js": "^3.23.2",
  47. "rollup": "^2.75.7",
  48. "rollup-plugin-terser": "^7.0.2"
  49. }
  50. }