package.json 881 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "yauzl",
  3. "version": "2.10.0",
  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.1.0",
  30. "buffer-crc32": "~0.2.3"
  31. },
  32. "devDependencies": {
  33. "bl": "~1.0.0",
  34. "istanbul": "~0.3.4",
  35. "pend": "~1.2.0"
  36. },
  37. "files": [
  38. "index.js"
  39. ]
  40. }