package.json 618 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "pump",
  3. "version": "3.0.4",
  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. "imports": {
  11. "fs": {
  12. "bare": "./empty.js",
  13. "default": "fs"
  14. }
  15. },
  16. "keywords": [
  17. "streams",
  18. "pipe",
  19. "destroy",
  20. "callback"
  21. ],
  22. "author": "Mathias Buus Madsen <mathiasbuus@gmail.com>",
  23. "dependencies": {
  24. "end-of-stream": "^1.1.0",
  25. "once": "^1.3.1"
  26. },
  27. "scripts": {
  28. "test": "node test-browser.js && node test-node.js"
  29. }
  30. }