{
  "_args": [
    [
      {
        "raw": "http-parser-js@>=0.4.0",
        "scope": null,
        "escapedName": "http-parser-js",
        "name": "http-parser-js",
        "rawSpec": ">=0.4.0",
        "spec": ">=0.4.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/websocket-driver"
    ]
  ],
  "_from": "http-parser-js@>=0.4.0",
  "_id": "http-parser-js@0.4.9",
  "_inCache": true,
  "_location": "/http-parser-js",
  "_nodeVersion": "6.9.1",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/http-parser-js-0.4.9.tgz_1507127716935_0.974934829166159"
  },
  "_npmUser": {
    "name": "jimbly",
    "email": "wasteland@gmail.com"
  },
  "_npmVersion": "3.10.8",
  "_phantomChildren": {},
  "_requested": {
    "raw": "http-parser-js@>=0.4.0",
    "scope": null,
    "escapedName": "http-parser-js",
    "name": "http-parser-js",
    "rawSpec": ">=0.4.0",
    "spec": ">=0.4.0",
    "type": "range"
  },
  "_requiredBy": [
    "/websocket-driver"
  ],
  "_resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.9.tgz",
  "_shasum": "ea1a04fb64adff0242e9974f297dd4c3cad271e1",
  "_shrinkwrap": null,
  "_spec": "http-parser-js@>=0.4.0",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/websocket-driver",
  "author": {
    "name": "Tim Caswell",
    "url": "https://github.com/creationix"
  },
  "bugs": {
    "url": "https://github.com/creationix/http-parser-js/issues"
  },
  "contributors": [
    {
      "name": "Jimb Esser",
      "url": "https://github.com/Jimbly"
    },
    {
      "name": "Lawrence Rowe",
      "url": "https://github.com/lrowe"
    },
    {
      "name": "Jan Schär",
      "url": "https://github.com/jscissr"
    },
    {
      "name": "Paul Rütter",
      "url": "https://github.com/paulrutter"
    }
  ],
  "dependencies": {},
  "description": "A pure JS HTTP parser for node.",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "shasum": "ea1a04fb64adff0242e9974f297dd4c3cad271e1",
    "tarball": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.9.tgz"
  },
  "files": [
    "http-parser.js"
  ],
  "gitHead": "287dd0cd76a512d67d52e19e8b0fa4d40e07fa19",
  "homepage": "https://github.com/creationix/http-parser-js#readme",
  "keywords": [
    "http"
  ],
  "license": "MIT",
  "main": "http-parser.js",
  "maintainers": [
    {
      "name": "creationix",
      "email": "tim@creationix.com"
    },
    {
      "name": "jimbly",
      "email": "wasteland@gmail.com"
    }
  ],
  "name": "http-parser-js",
  "optionalDependencies": {},
  "readme": "# HTTP Parser\n\nThis library parses HTTP protocol for requests and responses.  It was created to replace `http_parser.c` since calling C++ function from JS is really slow in V8.\n\nThis was further modified by Jimbly to be useable in parsing responses, specifically tested with the \"request\" module, and addresses issues such as corrupt HTTP headers, which would otherwise cause Node's parser to throw a fatal error (HPE_INVALID_HEADER_TOKEN).\n\nJan Schär (jscissr) made some bigger changes and added tests. This fixed some bugs and added many missing features.\n\nThis is packaged as a standalone npm module.  To use in node, monkeypatch HTTPParser.\n\n```js\n// Monkey patch before you require http for the first time.\nprocess.binding('http_parser').HTTPParser = require('http-parser-js').HTTPParser;\n\nvar http = require('http');\n// ...\n```\n\n## Testing\n\nSimply do `npm test`. The tests are copied from node and mscedex/io.js, with some modifcations.\n\n## Status\n\nThis should now be usable in any node application, it now supports (nearly) everything `http_parser.c` does while still being tolerant with corrupted headers.\n\n## License\n\nMIT. See LICENSE.md\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/creationix/http-parser-js.git"
  },
  "scripts": {
    "test": "python tests/test.py && node tests/iojs/test-http-parser-durability.js"
  },
  "version": "0.4.9"
}
