package.json 688 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "minipass-collect",
  3. "version": "2.0.1",
  4. "description": "A Minipass stream that collects all the data into a single chunk",
  5. "author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
  6. "license": "ISC",
  7. "scripts": {
  8. "test": "tap",
  9. "snap": "tap",
  10. "preversion": "npm test",
  11. "postversion": "npm publish",
  12. "prepublishOnly": "git push origin --follow-tags"
  13. },
  14. "tap": {
  15. "check-coverage": true
  16. },
  17. "devDependencies": {
  18. "tap": "^16.3.8"
  19. },
  20. "dependencies": {
  21. "minipass": "^7.0.3"
  22. },
  23. "files": [
  24. "index.js"
  25. ],
  26. "engines": {
  27. "node": ">=16 || 14 >=14.17"
  28. },
  29. "repository": "https://github.com/isaacs/minipass-collect"
  30. }