{
  "_args": [
    [
      "node-libs-browser@https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.5.3.tgz",
      "/Users/nw/flint/packages/flint"
    ]
  ],
  "_from": "node-libs-browser@>=0.4.0 <=0.6.0",
  "_id": "node-libs-browser@0.5.3",
  "_inCache": true,
  "_location": "/node-libs-browser",
  "_phantomChildren": {
    "core-util-is": "1.0.2",
    "inherits": "2.0.1",
    "isarray": "0.0.1",
    "string_decoder": "0.10.31"
  },
  "_requested": {
    "name": "node-libs-browser",
    "raw": "node-libs-browser@https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.5.3.tgz",
    "rawSpec": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.5.3.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.5.3.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/webpack"
  ],
  "_resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.5.3.tgz",
  "_shasum": "55efa888ec907acdb8cffc4e7a51712780e13b6a",
  "_shrinkwrap": null,
  "_spec": "node-libs-browser@https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.5.3.tgz",
  "_where": "/Users/nw/flint/packages/flint",
  "author": {
    "name": "Tobias Koppers @sokra"
  },
  "bugs": {
    "url": "https://github.com/webpack/node-libs-browser/issues"
  },
  "dependencies": {
    "assert": "^1.1.1",
    "browserify-zlib": "~0.1.4",
    "buffer": "^3.0.3",
    "console-browserify": "^1.1.0",
    "constants-browserify": "0.0.1",
    "crypto-browserify": "~3.2.6",
    "domain-browser": "^1.1.1",
    "events": "^1.0.0",
    "http-browserify": "^1.3.2",
    "https-browserify": "0.0.0",
    "os-browserify": "~0.1.2",
    "path-browserify": "0.0.0",
    "process": "^0.11.0",
    "punycode": "^1.2.4",
    "querystring-es3": "~0.2.0",
    "readable-stream": "^1.1.13",
    "stream-browserify": "^1.0.0",
    "string_decoder": "~0.10.25",
    "timers-browserify": "^1.0.1",
    "tty-browserify": "0.0.0",
    "url": "~0.10.1",
    "util": "~0.10.3",
    "vm-browserify": "0.0.4"
  },
  "description": "The node core libs for in browser usage.",
  "devDependencies": {},
  "files": [
    "index.js",
    "mock/"
  ],
  "homepage": "http://github.com/webpack/node-libs-browser",
  "license": "MIT",
  "main": "index.js",
  "name": "node-libs-browser",
  "optionalDependencies": {},
  "readme": "# node-libs-browser\r\n\r\nThe node core libs for in-browser usage.\r\n\r\n[![dependencies status](http://david-dm.org/webpack/node-libs-browser.png)](http://david-dm.org/webpack/node-libs-browser)\r\n\r\nExports a hash [object] of absolute paths to each lib, keyed by lib names. Modules without browser replacements are `null`.\r\n\r\nSome modules have mocks in the `mock` directory. These are replacements with minimal functionality.\r\n\r\n| lib name | browser implementation | mock implementation |\r\n|:--------:|:----------------------:|:-------------------:|\r\n| assert | [defunctzombie/commonjs-assert](https://github.com/defunctzombie/commonjs-assert) | --- |\r\n| buffer | [feross/buffer](https://github.com/feross/buffer) | [buffer.js](https://github.com/webpack/node-libs-browser/blob/master/mock/buffer.js) |\r\n| child_process | --- | --- |\r\n| cluster | --- | --- |\r\n| console | [Raynos/console-browserify](https://github.com/Raynos/console-browserify) | [console.js](https://github.com/webpack/node-libs-browser/blob/master/mock/console.js) |\r\n| constants | [juliangruber/constants-browserify](https://github.com/juliangruber/constants-browserify) | --- |\r\n| crypto | [crypto-browserify/crypto-browserify](https://github.com/crypto-browserify/crypto-browserify) | --- |\r\n| dgram | --- | --- |\r\n| dns | --- | [dns.js](https://github.com/webpack/node-libs-browser/blob/master/mock/dns.js) |\r\n| domain | [bevry/domain-browser](https://github.com/bevry/domain-browser) | --- |\r\n| events | [Gozala/events](https://github.com/Gozala/events) | --- |\r\n| fs | --- | --- |\r\n| http | [substack/http-browserify](https://github.com/substack/http-browserify) | --- |\r\n| https | [substack/https-browserify](https://github.com/substack/https-browserify) | --- |\r\n| module | --- | --- |\r\n| net | --- | [net.js](https://github.com/webpack/node-libs-browser/blob/master/mock/net.js) |\r\n| os | [CoderPuppy/os-browserify](https://github.com/CoderPuppy/os-browserify) | --- |\r\n| path | [substack/path-browserify](https://github.com/substack/path-browserify) | --- |\r\n| process | [shtylman/node-process](https://github.com/shtylman/node-process) | [process.js](https://github.com/webpack/node-libs-browser/blob/master/mock/process.js) |\r\n| punycode | [bestiejs/punycode.js](https://github.com/bestiejs/punycode.js) | --- |\r\n| querystring | [mike-spainhower/querystring](https://github.com/mike-spainhower/querystring) | --- |\r\n| readline | --- | --- |\r\n| repl | --- | --- |\r\n| stream | [substack/stream-browserify](https://github.com/substack/stream-browserify) | --- |\r\n| string_decoder | [rvagg/string_decoder](https://github.com/rvagg/string_decoder) | --- |\r\n| sys | [defunctzombie/node-util](https://github.com/defunctzombie/node-util) | --- |\r\n| timers | [jryans/timers-browserify](https://github.com/jryans/timers-browserify) | --- | \r\n| tls | --- | [tls.js](https://github.com/webpack/node-libs-browser/blob/master/mock/tls.js) |\r\n| tty | [substack/tty-browserify](https://github.com/substack/tty-browserify) | [tty.js](https://github.com/webpack/node-libs-browser/blob/master/mock/tty.js) |\r\n| url | [defunctzombie/node-url](https://github.com/defunctzombie/node-url) | --- |\r\n| util | [defunctzombie/node-util](https://github.com/defunctzombie/node-util) | --- |\r\n| vm | [substack/vm-browserify](https://github.com/substack/vm-browserify) | --- |\r\n| zlib | [devongovett/browserify-zlib](https://github.com/devongovett/browserify-zlib) | --- |",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/webpack/node-libs-browser.git"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "version": "0.5.3"
}
