3447c1a4022f7e46d3a1857b1db481c3b61c4f936156e422e99b4ef2e35bcd8487a4b0f7533900a3b071fe7475e3d11732a3df07f996383a04f508ce903ae8 770 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "unpipe",
  3. "description": "Unpipe a stream from all destinations",
  4. "version": "1.0.0",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "repository": "stream-utils/unpipe",
  8. "devDependencies": {
  9. "istanbul": "0.3.15",
  10. "mocha": "2.2.5",
  11. "readable-stream": "1.1.13"
  12. },
  13. "files": [
  14. "HISTORY.md",
  15. "LICENSE",
  16. "README.md",
  17. "index.js"
  18. ],
  19. "engines": {
  20. "node": ">= 0.8"
  21. },
  22. "scripts": {
  23. "test": "mocha --reporter spec --bail --check-leaks test/",
  24. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  25. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  26. }
  27. }