package.json 657 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "stream-buffers",
  3. "version": "2.2.0",
  4. "description": "Buffer-backed Streams for reading and writing.",
  5. "keywords": [
  6. "memory streams",
  7. "streams",
  8. "buffer streams"
  9. ],
  10. "author": "Sam Day <me@samcday.com.au>",
  11. "main": "./lib/streambuffer.js",
  12. "engines": {
  13. "node": ">= 0.10.0"
  14. },
  15. "dependencies": {},
  16. "devDependencies": {
  17. "istanbul": "~0.3.2",
  18. "vows": ">= 0.5.6"
  19. },
  20. "license": "Unlicense",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/samcday/node-stream-buffer.git"
  24. },
  25. "scripts": {
  26. "test": "[ -n \"$NO_COVERAGE\" ] && vows --spec || istanbul cover vows -- --spec"
  27. }
  28. }