package.json 835 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "yazl",
  3. "version": "2.5.1",
  4. "description": "yet another zip 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/yazl.git"
  14. },
  15. "keywords": [
  16. "zip",
  17. "stream",
  18. "archive",
  19. "file"
  20. ],
  21. "author": "Josh Wolfe <thejoshwolfe@gmail.com>",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/thejoshwolfe/yazl/issues"
  25. },
  26. "homepage": "https://github.com/thejoshwolfe/yazl",
  27. "dependencies": {
  28. "buffer-crc32": "~0.2.3"
  29. },
  30. "devDependencies": {
  31. "bl": "~0.9.3",
  32. "istanbul": "^0.4.5",
  33. "yauzl": "~2.3.1"
  34. },
  35. "files": [
  36. "index.js"
  37. ]
  38. }