package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "adm-zip",
  3. "version": "0.5.17",
  4. "description": "Javascript implementation of zip for nodejs with support for electron original-fs. Allows user to create or extract zip files both in memory or to/from disk",
  5. "scripts": {
  6. "test": "mocha -R spec",
  7. "test:format": "npm run format:prettier:raw -- --check",
  8. "format": "npm run format:prettier",
  9. "format:prettier": "npm run format:prettier:raw -- --write",
  10. "format:prettier:raw": "prettier \"**/*.{js,yml,json}\""
  11. },
  12. "keywords": [
  13. "zip",
  14. "methods",
  15. "archive",
  16. "unzip"
  17. ],
  18. "homepage": "https://github.com/cthackers/adm-zip",
  19. "author": "Nasca Iacob <sy@another-d-mention.ro> (https://github.com/cthackers)",
  20. "bugs": {
  21. "email": "sy@another-d-mention.ro",
  22. "url": "https://github.com/cthackers/adm-zip/issues"
  23. },
  24. "license": "MIT",
  25. "files": [
  26. "adm-zip.js",
  27. "headers",
  28. "methods",
  29. "util",
  30. "zipEntry.js",
  31. "zipFile.js",
  32. "LICENSE"
  33. ],
  34. "main": "adm-zip.js",
  35. "repository": {
  36. "type": "git",
  37. "url": "https://github.com/cthackers/adm-zip.git"
  38. },
  39. "engines": {
  40. "node": ">=12.0"
  41. },
  42. "overrides": {
  43. "mocha": {
  44. "chokidar": "^4.0.3"
  45. }
  46. },
  47. "devDependencies": {
  48. "chai": "^6.2.2",
  49. "iconv-lite": "^0.7.2",
  50. "mocha": "12.0.0-beta-10",
  51. "prettier": "^3.8.1",
  52. "rimraf": "^3.0.2"
  53. }
  54. }