package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "adm-zip",
  3. "version": "0.5.10",
  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": ">=6.0"
  41. },
  42. "devDependencies": {
  43. "chai": "^4.3.4",
  44. "mocha": "^10.2.0",
  45. "prettier": "^2.2.1",
  46. "rimraf": "^3.0.2"
  47. }
  48. }