package.json 742 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "flushwritable",
  3. "version": "1.0.0",
  4. "description": "A Writable stream that flushes before emitting finish",
  5. "main": "lib/FlushWritable.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "mocha -R spec test"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/TomFrost/FlushWritable"
  15. },
  16. "keywords": [
  17. "stream",
  18. "streams",
  19. "writable",
  20. "flush",
  21. "transform",
  22. "wrapper"
  23. ],
  24. "author": "Tom Frost <tom@frosteddesign.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/TomFrost/FlushWritable/issues"
  28. },
  29. "homepage": "https://github.com/TomFrost/FlushWritable",
  30. "devDependencies": {
  31. "mocha": "^2.0.1",
  32. "should": "^4.3.0"
  33. }
  34. }