package.json 530 B

123456789101112131415161718192021222324
  1. {
  2. "name": "pump",
  3. "version": "3.0.0",
  4. "repository": "git://github.com/mafintosh/pump.git",
  5. "license": "MIT",
  6. "description": "pipe streams together and close all of them if one of them closes",
  7. "browser": {
  8. "fs": false
  9. },
  10. "keywords": [
  11. "streams",
  12. "pipe",
  13. "destroy",
  14. "callback"
  15. ],
  16. "author": "Mathias Buus Madsen <mathiasbuus@gmail.com>",
  17. "dependencies": {
  18. "end-of-stream": "^1.1.0",
  19. "once": "^1.3.1"
  20. },
  21. "scripts": {
  22. "test": "node test-browser.js && node test-node.js"
  23. }
  24. }