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