package.json 694 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "flush-write-stream",
  3. "version": "1.1.1",
  4. "description": "A write stream constructor that supports a flush function that is called before finish is emitted",
  5. "main": "index.js",
  6. "dependencies": {
  7. "inherits": "^2.0.3",
  8. "readable-stream": "^2.3.6"
  9. },
  10. "devDependencies": {
  11. "tape": "^4.2.2"
  12. },
  13. "scripts": {
  14. "test": "tape test.js"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/mafintosh/flush-write-stream.git"
  19. },
  20. "author": "Mathias Buus (@mafintosh)",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/mafintosh/flush-write-stream/issues"
  24. },
  25. "homepage": "https://github.com/mafintosh/flush-write-stream"
  26. }