{"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"keywords":["http","stream","streaming","xhr","http-browserify"],"dist-tags":{"latest":"3.2.0"},"author":{"name":"John Hiesey"},"description":"Streaming http in the browser","readme":"# stream-http [![Build Status](https://travis-ci.org/jhiesey/stream-http.svg?branch=master)](https://travis-ci.org/jhiesey/stream-http)\n\n[![Sauce Test Status](https://app.saucelabs.com/browser-matrix/stream-http.svg)](https://app.saucelabs.com/u/stream-http)\n\nThis module is an implementation of Node's native `http` module for the browser.\nIt tries to match Node's API and behavior as closely as possible, but some features\naren't available, since browsers don't give nearly as much control over requests.\n\nThis is heavily inspired by, and intended to replace, [http-browserify](https://github.com/substack/http-browserify).\n\n## What does it do?\n\nIn accordance with its name, `stream-http` tries to provide data to its caller before\nthe request has completed whenever possible.\n\nBackpressure, allowing the browser to only pull data from the server as fast as it is\nconsumed, is supported in:\n* Chrome >= 58 (using `fetch` and `WritableStream`)\n\nThe following browsers support true streaming, where only a small amount of the request\nhas to be held in memory at once:\n* Chrome >= 43 (using the `fetch` API)\n* Firefox >= 9 (using `moz-chunked-arraybuffer` responseType with xhr)\n\nAll other supported browsers support pseudo-streaming, where the data is available before\nthe request finishes, but the entire response must be held in memory. This works for both\ntext and binary data.\n\n### IE note:\nAs of version 3.0.0, IE10 and below are no longer supported. IE11 support will remain for\nnow.\n\n## How do you use it?\n\nThe intent is to have the same API as the client part of the\n[Node HTTP module](https://nodejs.org/api/http.html). The interfaces are the same wherever\npractical, although limitations in browsers make an exact clone of the Node API impossible.\n\nThis module implements `http.request`, `http.get`, and most of `http.ClientRequest`\nand `http.IncomingMessage` in addition to `http.METHODS` and `http.STATUS_CODES`. See the\nNode docs for how these work.\n\n### Extra features compared to Node\n\n* The `message.url` property provides access to the final URL after all redirects. This\nis useful since the browser follows all redirects silently, unlike Node. It is available\nin Chrome 37 and newer, Firefox 32 and newer, and Safari 9 and newer.\n\n* The `options.withCredentials` boolean flag, used to indicate if the browser should send\ncookies or authentication information with a CORS request. Default false.\n\nThis module has to make some tradeoffs to support binary data and/or streaming. Generally,\nthe module can make a fairly good decision about which underlying browser features to use,\nbut sometimes it helps to get a little input from the developer.\n\n* The `options.mode` field passed into `http.request` or `http.get` can take on one of the\nfollowing values:\n  * 'default' (or any falsy value, including `undefined`): Try to provide partial data before\nthe request completes, but not at the cost of correctness for binary data or correctness of\nthe 'content-type' response header. This mode will also avoid slower code paths whenever\npossible, which is particularly useful when making large requests in a browser like Safari\nthat has a weaker JavaScript engine.\n  * 'allow-wrong-content-type': Provides partial data in more cases than 'default', but\nat the expense of causing the 'content-type' response header to be incorrectly reported\n(as 'text/plain; charset=x-user-defined') in some browsers, notably Safari and Chrome 42\nand older. Preserves binary data whenever possible. In some cases the implementation may\nalso be a bit slow. This was the default in versions of this module before 1.5.\n  * 'prefer-streaming': Provide data before the request completes even if binary data (anything\nthat isn't a single-byte ASCII or UTF8 character) will be corrupted. Of course, this option\nis only safe for text data. May also cause the 'content-type' response header to be\nincorrectly reported (as 'text/plain; charset=x-user-defined').\n  * 'disable-fetch': Force the use of plain XHR regardless of the browser declaring a fetch\ncapability. Preserves the correctness of binary data and the 'content-type' response header.\n  * 'prefer-fast': Deprecated; now a synonym for 'default', which has the same performance\ncharacteristics as this mode did in versions before 1.5.\n\n* `options.requestTimeout` allows setting a timeout in millisecionds for XHR and fetch (if\nsupported by the browser). This is a limit on how long the entire process takes from\nbeginning to end. Note that this is not the same as the node `setTimeout` functions,\nwhich apply to pauses in data transfer over the underlying socket, or the node `timeout`\noption, which applies to opening the connection.\n\n### Features missing compared to Node\n\n* `http.Agent` is only a stub\n* The 'socket', 'connect', 'upgrade', and 'continue' events on `http.ClientRequest`.\n* Any operations, other than `request.setTimeout`, that operate directly on the underlying\nsocket.\n* Any options that are disallowed for security reasons. This includes setting or getting\ncertain headers.\n* `message.httpVersion`\n* `message.rawHeaders` is modified by the browser, and may not quite match what is sent by\nthe server.\n* `message.trailers` and `message.rawTrailers` will remain empty.\n* Redirects are followed silently by the browser, so it isn't possible to access the 301/302\nredirect pages.\n\n## Example\n\n``` js\nhttp.get('/bundle.js', function (res) {\n\tvar div = document.getElementById('result');\n\tdiv.innerHTML += 'GET /beep<br>';\n\n\tres.on('data', function (buf) {\n\t\tdiv.innerHTML += buf;\n\t});\n\n\tres.on('end', function () {\n\t\tdiv.innerHTML += '<br>__END__';\n\t});\n})\n```\n\n## Running tests\n\nThere are two sets of tests: the tests that run in Node (found in `test/node`) and the tests\nthat run in the browser (found in `test/browser`). Normally the browser tests run on\n[Sauce Labs](http://saucelabs.com/).\n\nRunning `npm test` will run both sets of tests, but in order for the Sauce Labs tests to run\nyou will need to sign up for an account (free for open source projects) and put the\ncredentials in a [`.airtaprc` file](https://github.com/airtap/airtap/blob/master/doc/airtaprc.md).\nYou will also need to run a [Sauce Connect Proxy](https://wiki.saucelabs.com/display/DOCS/Sauce+Connect+Proxy)\nwith the same credentials.\n\nTo run just the Node tests, run `npm run test-node`.\n\nTo run the browser tests locally, run `npm run test-browser-local` and point your browser to\nthe link shown in your terminal.\n\n## License\n\nMIT. Copyright (C) John Hiesey and other contributors.\n","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"users":{"arulkumar":true,"wenbing":true,"yatsu":true,"filipve":true},"bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"license":"MIT","versions":{"1.0.0":{"name":"stream-http","version":"1.0.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"ab5e2afce81949115c0a151d30fbaf03cf540d7f","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.0.0","_shasum":"a6464f871bc9478d631e71f4b42795719f1a8473","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"a6464f871bc9478d631e71f4b42795719f1a8473","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.0.0.tgz","integrity":"sha512-O5GZNAAhd8bhKD7/9RRoQdtGgIKzbAfiK23f12q/oNMotPHfFF6JaLrcF2pz+ZKGUGw4kl7a5Z/uHaUqwZWR2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZQF9qTiETvagwZStXEUHU2u61becI95l/u5z3Xz6rLgIhAOcs/XeYQzJHDzlrtcs3MvyJWJnyk6RmWgtuygUkkjf7"}]},"directories":{}},"1.0.1":{"name":"stream-http","version":"1.0.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"4a383c74d204f58129f29535638df0208bf99fc2","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.0.1","_shasum":"c75770f4ba95672bcd9ed5d17ca98360e2241840","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"c75770f4ba95672bcd9ed5d17ca98360e2241840","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.0.1.tgz","integrity":"sha512-rkvVvboPdX23HcKtdD3zTSyFHZ3vGnl3LyZ/QKyRo5ApXxFxmS5zKaNrzcG+bc4Q0AyoQLAxpTLpSzZgAQNe0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBfQqjUj5ygSekdqyVcu0GukrPm2+LU986BOtz+vxsEuAiEA1Wo7uEFWcEmT4HRPlqubPQflf1noN7AZiRhRoAMkfm4="}]},"directories":{}},"1.0.2":{"name":"stream-http","version":"1.0.2","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"7cb4e22c9fadcfebb08b0d3d8d2ec1e3c681e03b","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.0.2","_shasum":"536a142743699a84ed06e8ee5efe1767e3397d1f","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"536a142743699a84ed06e8ee5efe1767e3397d1f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.0.2.tgz","integrity":"sha512-6gBYSSLl2J65m+kUh4b9tgUNolPM1Nj237+ddGpwA9gwCRIcbIuZlb2ZwJn6nJrz5SS9H6+cMt5DB5LmjcE+Ww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCIBo8705bzaf+96U6FcBTo50w898fglbzIuGtGA+acPwIgFcQ67Cmtj/1cl7ZCjwkPKDMWgNsD6S0HGzOnwIfsECY="}]},"directories":{}},"1.1.1":{"name":"stream-http","version":"1.1.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"15181f558696d8f3e016d0fcebc09a7bf85af3c0","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.1.1","_shasum":"ed1fe3464b4ed81186af5c0c8062835d3c79ca38","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"ed1fe3464b4ed81186af5c0c8062835d3c79ca38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.1.1.tgz","integrity":"sha512-qpakL46WVqJ7dPi9j465PIbiB4OnwnNK5CuWIP08+Md4gfo0vhV7hxKIQIo6LqlyKCj4HmwnnSbe2tGNKTYHzw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHPNZOOXU8ykMwzvAKFuVXdPkJdecR9rpjxH4jxFVlmFAiEA47CdOD8M6Y0kJ7X4UsK6kjvu3l3jp0WaqjdOuae3AWI="}]},"directories":{}},"1.2.0":{"name":"stream-http","version":"1.2.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"cc74bc83c8c3ee65425ddeecf394ed99738b2931","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.2.0","_shasum":"ed26a476b26dc277552e87b60dd52c219d7ca643","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"ed26a476b26dc277552e87b60dd52c219d7ca643","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.2.0.tgz","integrity":"sha512-8kytSvSfttPVc4bFRaqa65FduXbh5QpT3DDmtM91HNO9BolMQ5+qX0RGvUw0+xYwuGDCl800BJ9S/j9A9mpmkw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBOV0LURx4s6VESE63NjKLqV7Icn+eM5lTPfucbWX8YkAiBUhD2ZEaDrkv1xo0HkMHRITRD9Y6dezoMUay2GHhKfSg=="}]},"directories":{}},"1.2.1":{"name":"stream-http","version":"1.2.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"22b3cc7acbdd44002a795f971255b4288654777c","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.2.1","_shasum":"57cf86692bd97a9bf1f323a04dcc3a4de65cce62","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.12.5","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"57cf86692bd97a9bf1f323a04dcc3a4de65cce62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.2.1.tgz","integrity":"sha512-bHuA9echsIuXq6ZpWFcbIv2lqlnWt25E4tIYrCXTcg+WlBbTJg60aGWddM+ik96wl82HoKVrODC6w7XqcsxzQQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCn3MkHwWLpCQZL6kxdjUo3OO+wQNvVxmbhEp63HDNfGAIhAJObfXYF5ULyXK+fEdNvsVIsS0nbWZ7RU+Z+aydYT/So"}]},"directories":{}},"1.3.0":{"name":"stream-http","version":"1.3.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"c8c0966c639368e4173d0c47bff9564f8d65bb02","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.3.0","_shasum":"945c98298afafff5eb7c14e66224ac23136e9ed5","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"945c98298afafff5eb7c14e66224ac23136e9ed5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.3.0.tgz","integrity":"sha512-ePj7AFd3TMQc9vhP1GwMpULURVa7wS/71ZmQUM1miksJMLXcEoxdYzfSSFzkdAHNdNs5U6PCxPudFzMs728yzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBJcVvSU4AnHSix1QUABESciCx0VhFQsiAit50TUQUlCAiAdJB9S6DJHlw4sDwb8TmlWpOPrhWpuNudLeUe7jyLRnA=="}]},"directories":{}},"1.4.0":{"name":"stream-http","version":"1.4.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"f70ac39bf4de9c1dd16f33ee31c07e555076102d","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.4.0","_shasum":"eb83899e45af41e5843d76f6730c72ec8e75684b","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"eb83899e45af41e5843d76f6730c72ec8e75684b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.4.0.tgz","integrity":"sha512-Wg3qNurZfotKvvfbMA7lEUbBbRsdD43RhUCgLAG2FGpfxDew21lyBDCkb1cBXsFf4BO/w90wYEUOJkzaefFpJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBMElLKKkiBcmTlhfQS7fLcU9xBzYzqzJ+RPGlLkewMeAiBAZ4QAZT7tr1sMT63gMcNudcKEc/bqt0Q3Wx3l90DlsA=="}]},"directories":{}},"1.4.1":{"name":"stream-http","version":"1.4.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"6d17b406a90a7973a3e2756f5c20470d2dfec2b2","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.4.1","_shasum":"3854d0fc2df61c191c89e98b8c62b93de9c13f8b","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"3854d0fc2df61c191c89e98b8c62b93de9c13f8b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.4.1.tgz","integrity":"sha512-bQd3Vu/KdfsDnDQPSuBXa+V5wf5PJZLXVVFj+PxHKaAPNsLMODAzQuu7xUxC0h6gAdWLH34m7zowKSRWkWDwTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAqLn0eOu6nmzhO9rln+AA4wj3qRBrOXJ8vI3xZp0TzwAiBiqmdPSve0XcG8vzp53JtjCdymnqjkeUQhaNoZZTWfaw=="}]},"directories":{}},"1.5.0":{"name":"stream-http","version":"1.5.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"~1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"168dbac90c4bf9ea1d6ea240ffd2e4fbc6dabf91","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.5.0","_shasum":"bf94d2c6738c2f4c574e757df9719b09614c6a9e","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"bf94d2c6738c2f4c574e757df9719b09614c6a9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.5.0.tgz","integrity":"sha512-uAOnt//NkJ6jAx6SkATR6rdhZ4Bv+B5jf1LtaAFvX92/qV+/+b0l4AEqcfZchld4Phcy5CrZQb1KYzxD1Bg+SA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGHAUFoTIKlSeEmRro8Foct48KZf7lmKFs1QtxDLkyjVAiEAu5XXQkT2A73JKHse192IiP+cSRYxpyplr7f9YNhEErg="}]},"directories":{}},"1.7.0":{"name":"stream-http","version":"1.7.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"^1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"43d1322dd619c20d249862f99cf73420c3cdd7ed","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.7.0","_shasum":"d482c32866e8e6772dd5b48770436d76410d3593","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"d482c32866e8e6772dd5b48770436d76410d3593","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.7.0.tgz","integrity":"sha512-EGF7mahOzW9nUJHbpGR56KC1Omds4W9YaJg6HN8H9575FFU+UGk0pdxd7L6G18ltW/no8Ea1dVffMO9u7lTY8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICwUtfhg8tZgcSP7H2Dlr7N1W7bqGP2yFu3LNrr43oF9AiEAncBD+bwYRVPxdwD/k149uSODqPHNojJLYHZEporGfkM="}]},"directories":{}},"1.6.0":{"name":"stream-http","version":"1.6.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"^1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","zuul":"^3.1.0"},"gitHead":"166795fc0528fe1d8637e1c4a98cb5f8c53548d5","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.6.0","_shasum":"b67b889b2c1b5ff4493d318ace9f6c298e953ccc","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"b67b889b2c1b5ff4493d318ace9f6c298e953ccc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.6.0.tgz","integrity":"sha512-7Ui0NwwZ42eSdlh+vXGG0cz7fN0gxRJUXRVfdzs6b4E03IYty0hA0psF4K0aV+6TlByw/tz4cpBZ5mdyKirhfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDPYqe2ngzFIelQckGgjho+DTOKT1M7GnZ9TrU3hkefcAiAC3vcz7b/xDKvmoNavbJjTODqhWEtyY1iy8HCTNqPIzg=="}]},"directories":{}},"1.7.1":{"name":"stream-http","version":"1.7.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","foreach":"^2.0.5","indexof":"0.0.1","inherits":"^2.0.1","object-keys":"^1.0.4","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"a169930a20c1f504b46aec93842a40b52be50b30","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@1.7.1","_shasum":"d3d2a6e14c36a38b9dafb199aee7bbc570519978","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"d3d2a6e14c36a38b9dafb199aee7bbc570519978","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-1.7.1.tgz","integrity":"sha512-czX2gV5sIF88QrGaQgFZUyLaioSZwT6oQnZgg6dtSSbyQTFbwEzUJdXwdwdrXW9rYiruKZ57Ui/Kb0SfJK5BSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCZQpCEkGuMJiaoXovqk3PVnTytGs9pgRkryq3MTRSCJwIhAKPSDFY490o7L+Fi2Qbk2eZsJW1gWsn5jFsShWccFsoV"}]},"directories":{}},"2.0.0":{"name":"stream-http","version":"2.0.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","inherits":"^2.0.1","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"dc421eb355c0e6607e3e4ef136e1a59e7d62a7cf","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@2.0.0","_shasum":"c39a77eece75ee7fcc9385d212c96ea528581fa5","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"c39a77eece75ee7fcc9385d212c96ea528581fa5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.0.0.tgz","integrity":"sha512-HghV/UcpoNZm+AQu0G8k89zKSZWhhIPR6bVvQGOZwc08iMkdl1JoDm9lBA/PLMLPF1vVcLCQ4bCMLCvghXRrBg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDJvOGZsXMng1Ufikd47yildk31cnqjaTBAClKpfuvcswIhAOjUaygyvq5BoiL7PN31aoZwIMUGhdHa3HiQLImqOisc"}]},"directories":{}},"2.0.1":{"name":"stream-http","version":"2.0.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","inherits":"^2.0.1","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"016f4be96f82c59b906e744cd18e7013f21ec750","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@2.0.1","_shasum":"c2d02702317f5e4b9664805952b1fd62138d82a0","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"c2d02702317f5e4b9664805952b1fd62138d82a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.0.1.tgz","integrity":"sha512-NBzR9Ajr4dN3MEC5OvYUSpZDEXIsjptLwe3BxOe4+Jo3XqK3LImeM0UpnF+NOS8Jy5Sm2SQUovHajZ7lYe2hEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE04EmQLICm1CiZihmpZTp7+3D/PeAqetAOyOYmCkkNBAiEA8qqxL7naks56cskxX4j5b1hqoVuo8giRjzFCEpp8UNI="}]},"directories":{}},"2.0.2":{"name":"stream-http","version":"2.0.2","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","inherits":"^2.0.1","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"85381f0e3db76bbad28dd26334e08e802a07325f","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@2.0.2","_shasum":"5acdcd05c6fe78dfeace92a81a73ebf3e8f82913","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"dist":{"shasum":"5acdcd05c6fe78dfeace92a81a73ebf3e8f82913","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.0.2.tgz","integrity":"sha512-fZHyA6AFnJHzxnbHIoBsdbLZIxuvJSV7deJ2RerZHzrGTnSArUGKtMLNOHaB0fL/gffMIAVUBvhl7UjaVPSp8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDeweuZJOjsfguzdgl7MvR3tvyCt78VuQo0Nlg06wxR5AiEA20DsrMUVqzLdM0hPuXu3xz9aWTfi/y1Pub4U50g4KnI="}]},"directories":{}},"2.0.3":{"name":"stream-http","version":"2.0.3","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && npm run test-browser","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","inherits":"^2.0.1","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"ae48c2c71c833d39e0e327e5ace45f3e8efe2c6c","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@2.0.3","_shasum":"f70e7ff5c7269fefe1c63112e918b8bb24407a9a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"f70e7ff5c7269fefe1c63112e918b8bb24407a9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.0.3.tgz","integrity":"sha512-Zwg+9l+rwpMm0SQoR+K763H3+LyNq5IBg7GBxPtAQfJw1V8fXYknIC9gkZWTIJ/SXDFIkhzhd5o5w0fAvcznOA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHFeDt+2ybOt8Nk43jdhMi/pDhp3LlppEpBT0fgjZpacAiBZ8PtM49AixClrFj6h6ettNzZhQXUovGtJLtw3/Wy7dw=="}]},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"directories":{}},"2.0.4":{"name":"stream-http","version":"2.0.4","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","inherits":"^2.0.1","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"cbc0bd803ce42ec5f3f10c6d887496fac79990cb","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@2.0.4","_shasum":"5a4c0bc3313272b26acfb68fd4059df642c48b8b","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"5a4c0bc3313272b26acfb68fd4059df642c48b8b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.0.4.tgz","integrity":"sha512-QHFJW1+y6WtHZsGM3OUU2fQfJWubjBOOLAKsGuTXPvtl78yXgwVPIb5zEuK55kMi9lGm5pH1cWpHk/nLp//x4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGm1wOQXYlNBArl0+ktWVdYoQUVTWZCmXoh4vv9TZ9HDAiEAjaSF/eP4DUG09cVk+o9AQwnWielf2DoeNLRH1EoVbs8="}]},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"directories":{}},"2.0.5":{"name":"stream-http","version":"2.0.5","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","inherits":"^2.0.1","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"3c8b44379c230e4b3f2f9be4d8ffe6ed3b2ccf94","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","_id":"stream-http@2.0.5","_shasum":"080d22687ed4f237a584848ab3d6fbd8729d8f8d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"080d22687ed4f237a584848ab3d6fbd8729d8f8d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.0.5.tgz","integrity":"sha512-uGiDNtLcAA2b3nUXcOeF0W+Drd+EAYO4/KFNpl8kYFame1Ccrpq5t8RCcRPXgX9ueWitzjNG2eQJNquN8XuBLA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH6C4E2V+FeusVV+6g2fquUIJ+Z2Qq9Qd2rRrht/bGSpAiBM8xHG5hAml9BtxBLa8xYD/OTUSZJx1Gq46cxVwr2AXg=="}]},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"directories":{}},"2.1.0":{"name":"stream-http","version":"2.1.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^1.0.0","inherits":"^2.0.1","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"9d24d5510ab8bd70d56d08ee13835e738d28fd94","_id":"stream-http@2.1.0","_shasum":"2eff54aaeb0cfa99e69eed0f250bad6a75a88cab","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"2eff54aaeb0cfa99e69eed0f250bad6a75a88cab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.1.0.tgz","integrity":"sha512-hYrnsPK/DNNcF1D+TvYJwD5tal4mPI4ULttnKrqh2G4X9PRXUnBZRqRkfMZofW4dIfCpDC/c3EDjCmoO/CaWJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDR9OllpR+C42K3DPVkJcFsbFCMhsrEWbt1UzVj5eMv3QIgWvyVKICnZzkKi7XR6x8HCeCwE/Q3GaW9s04A/HsEM+w="}]},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"directories":{}},"2.1.1":{"name":"stream-http","version":"2.1.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"945083bd1df2a2dbf9c9d648d00c15201002d6be","_id":"stream-http@2.1.1","_shasum":"3b880303babe036d6f6b43127d4dcd6f8893e1db","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"3b880303babe036d6f6b43127d4dcd6f8893e1db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.1.1.tgz","integrity":"sha512-g0R1senNa0i8Qb85njs1hjIXFoSL+IusVxmtglgn+JC0LXspCIUtRDD3nirHxoMamzGsU5gEkZKHTvk7lbuyfA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7ZEJeCTMYb5MLkXoS8yJBZviKL5eS2HEp85Up3RXPvQIhANG85mP1ZbrwcVIW9QWI8YvhrFedypeg9wBUtslyYSaZ"}]},"maintainers":[{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/stream-http-2.1.1.tgz_1455601262267_0.5608040874358267"},"directories":{}},"2.2.0":{"name":"stream-http","version":"2.2.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"4b1419cff75d4ce2ab17f57a5b3d0f5caa90459e","_id":"stream-http@2.2.0","_shasum":"0dd210200b68a22fbc991105181156b230076c3c","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"0dd210200b68a22fbc991105181156b230076c3c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.2.0.tgz","integrity":"sha512-DJl2GleVaNmtcLxtrtleAhJl2bifRG0lsedS0DZmMhL0R8QCJrPNzWnj1H1c8WGbF9yLbRh2Wxw/GAgUb2HOUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEtzk2V6IyF47iPsjwn2p8iWQyGWLQbwIrSM2WBSotvmAiA+TDWAoku0J9YrIMhr7w9HodcKHxT5cmaRGXjZkzePUQ=="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-11-east.internal.npmjs.com","tmp":"tmp/stream-http-2.2.0.tgz_1456881311859_0.8881466328166425"},"directories":{}},"2.2.1":{"name":"stream-http","version":"2.2.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"5e25ed2f65abd9065dbb140deabce5a13b8668dd","_id":"stream-http@2.2.1","_shasum":"c0d29dd8546341c66a4880a78272cd4661a956a6","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"c0d29dd8546341c66a4880a78272cd4661a956a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.2.1.tgz","integrity":"sha512-ZvCAYZn0BsyA/GvIGkXpLg+yPswbgqkEtVRl49Toz285BaSXa2oatp7RwnE4D+THRqHXyF0uCtCxzjU6oUBHdw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICWh/x5JfZxK309+zFifeeW1xoeaZ+s0SN+z1lUL2TuEAiEAoGSUQLgR85uNhjXXgj9ZOItMRdzHP3efpQ4YoNmWNZI="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stream-http-2.2.1.tgz_1458969127191_0.3222543275915086"},"directories":{}},"2.3.0":{"name":"stream-http","version":"2.3.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.1.0"},"gitHead":"ff601a9eff4182d3ecd0593cad6effbb3035963b","_id":"stream-http@2.3.0","_shasum":"d77de76f6211072119f8d2a49a118717b8feeaa3","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"d77de76f6211072119f8d2a49a118717b8feeaa3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.3.0.tgz","integrity":"sha512-do5IqIdnI5Y+7f2buFYbSyahpm82tDlCEpVlUtHGzVOB1VNsHPjryx0zoYTMLQwVqrdRT3NIhBcbEFCCEcPV2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICpVs+1M1QO3J6bWDLk0iqYxPbk5fBTM3MSWd5FjtminAiEA4WvNVvZlXtAKflSCJKjxC4PQm6CGY/I20BNDmbK7RgA="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stream-http-2.3.0.tgz_1461832335352_0.8560710966121405"},"directories":{}},"2.3.1":{"name":"stream-http","version":"2.3.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"ac250a9b04689f616ce09b93c29804cb5e63c200","_id":"stream-http@2.3.1","_shasum":"7e1dc87102c3e31b32e660f04ca31f23ddbd1d52","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"7e1dc87102c3e31b32e660f04ca31f23ddbd1d52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.3.1.tgz","integrity":"sha512-kNRcV9jya8KWBrdWOO9pwq6hpZHFur57pfivfpXsNKZPHMdhRVp80S4rvD5OVm6I8cHC+SE7Wx7/Db4KXGkzdw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAnAOOZDvVZv4FzGaS12o8xBLPDnTAbofe1uwsBNMbrIAiEA6O22P/Guq0ktalCeUiXwLjzATrm8oeCCyhfT7AciJis="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stream-http-2.3.1.tgz_1469687955984_0.9986460644286126"},"directories":{}},"2.4.0":{"name":"stream-http","version":"2.4.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"92500c71be74bc1c4c2d27dabfc9ed2a1d3bb252","_id":"stream-http@2.4.0","_shasum":"9599aa8e263667ce4190e0dc04a1d065d3595a7e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"9599aa8e263667ce4190e0dc04a1d065d3595a7e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.4.0.tgz","integrity":"sha512-W+HxMdxUvvJVzlqe4sa2bwymVmsYyCcF95pms8ilZXDjXvt8rEadIgMFdjvIgdkWqxmcqAKlv1Wyf6bxHj4jPQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAQV7YG5tmPbuiTkxZU/1ZDGO1v82pD0zieT+GO3/HdyAiBEeiMPjm6HeEFF8uUNnJwhqrYHmd5MLtZeMcMvxwv+GA=="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stream-http-2.4.0.tgz_1473377936887_0.6653944130521268"},"directories":{}},"2.4.1":{"name":"stream-http","version":"2.4.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"525957277adb1b05bb7e27ff4b5438ca7a9f8ac0","_id":"stream-http@2.4.1","_shasum":"8ee5689ae69169e8eb8edd6aeb2ca08ab47e8f59","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"8ee5689ae69169e8eb8edd6aeb2ca08ab47e8f59","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.4.1.tgz","integrity":"sha512-TVO0ukIx44mGoIFYBnl124r7g0pB5dHT0E85JSV5FyMshCgIAmZawQdjt88TSGeZG/hnth0vi/KPeVlL9TYOBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID9VFSWBScqWQ5fFTdE4+3hE9ih0EjMj/2OvmNMLQ4mLAiAZEkq+3ZkGx4Rhb/7c6UmpDSsQu6ntQemaZMNSXXnFxQ=="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stream-http-2.4.1.tgz_1477642944716_0.22453267988748848"},"directories":{}},"2.5.0":{"name":"stream-http","version":"2.5.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^2.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"8c07b21b8258e651b6859444f5ad77b4a37d2616","_id":"stream-http@2.5.0","_shasum":"585eee513217ed98fe199817e7313b6f772a6802","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"585eee513217ed98fe199817e7313b6f772a6802","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.5.0.tgz","integrity":"sha512-1NeqyFmz6UdO6jm5AzKNsaEOZFoSTwINNmQ/E0Ur6DdCDrBtLs3TQxZUq7Wv9uXr8JDFMziUbZ5apcb+INGn2g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCRhlLvCSDegeKmW+f1k5//lWRP61CTAiFGvylcLEbtWwIgNiNGbFFAliv7RHgOghIfd4FzngnzXEpkpN7iIyLJqJ0="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stream-http-2.5.0.tgz_1478239364925_0.0796565196942538"},"directories":{}},"2.6.0":{"name":"stream-http","version":"2.6.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"70f8c7d0b7f9b9bc5b6998ad60c9dab503f9983f","_id":"stream-http@2.6.0","_shasum":"adf3309ced17624ebfb7ef13e6ac4cfe405a8b12","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"adf3309ced17624ebfb7ef13e6ac4cfe405a8b12","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.6.0.tgz","integrity":"sha512-qzy7j3hHrfSEGVrc6hkYla//6PpeSg8dT20KtgP4H/jFWU3Jb0aXH0P8OIs/7vbonDPE9yxM+68PkMjCcEFJfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1tJ9Ot/hOozPgkhGcehW01SLNuURzpE+FJeRbdx5nsgIhAJnsuf5aU1o+4Cc2Ts+XyYEdzR7EjWouW0JGanibmeGh"}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stream-http-2.6.0.tgz_1483703989207_0.5768014823552221"},"directories":{}},"2.6.1":{"name":"stream-http","version":"2.6.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"9321e56abd34615f799e18f11ae330749bfcd88c","_id":"stream-http@2.6.1","_shasum":"7d20fcdfebc16b16e4174e31dd94cd9c70f10e89","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"7d20fcdfebc16b16e4174e31dd94cd9c70f10e89","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.6.1.tgz","integrity":"sha512-0tkX8upnYvvIzPL6V6X7zdCmwhuhYLUtjikXmm/0I67fG4zZ87ArQCDkB7LQU4RH0T9nGcL5W56JmhqFDC0TZw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGFwTljpeFdAxWpOF90kMO16ZgCkF6oLRelK0mwbB3RhAiBzzl+JyhWQ7fwIPaDFYZSxv2C9livykw1YURPXiagPvQ=="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stream-http-2.6.1.tgz_1484207093219_0.7791753446217626"},"directories":{}},"2.6.2":{"name":"stream-http","version":"2.6.2","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"c1417c5dfad2e21b7c0cab28b184bff0292d9d3f","_id":"stream-http@2.6.2","_shasum":"bdfe40d2ee9262eb6bf2255bb3ad0ec0cdd6526d","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"bdfe40d2ee9262eb6bf2255bb3ad0ec0cdd6526d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.6.2.tgz","integrity":"sha512-9GWKMvsgLcx/u4OyVoucAabhd6Yuo41YjcJZBd180q8M1Ft/NN5GkAj4fLaMFQ6fPzNSxV2YVlBlFZAco+NLew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDU+QmXj4sr+KnEXUHBsbaVGk2GfEMt3+jmA6LWsMSE5gIhAO2qckAbA3GKAwmuLHbsdYS+AGUtcV9dZIBVsqfjh66J"}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stream-http-2.6.2.tgz_1484560814312_0.4340973813086748"},"directories":{}},"2.6.3":{"name":"stream-http","version":"2.6.3","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.1.0","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.13.0","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"b63537f11de8b49676536a7ceff3eeaad01fd327","_id":"stream-http@2.6.3","_shasum":"4c3ddbf9635968ea2cfd4e48d43de5def2625ac3","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"4c3ddbf9635968ea2cfd4e48d43de5def2625ac3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.6.3.tgz","integrity":"sha512-BggnYsrqrIitDJDix8eBT1lyT7GVHsxJ8MQ6y58fGe76p3TpSJcJIzcuo7jkb6kDCVJecTvHOfgO1I8rgPqomg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMrsgFzfSyy/2kouWWiV3ZXMKEA6JZBT9rIr0wJ8MKyAIgRR+SDc9KHqTm+SV69BqZfNcsZUJtWKsLFLsSNhTc8TI="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stream-http-2.6.3.tgz_1484825188032_0.5002113955561072"},"directories":{}},"2.7.0":{"name":"stream-http","version":"2.7.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.2.6","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.15.2","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"1dc9ea32f593bec599ed4aa1456ad450a70f6ba2","_id":"stream-http@2.7.0","_shasum":"cec1f4e3b494bc4a81b451808970f8b20b4ed5f6","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"cec1f4e3b494bc4a81b451808970f8b20b4ed5f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.7.0.tgz","integrity":"sha512-K70bK+Lh6O/55D2uksVmu2CWHYCiLq9ruuGr8ogIQsI9FeulRzkIzOskCsIp/XTnFrq2GZSVr1yHxhWlnss0Bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUQI4x1UiHF6BmpPdILpvGjcC7lAImrNmPBmcPaqqrnwIgPrDfckn37AzSTzdclKt6MOO+GeZXruOZd1vp3qVn94s="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stream-http-2.7.0.tgz_1491288399049_0.7861161674372852"},"directories":{}},"2.7.1":{"name":"stream-http","version":"2.7.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.2.6","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.3.5","express":"^4.15.2","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"8eab4b3e5f0502ec6a2d7babc60b7b2ae8ebb17a","_id":"stream-http@2.7.1","_shasum":"546a51741ad5a6b07e9e31b0b10441a917df528a","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"shasum":"546a51741ad5a6b07e9e31b0b10441a917df528a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.7.1.tgz","integrity":"sha512-Z5PjA3rw4i18LeKkLN4wXFglOLHcuV1aoO0Q1mrlTwRhhgaVl+qdV8ExV3eid8B+E7QtLqzEI6Z22Y5JNwHqNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTH0gnZujxLt2uL1y+NjnhwRbPmQvWJvoL5WhtfM/4HgIhANkNX2jIUT37XDO+rKpWfri5O+GILLw+IqE1d/orQPuU"}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stream-http-2.7.1.tgz_1494290695377_0.7630164551082999"},"directories":{}},"2.7.2":{"name":"stream-http","version":"2.7.2","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.2.6","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^1.0.3","brfs":"^1.4.0","cookie-parser":"^1.4.3","express":"^4.15.2","tape":"^4.0.0","ua-parser-js":"^0.7.7","webworkify":"^1.0.2","zuul":"^3.10.3"},"gitHead":"c09a87154359d8f25b81a9083ba654bc6fe1f4de","_id":"stream-http@2.7.2","_npmVersion":"5.0.3","_nodeVersion":"8.0.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"integrity":"sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw==","shasum":"40a050ec8dc3b53b33d9909415c02c0bf1abfbad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.7.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEBLLddmunwIopSxLYNV8zzHg4/ZECKtgq2vxw4c8BVdAiEA+yMXHq49sATAOGL4yAMdn22jZa2uolyEo1eUPTNxZi8="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http-2.7.2.tgz_1497298914196_0.3043717509135604"},"directories":{}},"2.8.0":{"name":"stream-http","version":"2.8.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"zuul --no-coverage -- test/browser/*.js","test-browser-local":"zuul --local 8080 --no-coverage -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.3.3","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"basic-auth":"^2.0.0","brfs":"^1.4.0","cookie-parser":"^1.4.3","express":"^4.16.2","tape":"^4.8.0","ua-parser-js":"^0.7.17","webworkify":"^1.5.0","zuul":"^3.10.3"},"gitHead":"38ffb3866008da8fa7cb7651a902123b86c1a27a","_id":"stream-http@2.8.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"integrity":"sha512-sZOFxI/5xw058XIRHl4dU3dZ+TTOIGJR78Dvo0oEAejIt4ou27k+3ne1zYmCV+v7UucbxIFQuOgnkTVHh8YPnw==","shasum":"fd86546dac9b1c91aff8fc5d287b98fafb41bc10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.8.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuDHvJplZqnkW9cf/L9+h8tL+zIOiYVOlTGxlw2VFjXwIgAuH/YBuVGvOHQBUiwLriTTSsD27bbbmgYnztBuOGQgk="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http-2.8.0.tgz_1516013425528_0.8700386332347989"},"directories":{}},"2.8.1":{"name":"stream-http","version":"2.8.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"airtap --loopback airtap.local -- test/browser/*.js","test-browser-local":"airtap --no-instrument --local 8080 -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.3.3","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"airtap":"^0.0.3","basic-auth":"^2.0.0","brfs":"^1.4.0","cookie-parser":"^1.4.3","express":"^4.16.2","tape":"^4.8.0","ua-parser-js":"^0.7.17","webworkify":"^1.5.0"},"gitHead":"8cf284cd4bbd51330ed9abcf545bb99ffbcaa036","_id":"stream-http@2.8.1","_npmVersion":"5.6.0","_nodeVersion":"9.8.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"integrity":"sha512-cQ0jo17BLca2r0GfRdZKYAGLU6JRoIWxqSOakUMuKOT6MOK7AAlE856L33QuDmAy/eeOrhLee3dZKX0Uadu93A==","shasum":"d0441be1a457a73a733a8a7b53570bebd9ef66a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.8.1.tgz","fileCount":32,"unpackedSize":90383,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHO43fwpYjYH7EwJrLvB5h3jOzp0aD316NzI6wJwdu9XAiAZ1ZxpcJ6+tJT+0YZDIoowmLVfMxrTFoMPc9gGDxz3SQ=="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http_2.8.1_1521059318676_0.711878010816418"},"_hasShrinkwrap":false},"2.8.2":{"name":"stream-http","version":"2.8.2","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"airtap --loopback airtap.local -- test/browser/*.js","test-browser-local":"airtap --no-instrument --local 8080 -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.3.6","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"airtap":"^0.0.5","basic-auth":"^2.0.0","brfs":"^1.6.1","cookie-parser":"^1.4.3","express":"^4.16.3","tape":"^4.9.0","ua-parser-js":"^0.7.18","webworkify":"^1.5.0"},"gitHead":"663f88323cafd81bb06a82d595bae65d9a7ba523","_id":"stream-http@2.8.2","_npmVersion":"6.0.0","_nodeVersion":"10.1.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"integrity":"sha512-QllfrBhqF1DPcz46WxKTs6Mz1Bpc+8Qm6vbqOpVav5odAXwbyzwnEczoWqtxrsmlO+cJqtPrp/8gWKWjaKLLlA==","shasum":"4126e8c6b107004465918aa2fc35549e77402c87","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.8.2.tgz","fileCount":32,"unpackedSize":91297,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa87RcCRA9TVsSAnZWagAAQSsQAJvqBfREk9yfV6w5tKGP\nI8uyzNlFeVj8/qJ3CwNcwC12JAybpdKULYBT4GoNWZmnnQ6b8YyRODsVovBr\nmKd6oDhj+Ifm2QdKYZ/iLJCUHM/gaHjvq21Zh7rgmJ2ka5Nqy2/K3pWSU25d\nEEZXqB/fRBackiXjToldBzs1MY/Iq3lHZnsUuDTPoV8LmedODuR7hxJRu7EO\nMBjXSy4fMy6/ag72+JjzSK9lkOiIeNG22FkEXBqBIl3oo4ccovTPm7W3lPi3\ngbdngHBqIGqriSR4UyxZ8DqODylD6QlVH0T2/FQcuvQ8uvsb85TzE39tP/SU\n8fo2YjoeDYpGHzXiSpu/ccnHR9/HlDBTj1HOTQ3NEjfYBf9Pnvb64zj2B3wy\n2CwF5YwaQjIQCLG++qJ6PpTCRM6fdg4KGUVsgPJ4rF92C8w3Y54tcxj8taeQ\nPCbndeWzirhOOmdZ8AmB5O/O4lq4b/KORBI7DOWtoq1GLN4xhYhhwqyUJX0I\n9mAEb35IOy50laOFt3/vgFRi9GX11ANdgGA5A+CihJexTndAc0F5NhRAG+CZ\nRF+bDlhTnrGai1aXN5aPLksO/vQCwgIQrdQ1f9Pp/DBT05pVyzSlBf1I2qM6\naMf3Cj6oBPUYEZXrZC0+4JD5u8fKp1mKgReYfHmtvhs1hRwT4GEHKIpt/OL1\n6LuN\r\n=UnNh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXYXFz55b4xwDnwjDC99KOGXZvh+93zUn2Pu1A02BPtQIhAP+JTBWSdPwTPf75B/vU71g7cDB1o4cO8DJWtY7QxNrG"}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http_2.8.2_1525920859334_0.9968750489638951"},"_hasShrinkwrap":false},"2.8.3":{"name":"stream-http","version":"2.8.3","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"airtap --loopback airtap.local -- test/browser/*.js","test-browser-local":"airtap --no-instrument --local 8080 -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^2.3.6","to-arraybuffer":"^1.0.0","xtend":"^4.0.0"},"devDependencies":{"airtap":"^0.0.5","basic-auth":"^2.0.0","brfs":"^1.6.1","cookie-parser":"^1.4.3","express":"^4.16.3","tape":"^4.9.0","ua-parser-js":"^0.7.18","webworkify":"^1.5.0"},"gitHead":"65aed45b2d4b56de0c84f918bfa3a0e7c07504b1","_id":"stream-http@2.8.3","_npmVersion":"6.1.0","_nodeVersion":"10.3.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"integrity":"sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==","shasum":"b2d242469288a5a27ec4fe8933acf623de6514fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-2.8.3.tgz","fileCount":32,"unpackedSize":91282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEfBFCRA9TVsSAnZWagAAeQQP/i3lQHavJDzBNP091CX+\nVdZJGyVOno0lpfxZ44FkC6a+r81xgy3+vT1lDB1kTzYyg+6Gb3IP423ChYqg\nE5WU0y+ITs01WPOfkfTenasVIDvGvNbvPwc0zEIRQkiRGVmZNL8ZC/d7Te8f\np32M6hCYsIX73QbIEA1ZuFhor6fKLtBczVhk3iI5oUmd8AgGpn0CtuemG8be\nswZfsgJksp11hq6KcPtXwqTfZcO9pkfnKRHIfZ+8R+QVID6r2+vNSXGYrn9a\nXINYWc5dtI81K+OTWg6V8JbYwS5vnGwKxkQ977GNgDZ1bwYTQZqm7vXBi98i\nc+ttGu04X7dLxc2cp4SNQ9KdipD3uRCONXfh0X34h3Ua8gKn8+e+vpDdnM21\nEt7Fy3ClQLTfo15hQa0xjWlZ4uTCIT/6E3gG4046L4I8/75ShPp6IjEhaiWf\nOTz0zsk9Q9gocIXfNRNyTTgMBKYQ6jOCX2sypKFK34bKOP4IYxpwmsadpk7W\nwsnmKhuwJU7j88RzQs41VUmB4YnxW8qEENRU7Z0HI7o8Jg1bZurFlS9vf2HY\ngonB5/wBdXGZv2ib9+tpvVEyiuMPFQPwgan2//b2idcaTR3qBZn008n1muAI\nlYkuRbbJ6wYLV3PnunAqEGO6gWNILSDixE7zf90fQrVoSuhhiQmsdV2djxWq\nYRbo\r\n=8Knn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCAuZvXKpfhw01spCbr9dBl+o6+bpHu9x/pbnK+K9Kg3QIhAJCg+u0Mu+2o8xaalXPNL725RaXAe5r0A1v5tVauESZX"}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http_2.8.3_1527902276026_0.009094757000913667"},"_hasShrinkwrap":false},"3.0.0":{"name":"stream-http","version":"3.0.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"airtap --loopback airtap.local -- test/browser/*.js","test-browser-local":"airtap --no-instrument --local 8080 -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^3.0.6","xtend":"^4.0.0"},"devDependencies":{"airtap":"^0.1.0","basic-auth":"^2.0.1","brfs":"^2.0.1","cookie-parser":"^1.4.3","express":"^4.16.3","tape":"^4.9.0","ua-parser-js":"^0.7.18","webworkify":"^1.5.0"},"gitHead":"e60ce5fb99d1c74e96120aa1086197c43fc100a8","_id":"stream-http@3.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"dist":{"integrity":"sha512-JELJfd+btL9GHtxU3+XXhg9NLYrKFnhybfvRuDghtyVkOFydz3PKNT1df07AMr88qW03WHF+FSV0PySpXignCA==","shasum":"bd6d3c52610098699e25eb2dfcd188e30e0d12e4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-3.0.0.tgz","fileCount":31,"unpackedSize":82284,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtGVnCRA9TVsSAnZWagAArpsP/3s7KzRWNuYXjrdu7c1b\nYzsh5++siHMK+R97JPNnh6EhE/sGOvr+lekslEjYL2P/XY+gVjloRH5vNrXE\nDh8fYC7Fgcbnb6KBK30hUqYn5s3icyLX2DuI1xjd8qjlqWPMQNLJxasV/VcR\neNmnXSuRrM7FWhpYfZXqsK760v3fM6DtYYLkx8nIPNggp8HJeP7mMrgXg5BB\n8S63WQQoG3fqgiXmmIdQGqR1/efPJyCF++hvI+RB92DiB9pCDXMhyT37/6w9\nvnohhE7x+ibtsuhj92X26TzdBveOvP5oIQe1LL+5VH0f3rptKwYXpHal+RJn\ngGdTnRR6yDKcBf8doAdKNLZCCXbW/7LkinsPnzPArlWG0kbOOABAFFj7jJ+r\nhU81VmEFZapX/yrrwJLQesFSwQ+BjO/KV4B+/UkaeAMcyLFyALUW2BI2z/cE\nChWAsgNy5IHM1hZSU3vDG+xe8THAjMqCTnFAS3g7oHRmI50Cs57aYcadndMy\nYQoIZf7US7DeXKjYqVYn7krPQNdikqQgnMKPMDUg2UgKeN6LRCPO12KqdeBa\nkgNVRgl7TwoIj89KI4zi1QNQwsvWIk/L943WqITOXF99CcNOo4owWUHDwmFQ\nNmq01JpY+LmESEiAuWhdAe50Wsf8Veuw2N0xZv0NVxtpAJnrJBtFnzzaHFJe\ns6RC\r\n=fGwA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAM5DEmLzsp3D4csX+bKKPPxliHbOPSfCYABZwSqxJk1AiEA8UNSuhGos0G9hNSoCzTsSlgrZklGKeEk5+iz4sfkYE0="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http_3.0.0_1538549094595_0.13804367842771348"},"_hasShrinkwrap":false},"3.1.0":{"name":"stream-http","version":"3.1.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"airtap --loopback airtap.local -- test/browser/*.js","test-browser-local":"airtap --no-instrument --local 8080 -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.1","readable-stream":"^3.0.6","xtend":"^4.0.0"},"devDependencies":{"airtap":"^2.0.3","basic-auth":"^2.0.1","brfs":"^2.0.1","cookie-parser":"^1.4.3","express":"^4.16.3","tape":"^4.9.0","ua-parser-js":"^0.7.18","webworkify":"^1.5.0"},"gitHead":"a38d9ab491a78ac2fd4907a864613c934e388b08","_id":"stream-http@3.1.0","_nodeVersion":"10.16.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-cuB6RgO7BqC4FBYzmnvhob5Do3wIdIsXAgGycHJnW+981gHqoYcYz9lqjJrk8WXRddbwPuqPYRl+bag6mYv4lw==","shasum":"22fb33fe9b4056b4eccf58bd8f400c4b993ffe57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-3.1.0.tgz","fileCount":7,"unpackedSize":26073,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSjUTCRA9TVsSAnZWagAAZdQP/1HrhCcsYwMYB7rTOZPF\ncDs4LLG17YaVGvfnU0meN65nKPi5pUAfpcsuGo30n5iv3XF+T9DxCh7olDfD\neC/9ZWWhty0+r+Q0l/PrxcFD4dX1Puw5R6O23LaSQ7QoLxroi50XI111gCxp\nEqTX8QKwOkIJZ6HJYysaLFYDakkUA1XF5mbQe6qQ9KPcaG83+0xMO6wgIZhM\nBUM09wlfekORdZMKVzAFXquvP5rwozk7TXFJ5GCfYTotnUKbvxmPdZ5qtFq1\nEYQC6OJ7ZwPUtujxbPRurrqmDHDHYS2+fJPXeG2t/kh4+jyS7DUsKEat4Vqw\nv2fgDwjYsfDVXrZqukTbz30iCYIGq7+qxAT8YLjkBypx0zdMebtSI3YgICet\nVKgYyJv7wtqEXcPE2JqXs2XWw/Yfr2r7rC/BFPomhe/kXpmiVvEijkY7oSHv\n6ij4udvZWsP9OJZtRd7mX7wt6DzH9ePmx+/wESnn48LmrOjRgJCMF03pBG8M\nAmAJ8wWr4p0a5qpcP0IQLBye0eY/s301WRjGg3hcHZdJYUaM2nvUwjkjkq+h\nqE4pyTKNABjTiEpfYo7EVJQCJiu5e2G971LjoYUdt6Wevkzdq3ohbenf6rLu\nmYkFCZZGuck/7oxlQphtU40Q/x28GUJ5EO6gAIfQtOpmP32qyiD1PfQaeGLo\nYgve\r\n=bD+g\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA2thViuwh7zk/xQ1mvzAJ5ObZ81WiOwPaigW5L0zeuNAiEAvVwweeBBgKThePi28VEnFD0JzfTtgr8WV1xeb4EeQeM="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmUser":{"name":"anonymous","email":"feross@feross.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http_3.1.0_1565144339086_0.8410578903356953"},"_hasShrinkwrap":false},"3.1.1":{"name":"stream-http","version":"3.1.1","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"airtap --loopback airtap.local -- test/browser/*.js","test-browser-local":"airtap --no-instrument --local 8080 -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.4","readable-stream":"^3.6.0","xtend":"^4.0.2"},"devDependencies":{"airtap":"^3.0.0","basic-auth":"^2.0.1","brfs":"^2.0.2","cookie-parser":"^1.4.5","express":"^4.17.1","tape":"^5.0.0","ua-parser-js":"^0.7.21","webworkify":"^1.5.0"},"gitHead":"e84db22d084903bb937763f3118ea0341f872361","_id":"stream-http@3.1.1","_nodeVersion":"12.16.2","_npmVersion":"6.14.4","dist":{"integrity":"sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==","shasum":"0370a8017cf8d050b9a8554afe608f043eaff564","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-3.1.1.tgz","fileCount":7,"unpackedSize":26052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesadYCRA9TVsSAnZWagAAtq0P/3qvEO6itmL1l/bgULbn\np4tLL7uYq4meEjBmgFDQG/a2+FEoqStqAjds+sz/6hV/JbFYr4xIAOyWCLno\nA65jlYix/Pne/o0sYaQucCkiN9cDhPpfS0I8SSJr6OFkNDz/ps/0QVTYB0B0\nAZ6Sjk12cbF+D71xxFkZUb2lcP4Uevf9H4qMegTpHyRAvhQkHJvIfG4TvLAH\nAcvryE1RtLfUacKA8mswGg8chHDV0pUDfrJv3nispczEhEe60F35Bbet7miy\ngdZAvqQeTVGgx2/s1aTQWY4ZqrBpM7ewK41ckrB8I3jBQlLjU2IfzKPSZUU3\nQribY1KevLIW55amtNWX1KYvOAE77VGSf7YfZE0cRxK8u1/X21y61rqTBmkg\n4kSgSJ2JkBwIc49Iv9t0TZdmirS1me2iAQMtE10fEG75LJ8SbTzflqXH6VbY\nlh4R/6M/pG5S6c3tKCJCKZYJrGa/eWHbqHYHT/TClKsH62glCkMlOxrQjKeR\n9M0YQzQ6yGH6F/GWENibxmrUG5HL6dM/d5Rj/bRR8Swp/N4ohfNUw+aknReJ\nb+GCY3Ekr8b8PUfdApdaEVlVgTMjAsXHG+tNW+z1E0Q48npOgfu/3nuZf2rw\ngnvtrK900ePO0yJZrw7j/jBCQA7tsGjhf2FsbF7fqWoda/9mfLBdFBOiwORQ\nzyA9\r\n=Pxzb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEqAmqlm7nig0sp6g6g5uH7Q+V/6ZvfYjUIF16XEYnf+AiEAwZvbkBuVZPdknMdZ6Wm3je9N0NcAtFaqJvGxG5vVUzw="}]},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmUser":{"name":"anonymous","email":"feross@feross.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http_3.1.1_1588701016395_0.9821888715971026"},"_hasShrinkwrap":false},"3.2.0":{"name":"stream-http","version":"3.2.0","description":"Streaming http in the browser","main":"index.js","repository":{"type":"git","url":"git://github.com/jhiesey/stream-http.git"},"scripts":{"test":"npm run test-node && ([ -n \"${TRAVIS_PULL_REQUEST}\" -a \"${TRAVIS_PULL_REQUEST}\" != 'false' ] || npm run test-browser)","test-node":"tape test/node/*.js","test-browser":"airtap --concurrency 1 -- test/browser/*.js","test-browser-local":"airtap --preset local -- test/browser/*.js"},"author":{"name":"John Hiesey"},"license":"MIT","bugs":{"url":"https://github.com/jhiesey/stream-http/issues"},"homepage":"https://github.com/jhiesey/stream-http#readme","keywords":["http","stream","streaming","xhr","http-browserify"],"dependencies":{"builtin-status-codes":"^3.0.0","inherits":"^2.0.4","readable-stream":"^3.6.0","xtend":"^4.0.2"},"devDependencies":{"airtap":"^4.0.3","airtap-manual":"^1.0.0","airtap-sauce":"^1.1.0","basic-auth":"^2.0.1","brfs":"^2.0.2","cookie-parser":"^1.4.5","express":"^4.17.1","tape":"^5.2.2","ua-parser-js":"^0.7.28","webworkify":"^1.5.0"},"gitHead":"cd697901d132cc20ea698079ac400b7cc11a7999","_id":"stream-http@3.2.0","_nodeVersion":"15.14.0","_npmVersion":"7.7.6","dist":{"integrity":"sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==","shasum":"1872dfcf24cb15752677e40e5c3f9cc1926028b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/stream-http/-/stream-http-3.2.0.tgz","fileCount":7,"unpackedSize":26753,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgd0shCRA9TVsSAnZWagAAU00P/3qHDcpuhyK5FJV+sBte\nG9sgTaiJHvLlrfGWmhkHyVH/vnnDKaO6f8n6fCBH0Z+Dv83iy5Ama/SPW1t4\nPulLyz7t3myn07N7fPcvJ0j7wwEKdgaU0xd8TCeOh++IEixLbDKp39dO8wBI\n/DP+mEOqpZhD5OscoJsVWovS2OBH73rtCd6BHdKhtQdyAu8/0bQXdwpxAQxt\no3s0hU9dN8uJeFyMBVF9c42XI2/+1l8gyFJyYo0/8UojE+JIIohqXQY+RDdO\n3HokE06BXdqPH1E/Hz8CXZmLxQdu2BXuynz0VgwQeZCsEzb3Ei/Qn8cRAf3N\n1ztE9alzPrIPjWohA4JukIN8jHN89gkXr5aYEB/4sH5z70g9/JySsKa9pQBD\nBDxuskqj3cHlpE6xEMbYgyZf+zTTSxLwKCZFvLyqP+dEXmJZLEhWxHA+9pAM\nZdUErQ2jGcRNSev72MNwwL3YK9ZdZVyx5IuzjXnLulCrcxE9MRQPWs9eLbhm\nDv+czQYGIEWeUOLsgkPnKP7I418HsTHF/O3aLpMf+mJjLLt3Nad+qUH3g7ym\nQX+DL0C9B9HHq8b81ECw3HsUdh3CehxTgxme+DC+tDSahICnu4Jw6InlFNag\nq7KT+a8PxlDjs2BwOPnh+hAV8jj+ocey4H736FyK6uZKR4wk4Jfmyf6+7b0y\nTJqA\r\n=/7xz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCbM+sLHhAdhWMqT55ZQ6UJpaIsCg8I5DLro2mJ5z05gQIgAYBLrI15rxpMvDs99O6nrlErL7MLhfII3X8BTC+G6n0="}]},"_npmUser":{"name":"anonymous","email":"john@hiesey.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"feross@feross.org"},{"name":"anonymous","email":"john@hiesey.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/stream-http_3.2.0_1618430752548_0.11018720623967604"},"_hasShrinkwrap":false}},"name":"stream-http","time":{"modified":"2022-06-27T00:47:27.015Z","created":"2015-07-12T22:32:06.069Z","1.0.0":"2015-07-12T22:32:06.069Z","1.0.1":"2015-07-13T01:43:57.627Z","1.0.2":"2015-07-13T01:47:34.388Z","1.1.1":"2015-07-13T04:32:10.882Z","1.2.0":"2015-07-14T02:13:14.221Z","1.2.1":"2015-07-17T07:51:22.481Z","1.3.0":"2015-07-20T23:27:17.676Z","1.4.0":"2015-08-07T06:23:39.145Z","1.4.1":"2015-08-08T01:26:27.198Z","1.5.0":"2015-08-20T08:50:12.730Z","1.7.0":"2015-09-15T21:35:05.706Z","1.6.0":"2015-09-15T21:36:26.741Z","1.7.1":"2015-09-15T21:48:29.548Z","2.0.0":"2015-09-16T00:26:01.429Z","2.0.1":"2015-09-30T20:23:35.202Z","2.0.2":"2015-10-02T06:09:45.890Z","2.0.3":"2016-01-08T22:08:27.822Z","2.0.4":"2016-01-08T23:47:21.175Z","2.0.5":"2016-01-09T11:32:23.826Z","2.1.0":"2016-01-13T04:46:30.453Z","2.1.1":"2016-02-16T05:41:04.175Z","2.2.0":"2016-03-02T01:15:14.222Z","2.2.1":"2016-03-26T05:12:07.609Z","2.3.0":"2016-04-28T08:32:15.764Z","2.3.1":"2016-07-28T06:39:16.236Z","2.4.0":"2016-09-08T23:38:57.127Z","2.4.1":"2016-10-28T08:22:28.773Z","2.5.0":"2016-11-04T06:02:47.115Z","2.6.0":"2017-01-06T11:59:49.456Z","2.6.1":"2017-01-12T07:44:55.289Z","2.6.2":"2017-01-16T10:00:16.115Z","2.6.3":"2017-01-19T11:26:30.176Z","2.7.0":"2017-04-04T06:46:39.792Z","2.7.1":"2017-05-09T00:44:58.350Z","2.7.2":"2017-06-12T20:21:54.314Z","2.8.0":"2018-01-15T10:50:25.609Z","2.8.1":"2018-03-14T20:28:38.770Z","2.8.2":"2018-05-10T02:54:19.419Z","2.8.3":"2018-06-02T01:17:56.106Z","3.0.0":"2018-10-03T06:44:54.757Z","3.1.0":"2019-08-07T02:18:59.210Z","3.1.1":"2020-05-05T17:50:16.507Z","3.2.0":"2021-04-14T20:05:52.715Z"},"readmeFilename":"README.md","homepage":"https://github.com/jhiesey/stream-http#readme"}