{
  "_args": [
    [
      "msgpack-stream@~0.0.10",
      "/Users/johnc/src/fw-host-discovery/node_modules/mux-demux"
    ]
  ],
  "_from": "msgpack-stream@>=0.0.10 <0.1.0",
  "_id": "msgpack-stream@0.0.12",
  "_inCache": true,
  "_installable": true,
  "_location": "/msgpack-stream",
  "_npmUser": {
    "email": "dominic.tarr@gmail.com",
    "name": "dominictarr"
  },
  "_npmVersion": "1.3.11",
  "_phantomChildren": {},
  "_requested": {
    "name": "msgpack-stream",
    "raw": "msgpack-stream@~0.0.10",
    "rawSpec": "~0.0.10",
    "scope": null,
    "spec": ">=0.0.10 <0.1.0",
    "type": "range"
  },
  "_requiredBy": [
    "/mux-demux"
  ],
  "_resolved": "https://registry.npmjs.org/msgpack-stream/-/msgpack-stream-0.0.12.tgz",
  "_shasum": "28897d16cd7c0a7901eee16b9b6039d42e2fcc97",
  "_shrinkwrap": null,
  "_spec": "msgpack-stream@~0.0.10",
  "_where": "/Users/johnc/src/fw-host-discovery/node_modules/mux-demux",
  "author": {
    "email": "dominic.tarr@gmail.com",
    "name": "Dominic Tarr",
    "url": "dominictarr.com"
  },
  "bugs": {
    "url": "https://github.com/dominictarr/msgpack-stream/issues"
  },
  "dependencies": {
    "bops": "0.0.6",
    "msgpack-js": "0.3.0",
    "through": "2.3.4"
  },
  "description": "Stream of msgpack protocol",
  "devDependencies": {
    "tape": "~1.0.4"
  },
  "directories": {},
  "dist": {
    "shasum": "28897d16cd7c0a7901eee16b9b6039d42e2fcc97",
    "tarball": "http://registry.npmjs.org/msgpack-stream/-/msgpack-stream-0.0.12.tgz"
  },
  "homepage": "https://github.com/dominictarr/msgpack-stream#readme",
  "keywords": [
    "frame",
    "msgpack",
    "pipe",
    "stream"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "dominictarr",
      "email": "dominic.tarr@gmail.com"
    }
  ],
  "name": "msgpack-stream",
  "optionalDependencies": {},
  "readme": "#MsgPackStream\n\nStreams of framed [msgpack](http://msgpack.org) messages.\n\n[![testling badge](https://ci.testling.com/dominictarr/msgpack-stream.png)](https://ci.testling.com/dominictarr/msgpack-stream)\n\n## WARNING\n\nthis module is *not recommended* parsing `msgpack` in js is much slower\nthan spliting json into lines and parsing with `JSON.parse`, which is heavily\noptimised in all good js implementations.\n\ninstead use: [es.parse](https://github.com/dominictarr/event-stream#parse) and [es.stringify](https://github.com/dominictarr/event-stream#stringify)\n\nIf you really want to use `msgpack` you should fix this issue: [pgreiss/node-msgpack#16](https://github.com/pgriess/node-msgpack/issues/16)\n\n## usage\n\n``` js\n\nvar mps = require('msgpack-stream')\n\nvar encode = mps.createEncodeStream()\nvar decode = mps.createDecodeStream()\n\nencode.pipe(decode)\n\ndecode.on('data', console.log)\n\nencode.write('HELLO')\nencode.write({object: true})\nencode.write(true)\nencode.write(AnyValidJsObject) //!\n```\n\n## remarks\n\nthis is mostly pulled out of [smith](https://github.com/c9/smith) and slightly refactored to fit a stream.\n\n## lies\n\nActually, msgpack does not support much loved js objects such as `Infinity`, or `Nan`. \n\nOn the other hand, `msgpack-stream` uses [creationix/msgpack-js](https://github.com/creationix/msgpack-js) which implements a slightly extended protocol, so you can pack `Buffer` and `undefined`\n",
  "readmeFilename": "readme.markdown",
  "repository": {
    "type": "git",
    "url": "git://github.com/dominictarr/msgpack-stream.git"
  },
  "scripts": {
    "test": "node test.js"
  },
  "testling": {
    "browsers": [
      "android-browser/4.2..latest",
      "chrome/22..latest",
      "chrome/canary",
      "firefox/17..latest",
      "firefox/nightly",
      "ie/8..latest",
      "ipad/6.0..latest",
      "iphone/6.0..latest",
      "opera/12..latest",
      "opera/next",
      "safari/5.1..latest"
    ],
    "files": "test.js"
  },
  "version": "0.0.12"
}
