package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "jszip",
  3. "version": "3.10.1",
  4. "author": "Stuart Knightley <stuart@stuartk.com>",
  5. "description": "Create, read and edit .zip files with JavaScript http://stuartk.com/jszip",
  6. "scripts": {
  7. "test": "npm run test-node && npm run test-browser && tsc",
  8. "test-node": "qunit --require ./test/helpers/test-utils.js --require ./test/helpers/node-test-utils.js test/asserts/",
  9. "test-browser": "grunt build && node test/run.js --test",
  10. "benchmark": "npm run benchmark-node && npm run benchmark-browser",
  11. "benchmark-node": "node test/benchmark/node.js",
  12. "benchmark-browser": "node test/run.js --benchmark",
  13. "lint": "eslint ."
  14. },
  15. "contributors": [
  16. {
  17. "name": "Franz Buchinger"
  18. },
  19. {
  20. "name": "António Afonso"
  21. },
  22. {
  23. "name": "David Duponchel"
  24. },
  25. {
  26. "name": "yiminghe"
  27. }
  28. ],
  29. "main": "./lib/index",
  30. "browser": {
  31. "./lib/index": "./dist/jszip.min.js",
  32. "readable-stream": "./lib/readable-stream-browser.js"
  33. },
  34. "types": "./index.d.ts",
  35. "repository": {
  36. "type": "git",
  37. "url": "https://github.com/Stuk/jszip.git"
  38. },
  39. "keywords": [
  40. "zip",
  41. "deflate",
  42. "inflate"
  43. ],
  44. "devDependencies": {
  45. "benchmark": "^2.1.4",
  46. "browserify": "~13.0.0",
  47. "eslint": "^8.18.0",
  48. "grunt": "~0.4.1",
  49. "grunt-browserify": "~5.0.0",
  50. "grunt-cli": "~1.1.0",
  51. "grunt-contrib-uglify": "~4.0.1",
  52. "http-server": "^13.0.2",
  53. "jszip-utils": "~0.0.2",
  54. "package-json-versionify": "1.0.2",
  55. "playwright": "^1.15.2",
  56. "qunit": "~2.9.2",
  57. "tmp": "0.0.28",
  58. "typescript": "^4.6.3"
  59. },
  60. "dependencies": {
  61. "lie": "~3.3.0",
  62. "pako": "~1.0.2",
  63. "readable-stream": "~2.3.6",
  64. "setimmediate": "^1.0.5"
  65. },
  66. "license": "(MIT OR GPL-3.0-or-later)"
  67. }