package.json 817 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "yauzl",
  3. "version": "2.4.1",
  4. "description": "yet another unzip library for node",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test/test.js",
  8. "test-cov": "istanbul cover test/test.js",
  9. "test-travis": "istanbul cover --report lcovonly test/test.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/thejoshwolfe/yauzl.git"
  14. },
  15. "keywords": [
  16. "unzip",
  17. "zip",
  18. "stream",
  19. "archive",
  20. "file"
  21. ],
  22. "author": "Josh Wolfe <thejoshwolfe@gmail.com>",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/thejoshwolfe/yauzl/issues"
  26. },
  27. "homepage": "https://github.com/thejoshwolfe/yauzl",
  28. "dependencies": {
  29. "fd-slicer": "~1.0.1"
  30. },
  31. "devDependencies": {
  32. "bl": "~1.0.0",
  33. "istanbul": "~0.3.4",
  34. "pend": "~1.2.0"
  35. }
  36. }