package.json 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "minizlib",
  3. "version": "2.1.2",
  4. "description": "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.",
  5. "main": "index.js",
  6. "dependencies": {
  7. "minipass": "^3.0.0",
  8. "yallist": "^4.0.0"
  9. },
  10. "scripts": {
  11. "test": "tap test/*.js --100 -J",
  12. "preversion": "npm test",
  13. "postversion": "npm publish",
  14. "postpublish": "git push origin --all; git push origin --tags"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/isaacs/minizlib.git"
  19. },
  20. "keywords": [
  21. "zlib",
  22. "gzip",
  23. "gunzip",
  24. "deflate",
  25. "inflate",
  26. "compression",
  27. "zip",
  28. "unzip"
  29. ],
  30. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  31. "license": "MIT",
  32. "devDependencies": {
  33. "tap": "^14.6.9"
  34. },
  35. "files": [
  36. "index.js",
  37. "constants.js"
  38. ],
  39. "engines": {
  40. "node": ">= 8"
  41. }
  42. }