package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "unzipper",
  3. "version": "0.12.3",
  4. "description": "Unzip cross-platform streaming API ",
  5. "author": "Evan Oxfeld <eoxfeld@gmail.com>",
  6. "contributors": [
  7. {
  8. "name": "Ziggy Jonsson",
  9. "email": "ziggy.jonsson.nyc@gmail.com"
  10. },
  11. {
  12. "name": "Evan Oxfeld",
  13. "email": "eoxfeld@gmail.com"
  14. },
  15. {
  16. "name": "Joe Ferner",
  17. "email": "joe.ferner@nearinfinity.com"
  18. }
  19. ],
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/ZJONSSON/node-unzipper.git"
  23. },
  24. "license": "MIT",
  25. "dependencies": {
  26. "bluebird": "~3.7.2",
  27. "duplexer2": "~0.1.4",
  28. "fs-extra": "^11.2.0",
  29. "graceful-fs": "^4.2.2",
  30. "node-int64": "^0.4.0"
  31. },
  32. "devDependencies": {
  33. "@eslint/js": "^9.2.0",
  34. "aws-sdk": "^2.1636.0",
  35. "@aws-sdk/client-s3": "^3.0.0",
  36. "dirdiff": ">= 0.0.1 < 1",
  37. "eslint": "^9.2.0",
  38. "globals": "^15.2.0",
  39. "iconv-lite": "^0.4.24",
  40. "request": "^2.88.0",
  41. "stream-buffers": ">= 0.2.5 < 1",
  42. "tap": "^16.3.10",
  43. "temp": ">= 0.4.0 < 1"
  44. },
  45. "directories": {
  46. "example": "examples",
  47. "test": "test"
  48. },
  49. "keywords": [
  50. "zip",
  51. "unzip",
  52. "zlib",
  53. "uncompress",
  54. "archive",
  55. "stream",
  56. "extract"
  57. ],
  58. "main": "unzip.js",
  59. "scripts": {
  60. "test": "npx tap test/*.js --coverage-report=html --lines=90 --functions=85 --statements=90 --branches=80 --reporter=dot"
  61. }
  62. }