{"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist-tags":{"latest":"1.1.1"},"author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","readme":"node-httpreq\n============\n\nnode-httpreq is a node.js library to do HTTP(S) requests the easy way\n\nDo GET, POST, PUT, PATCH, DELETE, OPTIONS, upload files, use cookies, change headers, ...\n\nThis module helps you fight [TLS fingerprinting](https://httptoolkit.com/blog/tls-fingerprinting-node-js/)! See the `shuffleCiphers` option below.\n\n## Donate\n\nIf you've benefited from this module in any way, please consider donating!\n\n[![](https://neat.be/paypal-donate-button.png)](https://www.paypal.com/donate/?hosted_button_id=2CKNJLZJBW8ZC)\n\nThank you for your support!\n\n\n## Install\n\nYou can install __httpreq__ using the Node Package Manager (npm):\n\n    npm install httpreq\n\n## Simple example\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.get('http://www.google.com', function (err, res) {\n  if (err) return console.log(err);\n\n  console.log(res.statusCode);\n  console.log(res.headers);\n  console.log(res.body);\n  console.log(res.cookies);\n});\n```\n\n__Using await/async:__\n\n```js\nvar httpreq = require('httpreq');\n\nvar res = await httpreq.get('http://www.google.com');\n\nconsole.log(res.statusCode);\nconsole.log(res.headers);\nconsole.log(res.body);\nconsole.log(res.cookies);\n```\n\n## Use with async/await\n\nThis module has been updated to support async/await.\n\nIn the following examples, simply omit the `callback` parameter and prepend it with `await`.\n\n__Example:__\n\n```js\nvar httpreq = require('httpreq');\n\nvar res = await httpreq.post('http://posttestserver.com/post.php', {\n  parameters: {\n    name: 'John',\n    lastname: 'Doe'\n  }\n});\n\nconsole.log(res.body);\n```\n\n## How to use\n\n* [httpreq.get(url, [options], callback)](#get)\n* [httpreq.post(url, [options], callback)](#post)\n* [httpreq.put(url, [options], callback)](#put)\n* [httpreq.delete(url, [options], callback)](#delete)\n* [httpreq.options(url, [options], callback)](#options)\n* [Uploading files](#upload)\n* [Downloading a binary file](#binary)\n* [Downloading a file directly to disk](#download)\n* [Sending a custom body](#custombody)\n* [Using a http(s) proxy](#proxy)\n* [httpreq.doRequest(options, callback)](#dorequest)\n\n---------------------------------------\n### httpreq.get(url, [options], callback)\n<a name=\"get\"></a>\n\n__Arguments__\n - url: The url to connect to. Can be http or https.\n - options: (all are optional) The following options can be passed:\n    - parameters: an object of query parameters\n    - headers: an object of headers\n    - cookies: an array of cookies\n    - auth: a string for basic authentication. For example `username:password`\n    - binary: true/false (default: false), if true, res.body will a buffer containing the binary data\n    - allowRedirects: (default: __true__ , only with httpreq.get() ), if true, redirects will be followed\n    - maxRedirects: (default: __10__ ). For example 1 redirect will allow for one normal request and 1 extra redirected request.\n    - timeout: (default: __none__ ). Adds a timeout to the http(s) request. Should be in milliseconds.\n    - ciphers: Change the TLS ciphers if needed.\n    - shuffleCiphers: Set to `true` if you want to shuffle the TLS ciphers to fight [TLS fingerprinting](https://httptoolkit.com/blog/tls-fingerprinting-node-js/).\n    - proxy, if you want to pass your request through a http(s) proxy server:\n        - host: eg: \"192.168.0.1\"\n        - port: eg: 8888\n        - protocol: (default: __'http'__ ) can be 'http' or 'https'\n     - rejectUnauthorized: validate certificate for request with HTTPS. [More here](http://nodejs.org/api/https.html#https_https_request_options_callback)\n - callback(err, res): A callback function which is called when the request is complete. __res__ contains the headers ( __res.headers__ ), the http status code ( __res.statusCode__ ) and the body ( __res.body__ )\n\n__Example without options__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.get('http://www.google.com', function (err, res){\n  if (err) return console.log(err);\n\n  console.log(res.statusCode);\n  console.log(res.headers);\n  console.log(res.body);\n});\n```\n\n__Example with options__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.get('http://posttestserver.com/post.php', {\n  parameters: {\n    name: 'John',\n    lastname: 'Doe'\n  },\n  headers:{\n    'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0'\n  },\n  cookies: [\n    'token=DGcGUmplWQSjfqEvmu%2BZA%2Fc',\n    'id=2'\n  ]\n}, function (err, res){\n  if (err){\n    console.log(err);\n  }else{\n    console.log(res.body);\n  }\n});\n```\n---------------------------------------\n### httpreq.post(url, [options], callback)\n<a name=\"post\"></a>\n\n__Arguments__\n - url: The url to connect to. Can be http or https.\n - options: (all are optional) The following options can be passed:\n    - parameters: an object of post parameters (content-type is set to *application/x-www-form-urlencoded; charset=UTF-8*)\n    - json: if you want to send json directly (content-type is set to *application/json*)\n    - files: an object of files to upload (content-type is set to *multipart/form-data; boundary=xxx*)\n    - body: custom body content you want to send. If used, previous options will be ignored and your custom body will be sent. (content-type will not be set)\n    - headers: an object of headers\n    - cookies: an array of cookies\n    - auth: a string for basic authentication. For example `username:password`\n    - binary: true/false (default: __false__ ), if true, res.body will be a buffer containing the binary data\n    - allowRedirects: (default: __false__ ), if true, redirects will be followed\n    - maxRedirects: (default: __10__ ). For example 1 redirect will allow for one normal request and 1 extra redirected request.\n    - encodePostParameters: (default: __true__ ), if true, POST/PUT parameters names will be URL encoded.\n    - timeout: (default: none). Adds a timeout to the http(s) request. Should be in milliseconds.\n    - proxy, if you want to pass your request through a http(s) proxy server:\n        - host: eg: \"192.168.0.1\"\n        - port: eg: 8888\n        - protocol: (default: __'http'__ ) can be 'http' or 'https'\n    - rejectUnauthorized: validate certificate for request with HTTPS. [More here](http://nodejs.org/api/https.html#https_https_request_options_callback)\n - callback(err, res): A callback function which is called when the request is complete. __res__ contains the headers ( __res.headers__ ), the http status code ( __res.statusCode__ ) and the body ( __res.body__ )\n\n__Example without extra options__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.post('http://posttestserver.com/post.php', {\n  parameters: {\n    name: 'John',\n    lastname: 'Doe'\n  }\n}, function (err, res){\n  if (err){\n    console.log(err);\n  }else{\n    console.log(res.body);\n  }\n});\n```\n\n__Example with options__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.post('http://posttestserver.com/post.php', {\n  parameters: {\n    name: 'John',\n    lastname: 'Doe'\n  },\n  headers:{\n    'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:18.0) Gecko/20100101 Firefox/18.0'\n  },\n  cookies: [\n    'token=DGcGUmplWQSjfqEvmu%2BZA%2Fc',\n    'id=2'\n  ]\n}, function (err, res){\n  if (err){\n    console.log(err);\n  }else{\n    console.log(res.body);\n  }\n});\n```\n\n---------------------------------------\n### httpreq.put(url, [options], callback)\n<a name=\"put\"></a>\n\nSame options as [httpreq.post(url, [options], callback)](#post)\n\n---------------------------------------\n<a name=\"delete\" />\n### httpreq.delete(url, [options], callback)\n\nSame options as [httpreq.post(url, [options], callback)](#post)\n\n---------------------------------------\n<a name=\"options\" />\n### httpreq.options(url, [options], callback)\n\nSame options as [httpreq.get(url, [options], callback)](#get) except for the ability to follow redirects.\n\n---------------------------------------\n<a name=\"upload\" />\n### Uploading files\n\nYou can still use ```httpreq.uploadFiles({url: 'url', files: {}}, callback)```, but it's easier to just use POST (or PUT):\n\n__Example__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.post('http://posttestserver.com/upload.php', {\n  parameters: {\n    name: 'John',\n    lastname: 'Doe'\n  },\n  files: {\n    myfile: __dirname + '/file1.jpg',\n    myotherfile: __dirname + '/file2.jpg'\n  }\n}, function (err, res){\n  if (err) throw err;\n});\n```\n\n__Example 2__\n\nIn case you want to use the same form name for multiple files:\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.post('http://posttestserver.com/upload.php', {\n  parameters: {\n    name: 'John',\n    lastname: 'Doe'\n  },\n  files: {\n    myfiles: [__dirname + '/file1.jpg', __dirname + '/file.jpg']\n  }\n}, function (err, res){\n  if (err) throw err;\n});\n```\n\n---------------------------------------\n<a name=\"binary\"></a>\n### Downloading a binary file\nTo download a binary file, just add __binary: true__ to the options when doing a get or a post.\n\n__Example__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.get('https://ssl.gstatic.com/gb/images/k1_a31af7ac.png', {binary: true}, function (err, res){\n  if (err){\n    console.log(err);\n  }else{\n    fs.writeFile(__dirname + '/test.png', res.body, function (err) {\n      if(err)\n        console.log(\"error writing file\");\n    });\n  }\n});\n```\n\n---------------------------------------\n<a name=\"download\"></a>\n### Downloading a file directly to disk\nTo download a file directly to disk, use the download method provided.\n\nDownloading is done using a stream, so the data is not stored in memory and directly saved to file.\n\n__Example__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.download(\n  'https://ssl.gstatic.com/gb/images/k1_a31af7ac.png',\n  __dirname + '/test.png'\n, function (err, progress){\n  if (err) return console.log(err);\n  console.log(progress);\n}, function (err, res){\n  if (err) return console.log(err);\n  console.log(res);\n});\n\n```\n\nWhen specifying the `progress` callback (3th parameter), you cannot use async/await.\n\n---------------------------------------\n<a name=\"custombody\"></a>\n### Sending a custom body\nUse the body option to send a custom body (eg. an xml post)\n\n__Example__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.post('http://posttestserver.com/post.php',{\n  body: '<?xml version=\"1.0\" encoding=\"UTF-8\"?>',\n  headers:{\n    'Content-Type': 'text/xml',\n  }},\n  function (err, res) {\n    if (err){\n      console.log(err);\n    }else{\n      console.log(res.body);\n    }\n  }\n);\n```\n\n---------------------------------------\n<a name=\"proxy\"></a>\n### Using a http(s) proxy\n\n__Example__\n\n```js\nvar httpreq = require('httpreq');\n\nhttpreq.post('http://posttestserver.com/post.php', {\n  proxy: {\n    host: '10.100.0.126',\n    port: 8888\n  }\n}, function (err, res){\n  if (err){\n    console.log(err);\n  }else{\n    console.log(res.body);\n  }\n});\n```\n\n---------------------------------------\n### httpreq.doRequest(options, callback)\n<a name=\"dorequest\"></a>\n\nhttpreq.doRequest is internally used by httpreq.get() and httpreq.post(). You can use this directly. Everything is stays the same as httpreq.get() or httpreq.post() except that the following options MUST be passed:\n- url: the url to post the files to\n- method: 'GET', 'POST', 'PUT' or 'DELETE'\n\n## Run tests\n\nInstall all depedencies with\n\n```bash\nnpm install\n```\n\nInstall mocha with\n\n```bash\nnpm install mocha -g\n```\n\nRun tests:\n```bash\nmocha test/tests.js\n```\n\nRun the async/await tests:\n```bash\nmocha test/tests-async.js\n```\n\n","repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"users":{"f124275809":true},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"license":"MIT","versions":{"0.1.0":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.1.0","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.1.0","dist":{"shasum":"b83e54ff60c332aa4ceb8f345decf53c464aa4a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.1.0.tgz","integrity":"sha512-kE2rc5JuUL+5MHuO6knvBIfR9dN3bYLarpOv0XdTYgpA027yNm0wFGFKYXqMImuzxW5FIbnV6CZ8/VGyjqTrUQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICGXvpntpeDYaP4B5S0hKCXC/IdEFCt25IiqVpEFS1UBAiEAnQ0YJ47AdMz+dROQ4/yiUST+70S6vfBsBoTFIvkjD34="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.1.1":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.1.1","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.1.1","dist":{"shasum":"38b8ece510873c1ad3460d2bbab4c4e469578882","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.1.1.tgz","integrity":"sha512-dhoFmzXc4HKeAaPWk+j55PWhUbQi+o/QiIi/kY971Cfyj2oxBgYvNhq6Q8xBrfDl9GFLqff0DduQYvEQdRs0FA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2LsR3WjnFEC438j8qGJatfnN7aV5WQzJL26Zhpi26SwIgZ+Wkcr+cDjSsSF8JNwKVrRt1IYErspEmTFRqItIjUNc="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.0":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.0","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.0","dist":{"shasum":"ed058e777bc18caca55ed6fcf72c9b646b34fa5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.0.tgz","integrity":"sha512-eUkIZnlVmp+Wqb5KAHLUmnTDRnUzQtWC7vl3mIAiXnGR7+FIG7UqnZwmUSvXSP71IgDHgJxZxRRhML7Q2ZinwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBhokhWqKiRd/yX77fkeWCo7+4WGGVCHPnO+WBGQAnWbAiEA6PWY66GIHlbwPvlwqsqNMIqBiQSQJR8jT3Uzjgk585Q="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.1":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.1","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.1","dist":{"shasum":"e8df13ce58b475774a8c80541d45c05547aa9d1d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.1.tgz","integrity":"sha512-shqWNoNgIu+gJcUvkGrU08Op4KcdwOG+1t8U02l5aU3mzjpG9Pz+OPj6MxfZyaau4jicsafDKaEW/dbjYmeoJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA9aGOf5oS8rpEB0Zww9gij/iWuSx75xmEkFUUcJSKMNAiEA1F8kkjb0apal9d9e8/oDGpH0jeEIsetwFX5unWlvR5o="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.2":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.2","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.2","dist":{"shasum":"c091f20d37228f970d37afdfe155eda0033e8f35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.2.tgz","integrity":"sha512-162xQEpqZHA0mJYavWXE+GmyUfBeS57EjIM1Zb8wYSLOMeKD6ya1Av8sjWoi5It9+zpC7hTFW2LI38H1eyJgqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDx9uCF/BQ76Jco1NI04cBkfMYgVwR5Sv/wBIuE+4S7WQIhAO/lpFkf6QarHDY1cgYjbDBPhNI496riuB7hTr9k77tA"}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.3":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.3","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.3","dist":{"shasum":"42e72aa93af4dc3bbd75c1900bc9f70f26867f13","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.3.tgz","integrity":"sha512-Gr5uAllwfDi+MtreNk+YmnHdBdnqRl6Au0cgCuvHGz5wTC9wx5XxJNhiGwpYIwX3TWntXQY8qBVmxZMgH8xPbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD3j94JawrToVxIeMAa4OIt/2W5SSuGQDwK0++Pb/0rqAIgA+Coe1zcGdqf90Jqtb5e8pU0bCwVfrOch9mjLOivAj0="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.4":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.4","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.4","dist":{"shasum":"ca01f4c529425a1873b9a32b830b4d2cac1b8775","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.4.tgz","integrity":"sha512-YwHZ8Ew8W6ijrpAP0ZY3Vr8YJ5Nvyqu3M8LTvKytqRJbnfAUTHXLUfd7zES8nRhSoKxU/Wb8Sk/YgxXZFQ3mdw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHD7GlF7al85v6rmps8Ye8Qzr/TkORdUYot9Hzmm4b8bAiAHrOoyP1rn+AqOpx/ESE+zm+rqwL7WBEUqmr299H4gYg=="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.5":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.5","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.5","dist":{"shasum":"bb486b854f2c842eeec3c494edec742e32f61290","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.5.tgz","integrity":"sha512-NhDOELdyXXaPg6Oy1F4rplHGzkoUAgk+dSjojDmA+YNGtaXcbiXM1PlqVEdFqMgfZbtkGatkXaE+a+9aV8kQ9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF2DLPBjQibJLDN6M01SrzGuHL94vDr5SUfEltsrHzNUAiEAoCZBihh31TSsVOuSFYjc3nS0Yy0XYfzfLzPRLYCsN28="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.6":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.6","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.6","dist":{"shasum":"d6d611502824b00bdbef4fa99f73e5bed8416add","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.6.tgz","integrity":"sha512-5aOfjg+5dcw1vSgwbVRizxzAxls4Wewvv4V45Pi1wBVCDDZ144YFryZv44M9ACmc4aDA7YhWWkSIT7v+rMos7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDm+mrE8ERGMyEehOVzfvPJyQjoDD8acn2o+2F06dhk8AiBVAdKRwigbvQN/JRoCaqeLIu5E+Ez7QSSZUDKRFYphAg=="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.7":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.7","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.7","dist":{"shasum":"2535dd85031a2ae45c1fb4cff06f87ca0e174a61","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.7.tgz","integrity":"sha512-6HOCfMswhRKLpG7qS6DKXDsLt5agKVB2uhAtT2PRXOL2hdg4vIdGG4+rC/pj7WC6SxEm8731eu3BiS/NVl0uQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBMxwHmHgx5S5dtnrtTQzFWcfxk3d+u4klLHZm+K8k9nAiAgOxgHKZ9PR8X6K8Nk35ynOBZaQGBAL4VDzlz29kmKhA=="}]},"_npmVersion":"1.1.49","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.8":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.8","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.8","dist":{"shasum":"8ad9946de903021106279682fd105c6214d20080","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.8.tgz","integrity":"sha512-AelWlc8Qyrj81WiB00iSYgocDdFMKTId/MOeRMNL36lgMllQFE6gc0AZGYOKoKVX2zvg8aBGfEL2kfsw7eQD7w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDvDIrvi3loZT9vKEhYDzP0uq1vY4DjBYAtSPXpCduRVwIgEc+T3/11kDgOUhUCM1Dnf95I3+RZVGaR4hvSe7fU/KA="}]},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.2.9":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.2.9","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.2.9","dist":{"shasum":"538ed2eed8132c917b905a319ee8a3a4b5d54348","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.2.9.tgz","integrity":"sha512-6AI0vTLfi4OmKA7cB2aSg1VVThPiizEMpb+mCiepDH3XjBOuI6kGCEY+323dwFPtjOLWYm+wXQpDD8svhQWMrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBdus8Ale5MDM4tsdVJzeTGM8takqKlg3PlQ7/0NAWMeAiBoGWsAmfVqjA8ns6DPvnhxiJOsNrFk8/oa6ovDV8zJCQ=="}]},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.0":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.0","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.0","dist":{"shasum":"178a537c8a036bc2b36e96538717e8ad11515f03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.0.tgz","integrity":"sha512-HeypDw/tV38J0/1X6xsCIKo1+NTrAeqsH4VZkfe+5IuqoFEzst5Ucj98Wmw6QK+D+2sv9NNtzum9OFDiSPYtxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDv5CQKwBfNOqLAJGF11PanQt+1OR3LAJBwrZc5Z4dgbQIhAKpc3S4hsIidptErqYtzW9k1IoZK4geA8y8BQt+fOteW"}]},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.1":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.1","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.1","dist":{"shasum":"2b325ea2bf0858dd68f8cfc5e58b5e52ba8342ca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.1.tgz","integrity":"sha512-yn7OMG4AikhEuTnbEFiZaeJ9EZ0Zg0zjwmoAyS3vvfU0aODo4JuxF5mSFPAZy0wsBFn9nS4YXD0HUQQwWJSEbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID9AGGCQftFcDT23HPmhB1De3oROLJHaCT6Bc4uIOmd0AiAMRqAz++KbzG8tZYUKtRWM7qjrDyhC9nrNyJ8/9Obdkg=="}]},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.2":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.2","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.2","dist":{"shasum":"a7b93054649ab813507b091158c001c96a0e7996","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.2.tgz","integrity":"sha512-VHttBwj6VP3GNJwe7+kxzA0BgEgSXDPJpSus2+6lPTtyPX2Ykf3UtxBcp+mJZZI6qEu0bY4ki4gmGNmOqgSPhg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDV8taVGW3Yo17Y10MHgFV+29uzVEW7/5xWQQ2VpBLndQIhALcNRIHQbCYHCIEMFnR+P6tA9P6+xY1WxglPuQnrF9zV"}]},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.3":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.3","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.3","dist":{"shasum":"5e535419cd5cf95a0cd70021325785ed29638738","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.3.tgz","integrity":"sha512-PpqRfuNe9ugKG1ZctRvzQWNhiSu5Gx0DviKzzkO8xbQ0sHQq9WhbYehkbxyqNPyGtqP3AGr9KWxdKo/r74XJoA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFixdz4SA30LeHLzkZMU80gdtKpv2mrGCU+KRjTuu2niAiBcL34KRMI8eS+Y3xvqZ6Y/YAbaBQ86T+49QLLVBAfLbw=="}]},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.4":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.4","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.4","dist":{"shasum":"d9cdc21910c2a0ffd5b2792135fe706fd9aae3f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.4.tgz","integrity":"sha512-txzoluKyoaRPxMqzyqwmrZBCYERmH7HBWRCztw0My/lLLf+8liyxdo6Ll62XVjeIIY6sEUQXxAp6tRLyk1jcZg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF8zDzxFlb94UT0Oln4lZQiMTIhbFE8lYNz95C0EX3uKAiBkx7I403RsH3MHPeYGT4RGEXxbuZZ65en8hbMN/9q0xg=="}]},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.5":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.5","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.5","dist":{"shasum":"1d88b44fee2a6cb55b7b6ddff1dba7d74170b3a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.5.tgz","integrity":"sha512-m1R6HeWvbJjpnqKBrvhq9iyvkQ/90vZ1URjDz68D3HS01Z+VZF+Qvby1nQx37QA6UgmjdmRk9ejmWchiy0dlLw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLIE5cHoGR7hznweZ2Hb1YZupJVaNzM3sUEZ8qD10V4AIhAIF5RnFY0UQbMiT3r+c6GC7mRZH441Voc7kAYblisr9R"}]},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.6":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.6","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.6","dist":{"shasum":"fd2a3d917dd100ec6e5df6a43ba9e899871c956c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.6.tgz","integrity":"sha512-J2oguv5MVqdevjXYSCRQBKXMzGyjQ9VmH8LxDRHh/ErRYE2bZfgMekZiv4jCk3ULLdjGd5eUVyWJZkyP99Sj+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC07VZNDgPAwmChvknC1oIJ2GLtcs4xnQ1tXraIdOR5fAiASwzjL/c9jCldRESORxAl0ngGidPkN8AczW4FyS5mlug=="}]},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.7":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.7","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.7","dist":{"shasum":"c406429e6e6b2fdaec747011eae9bf95d3c4ade7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.7.tgz","integrity":"sha512-Y0B8aLBgNnUWtXya3G5aYDn92uwspc4ujoTH/jVDxnIQSh0mnhpgF8rHhoEcn59z3qCDxzHvraK+kHUf2yI5bQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH+sw/1icH2veRVV3JdIhAraoF3jQzpQtGlUQxHrrqd2AiAV4MJd4g9KzV6728Y9PwqmR3EiH8m89D6ZLBQi9OFFRA=="}]},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.8":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.8","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_id":"httpreq@0.3.8","dist":{"shasum":"b165991665c6bd3c2ccf5cac329c8daee1a0f784","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.8.tgz","integrity":"sha512-7wY/zr+9KCgVVewFI59/cLe5YSi/PuRa9SQEoeOy5xn+Ff5QZJNNbJSo0lTEkX7lrWHWCoYpVOy0dX7nqMX5hA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGbqqpVBVBJVbCg0e2Kl9miBX3X8vXuJ2WEk9HwnK+k8AiEAoyQmv52j2VXZ9bmEOyJoPKg8AWKmtbvOr+jrlB3YKi0="}]},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.3.9":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.3.9","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.3.9","dist":{"shasum":"31eb9c3560b4e72a5c3b7c3f747a3c71fd3b50ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.3.9.tgz","integrity":"sha512-GpznK8vL/lUO4894g3dnS/DuXXOrRHOQ3Wt3uXozFBSXp5/t9GzcRK0EBcO70g1V1dpw71BS3yvOiyIR2P/h1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjUCvoEXcmAA789cNVgMYEk1Cnlh5QwuxtsCsJncV30wIhAKbb7W4GBlhaW4VyDeT7a5HBCnnBRW8O0ehvWoVtOZpn"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"directories":{}},"0.4.0":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.0","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"gitHead":"396ba26d34fab2c484705eddaed77a3ca036c41f","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.0","scripts":{},"_shasum":"47bd6240aad241a190b24e278c53fbbcb93efa4c","_from":".","_npmVersion":"1.4.12","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"47bd6240aad241a190b24e278c53fbbcb93efa4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.0.tgz","integrity":"sha512-8eQRDxWyTPId7E9W7VmIlM2UyPFI2VZtzFMHDxngkDnpmuF00hTSWQtMzSVa5oXase3zq29rQU/WQXOxJ+hPSg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAS8CdauaMJXa2IQs96p9GjfO7M3iODQ3Q99K7t+jsswAiAyFBlNloelC0VCEomzXCihyefFoYKnSL5izgLLXPS9PQ=="}]},"directories":{}},"0.4.2":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.2","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","contributors":[{"name":"Russell Beattie","url":"https://github.com/russellbeattie"}],"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"gitHead":"e82f61bf7f7f5054ed2f878603241042bd53b26c","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.2","scripts":{},"_shasum":"639313abc48a8f456459a8934aa7564fce78bfdc","_from":".","_npmVersion":"1.4.12","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"639313abc48a8f456459a8934aa7564fce78bfdc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.2.tgz","integrity":"sha512-blaY6e05wlFHC5+uu44DHVQC2zvuq/aF85SEgDhGBNX1pUhPTxYAtjsp1FsQc92vdqpmOajTNRxmbFV/iwdecA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbXl1jwMvgX/7072/p921nxQZZplXjDPfucc1q0Mxs6AIgcYV+stp8hLV+GlI4xrF6adnjZHJBqPwK3KUC2HxT/Dw="}]},"directories":{}},"0.4.3":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.3","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"gitHead":"af191e58939bcf7dc8fb67fe67e4b2797fe90457","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.3","scripts":{},"_shasum":"e6edd705419bc744c0c34aff209af92825cf5018","_from":".","_npmVersion":"1.4.12","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"e6edd705419bc744c0c34aff209af92825cf5018","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.3.tgz","integrity":"sha512-WNoe7xRWwD3PoAHu4CDPUPPh6VvS03FczqG38+hS76pzxAH8UTlf5hp5Vz6ktBoWJzQdLh3kAzda5pnxb/FGvQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEz7HtGJUvxdQHTBJbZdP02qH40eN+R32SU1Rg6Dx5AbAiEA7sID7u2wIzItTRbFVp689UAupWIexNoyXvpr1VlIJG4="}]},"directories":{}},"0.4.4":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.4","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"gitHead":"af191e58939bcf7dc8fb67fe67e4b2797fe90457","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.4","scripts":{},"_shasum":"8f727fa09aa966c3f2719f8ce316c87ccc2558e0","_from":".","_npmVersion":"1.4.12","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"8f727fa09aa966c3f2719f8ce316c87ccc2558e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.4.tgz","integrity":"sha512-Igg3bCoAc9iy1QRsJrTuv4BxpiJdMCUMH7ivuviynA2srYaJavymCpQvk0n7obE0FedCpHDnnt6iRfe3xMhGIw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDHw4UHvAnpShP837fYYN7G+KUvLkQnijn7K/fyN+YoaQIhAIGzy7DprrGz20dti0QluJVcipVGP1Jy6VIrIA7mq7dP"}]},"directories":{}},"0.4.5":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.5","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"gitHead":"3a6eb9b2f8b392f94b78359b91e8c3b6b610c69b","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.5","scripts":{},"_shasum":"14e5362a784d59a1ea0b923ac449689d56b47b7e","_from":".","_npmVersion":"2.6.0","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"14e5362a784d59a1ea0b923ac449689d56b47b7e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.5.tgz","integrity":"sha512-mSjOno6XQiQVqeUAt6zBh5enzBZ5qdFlELg5ijO9SLOe0k6fYAuIcRTYmmIny/mBGqb7QxCyG3mP/torkj4E6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKJY9erB8PvD0+bWZyYx96/GcK8hq6XwXFhf7QKHTN1wIhAI6klRiP+FoXw8DU+pEufijae/1EPZtxuotb+7ZSKH7s"}]},"directories":{}},"0.4.6":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.6","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"gitHead":"9c1206d5fc1030d798439ee3d07bee0e9dd01cc8","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.6","scripts":{},"_shasum":"c8b392f5a21ef9d5ca90632772dc77b7d07f4bb2","_from":".","_npmVersion":"2.6.0","_nodeVersion":"0.12.0","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"c8b392f5a21ef9d5ca90632772dc77b7d07f4bb2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.6.tgz","integrity":"sha512-andLlP5NR/k9kuox6ElZj0nDGJea34r0ADExkAxYeiaGS9jt+Z41GwQQQjq0KypyjLKGGPquYAnDe/PfzBSsNw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2iX1HsW0fTynTHtHPgA2Ew90YJ0L5kA1fIakdXflSqwIhAO3OFZ5/6u94kWCs+fwKhCDMq1Bpu31HHz53ctXlsO4f"}]},"directories":{}},"0.4.8":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.8","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"gitHead":"a8744316bed8ae59f9bfff4c9637969a9595a6de","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.8","scripts":{},"_shasum":"1745041f24113cd90693d2837276d872009b0216","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"1745041f24113cd90693d2837276d872009b0216","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.8.tgz","integrity":"sha512-PgSrlig0TipJXal7h0A5tiC1owBV37xzgNryZOy/mnJRhaLRnalzJGWU7dcaRFCFkNqXHBZ6TtU/gKeMKwpbAA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCZwKl6wHvDHbolx2yZky1aRKvsnVAxEndX37vdaHltdwIgevNWWW1IFR0stW2ErTHDXnv8/Z2giz9wLikw9sOwUu0="}]},"directories":{}},"0.4.9":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.9","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"373dc289dde1a6aec0f7cfa30125b4904fb9f852","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.9","scripts":{},"_shasum":"c54c70255e066ff900cfae266d6dca1a0ea5208d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"c54c70255e066ff900cfae266d6dca1a0ea5208d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.9.tgz","integrity":"sha512-xwBGNTYmaXluQ9MOxawtNaZf/xSp3KEcmr+cdNMUyfqVkxXCbwzsZoaJznSWnscMarGxJ107ViN1EZgO6g7Uig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC8hUtSPDlVUBzh2Nhw1z5vAFGKW2Bm4lfB8Bc1rNwDnAIhAI+ikjD0LcVbcktNnN/m/Tu2lNmaIlZHgU21xjswsW14"}]},"directories":{}},"0.4.10":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.10","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"15a09d9d39b1a00e24adfe8c9f4d987d285078f5","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.10","scripts":{},"_shasum":"acec061087669d802310b6fafd69f17d2555d8f6","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"acec061087669d802310b6fafd69f17d2555d8f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.10.tgz","integrity":"sha512-vSOZzmHDE9HuVq5ov8vsDRbIyPQioRR3rb7ZF+ehV4tIrN4OBO/Mmad+cdC96t+qgkylayBQBCtJ/bdPE4wORA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAkx5JNTEPDQIPm9DZVxpTIg9xTtzZLMh36Whd90OZbpAiBIRyGxvPQLPtEGn9i3TvTp0Kk0IJboP/D00jaQ5CkCeQ=="}]},"directories":{}},"0.4.11":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.11","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"710d3e04543fcd7fdbe300b51934f2a94835677f","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.11","scripts":{},"_shasum":"dfdd47a5c84231d808d26f097ef7be545076dcfe","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"dfdd47a5c84231d808d26f097ef7be545076dcfe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.11.tgz","integrity":"sha512-XTDhdDTuc+7tOAd6fcuocGORdM6bfRF4CwLGqL/0gsQJpQN7Mg/8uFRvYQ9v5nXZl+6f3lIeBNF+BAfE48uLiw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICXNhgpEQ3l55unPpS/rajSybu84tuQw+y1rT0OWV7tIAiEA1ZhCJegWoyPBDgwQDIkJ4j8uFZvwuMLJfV+ybzAS8b8="}]},"directories":{}},"0.4.12":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.12","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"f72c823ddd79fabc08be46946519ebe5efaa690b","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.12","scripts":{},"_shasum":"784f5e6c5147e97dc22e4cfd975fdbf2dad03d2d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"784f5e6c5147e97dc22e4cfd975fdbf2dad03d2d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.12.tgz","integrity":"sha512-jWh49/ddLrdOflrAHn93MQSsfZKPd8vOTYSkbmCDyPUk+d+RcwqkTVbE9dpwh0KdX5D+pKq01OsPn7p/bLpyGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIELQRQloEoG04zgxgd3qRQ9sBV1XCYTIHOMo7JgQvd3LAiAn4vupd+yDUq4NEo7awwRKp0Tz7+0ldfsvHjS1BzCY1A=="}]},"directories":{}},"0.4.13":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.13","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"MJJ","url":"https://github.com/mjj2000"}],"gitHead":"69164b06104fd618188df2d69d0694bfa571755e","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.13","scripts":{},"_shasum":"d62148e05e85fb94debef832ee79f938bc114727","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"d62148e05e85fb94debef832ee79f938bc114727","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.13.tgz","integrity":"sha512-3rU3RKJVjODBZviworc1VoQEqEap76uajp+LQ8nfZf+cuISINtR5zmmWimpKfGtyJwmKBByVSl6OU3Ht574AOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGU/3Dxt0IxPdhbOtpj0m7KqJX5QGrpqAYb4EMcJsVXoAiAFv4Rt8gG2L6TfF+68f0fPCBbgl0n8Qf+HudBVaGAejQ=="}]},"directories":{}},"0.4.14":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.14","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"MJJ","url":"https://github.com/mjj2000"}],"gitHead":"b3bdaf8d6177add3023535c07037532c444e7262","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.14","scripts":{},"_shasum":"06544874dfdbc87d1c9a82296b53136b0b64ed9d","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"06544874dfdbc87d1c9a82296b53136b0b64ed9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.14.tgz","integrity":"sha512-yLaHJUlGn4wwmbGgFzxsmxAEE/Or6NakQihqTB/3iLCkLAOPPMrtd3FBPWlIiKhIwZBnaTvI1RD9rsZNpbw6kw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICoRWEeNQ7s38PVVz517CKGv9fY9vxN/Wtv7XkZXmNq4AiBzK2CEPMJPWl4PjlFWy5SEdjtiDNPNigWsdV2C0qW5Kw=="}]},"directories":{}},"0.4.15":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.15","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"f9281817ba6acd96ef17cf70889d163be6e071ef","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.15","scripts":{},"_shasum":"8c18cbd2f51c08ee9aa78e1e1546b33e6ec7c552","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"8c18cbd2f51c08ee9aa78e1e1546b33e6ec7c552","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.15.tgz","integrity":"sha512-UNUl/kKBeF3j5FS7h4Xm0laA+SgA+I2+gA/hj9UkFBBjT6Z7aF3HYV4W4qfcRFuSFF3ZX0mqLWYVM2Bi6YfCxA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRwAi8J5HcNbGxa+vXBGnwYdsonexRajoeexWvXX0nSgIhALIIhDXnbwR927WUZQnyKl36PjoVucdrf2SvAMF+4HcM"}]},"directories":{}},"0.4.16":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.16","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"35447fc252db8843394c825cd346e6f67bc9d416","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.16","scripts":{},"_shasum":"2c5816da96a59894d7c15c5ed4f40de6acab9f7e","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"2c5816da96a59894d7c15c5ed4f40de6acab9f7e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.16.tgz","integrity":"sha512-tqPpPq14lH38ryZYOm3SqkXwMaJnlVc1deK/3lMAZl8jOVDs8OArCFZk4JY8lzLRRkU6XFn3PfYLiQedwrtU5Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCU7+vVHOJhi9RlpPnLHf7YnS5aj/o2GnzCWPy+se6JqwIhAPQ7Nb3CT/8hNKO0aIYF5Sw33Jsn0Roe1Mcs63jkgk7N"}]},"directories":{}},"0.4.20":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.20","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"fe6d5e0a9b0585103c8c10380ea061ae65b1b95d","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.20","scripts":{},"_shasum":"000fc7a9dd00951418ea8031d1d89a3bc23af272","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"000fc7a9dd00951418ea8031d1d89a3bc23af272","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.20.tgz","integrity":"sha512-hevehgmPHu8xtCaO3YPIOuEkSNaf1ZtFJcCCVbojZhmy1m/2WKXf2DhStsG70QS3Dhh3XOJlvby1IR0Dt0q+sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBypTgZkHiIfkMhTOKUWxa+JQ6YA+XUSrExzI2d/p8PrAiA+z7gTiZv9ubFHy3j09/l3cTvjBI/xEpG8/7i2ll67GQ=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/httpreq-0.4.20.tgz_1462180375086_0.9376033458393067"},"directories":{}},"0.4.21":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.21","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"fe6d5e0a9b0585103c8c10380ea061ae65b1b95d","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.21","scripts":{},"_shasum":"b8e749943b0de9312d725c617902f6a2f83b56f3","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"b8e749943b0de9312d725c617902f6a2f83b56f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.21.tgz","integrity":"sha512-NiDVGS8+TOjhr5KKY9LNTlRosh3g3VEPL4s6lM1u7dNR08AB6Z8SsAMOOn54wSK+D2WJLI/JofW/dMtfZsF5IQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJrLw29ihUjWLflIUQ/k9hVhBQwy/2SqZpeUyln3sX/wIhAIO5sf63csbBERNd8og61QKhQfO8kvGDCoNOmlwQGE3N"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/httpreq-0.4.21.tgz_1462180583104_0.9492354958783835"},"directories":{}},"0.4.22":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.22","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"c32f69aae31dcfb19d4fee040d06246482550c6f","homepage":"https://github.com/SamDecrock/node-httpreq","_id":"httpreq@0.4.22","scripts":{},"_shasum":"27097c8ad95ea9679190530c9c0f66b8c7aafb18","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"dist":{"shasum":"27097c8ad95ea9679190530c9c0f66b8c7aafb18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.22.tgz","integrity":"sha512-IPO5O2YiE1FLk2Fqh1GsHg1i1YTGrSjp5Q4bvlcGKxj+rTpWTqFENFprwASdeCAJ41NxzXRjLBtD9kXx70vCBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIfSzuQBRtRolYHjAa3FnnUJzSsoFPsAokYSLHaSt5iwIgNFNV/uT7OCb0XD/SSxEJmgCOKOQaTkd5or8jYBsQVWU="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/httpreq-0.4.22.tgz_1462181335724_0.07091139326803386"},"directories":{}},"0.4.23":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.23","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"29d62f0991fe8eadf1b124e8852e0a79c3140e8c","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@0.4.23","scripts":{},"_shasum":"0f460fe0c781029bcad7f47cad08de6cc1130212","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"dist":{"shasum":"0f460fe0c781029bcad7f47cad08de6cc1130212","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.23.tgz","integrity":"sha512-gSS5LZ5I5bslVW2Pqnd6Wag+sbxB4UwEp94qIPV3CSPmyeYnHNdKQfwrj4ptS6AnXaNVzLO+C43vZKOLlnJalw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFWkjGaPug1RJfGsZmTIO/DwChtghRcFQWvdNJ+McOz/AiBdK2Mk0fYGj31GNahcY0iB90Owu6/3KOetTXIAkqNbRQ=="}]},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/httpreq-0.4.23.tgz_1487541150889_0.9950210025999695"},"directories":{}},"0.4.24":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.4.24","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"3.0.3"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"a48045e87f378079f4e83ed18d6032292cb4a854","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@0.4.24","scripts":{},"_shasum":"4335ffd82cd969668a39465c929ac61d6393627f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"dist":{"shasum":"4335ffd82cd969668a39465c929ac61d6393627f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.4.24.tgz","integrity":"sha512-jY/7ABOVh2WEqDPKYRnMOd4qwH8jYP+oT646Uci8Nx5M6Zi0kO0jo9JKLTSjJ0eaisSUL6zR4JdRiRRPP+kV8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2w9M2EWI3V+KjrSfecJ2sAaY1xcg+nJAtWRXtAx3RDgIhAIw67xVJfKs8q4uqXONnHoC0pOZF1rbKjLuLFtqovKw1"}]},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/httpreq-0.4.24.tgz_1498854530181_0.7929337220266461"},"directories":{}},"0.5.0":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.5.0","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"^4.17.1","body-parser":"^1.19.0","multer":"^1.4.2"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"4c2edca4163b45559a8fcd9217f260e19e355cb6","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@0.5.0","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"integrity":"sha512-6GqZmgpBV1ytvuIUjeXEeDnsDpMey2UnTEsJ6RR67k1r/QA/6iAXnkFMRGjFOVTFz9EhN/szQTJcU6obtQQPeQ==","shasum":"0d555f3a7574c63e22f00d4c8d8b17a5b86bea5b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.5.0.tgz","fileCount":10,"unpackedSize":122985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0OzvCRA9TVsSAnZWagAAZw4P/jZFiXxbmND4C1WybByY\n3XkMWnXbJ8DmIjgf5MQjhYIqVygRMimhy5NAJKlU0y1hgM0jrcdwk2pbMYZd\nXqhzraftyncZnBlbjzDTSw9oVcFCYA5WEa4aI/CjeJY3EYYm3PS0cxrBtTp3\nnsNTLb1CX/PqDWMYVR6y83lKECbuxH6PEwKl4QWkrob1FyYY3TQ0Ksl5ugRo\nC9IHXxcf8FVV/Y49NqO2JjDJQYmZLRKOx8UOOYk8WPCTeEVqtT77WYWv7J/1\n4Mq4WntHFzLvwYtV2T8wNjjrqOEgm05w8Y3m9sSalpkL+Kvr459ot9m4e73O\nW9C+CzZIfSgzUm0ADaJLWVv2s2BcMmEyS9Q0L7qNDZ604uBaOJXfY+L4KTi+\nsR4eSmBfjDYnCH64zVlYDeR4MjFJJ3opD4LB91pTSlFFNokPsLdm7Pd4BQs8\nSiPpKdlFP7fyvntE15g100X9Oc4EqcmJRpsUA6gzwjfcVlq6quzRNlAeJxuu\n33VpMnYaBYsfI3YpTM05TaoEqNdC6iCYNAX4xyhrneI1Ehv7+QBKGH5feOXw\n3aGnzLLiFYcqlYbKXV3REGYKxkmk3g+ueoO/+EtWwyIR4V/wvCAzKVC/tzvf\nBrPJ8rOEc4Wyvo9EVR+cyHDIKxQQYsdiBc4p8iKXYR7SG+57R/cfV6JGTUAh\nT7Gs\r\n=L8sD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICxxfKUP6Lm7/EWbElW0XDguKcQ7wCg8fM6R6hGlfMu3AiEAzCmd1DxAmPsSb4vd5Oel8H2EIowZrFW45IjKbeKw7ks="}]},"_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/httpreq_0.5.0_1624304878499_0.8140310359254861"},"_hasShrinkwrap":false},"0.5.1":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.5.1","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 0.8.0"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"^4.17.1","body-parser":"^1.19.0","multer":"^1.4.2"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"4c6c4a8f94bc9186aae1aef463428f877ba7b580","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@0.5.1","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"integrity":"sha512-be2QtLktIyLEekfJ+MDSlPGO6nGTccJMrpBSwpLdOS71gO9yidWmOAhTA/ndbP5TMVldhvYcm4k6Ybbft7ejjQ==","shasum":"33702c38270d2e68bb146056daea5d35b87f3a19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.5.1.tgz","fileCount":15,"unpackedSize":639866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0PCFCRA9TVsSAnZWagAAuXIQAJwJ8FVbR1N3t3Jr5U/t\nBsd+TucrR7xzTJE/RTWY+H6iXyuOU6cxmL12vhJvhOTngPb+m5Sc/otZxD54\n0NqSvR/4V8iLOVY0wvfkJ4HV/agofGQ89VlSNleNzqSRNYcGenUHGgef5haO\n3wXq4I5NS9z02/e80qn06G+RBuaa94tbV/xw9za784u1TSZnifI/AM4NXmcv\nCcTCwTVxyj93IVfM+HPAzQ7BSu+KFQt6eb8iTG4/c6BT5FwER/pHlPxh9F0w\nDWs0+8Y6HMqATMjXzzMF/4T3jbOX25jZBkxIWHK/TtISCA0jKbDzBDom9lDT\naOfjSnRhxHufHZt+tuAjcse8XVw24qv6ipcHq5WOMe7qAx9vXshkzvdwnfKx\n4F6tJVBoOSiIPcj9F/44VUFdVTrq/n6KJ/EHb6DsDJsrph2hZISmyokNN/wS\nN1aLC2dVqOtVsxk8hC4kyB7F29dmUTryEHyfEcj+U/hlNO9/n1xKogIPHX6g\nzryUNI/N0hXwljR/zLQJYPjlEkVbB+8Qkk2bs2HWvFnGCN33/yuEd52nPQ8A\nerWqqYybYbzXGsXvzryIW23NReVNXWb3Jkk0rk1as4kY9ZcYBDjJfT0gyhEe\n4SBvZJdCabm/3modvjKWlQ2ejt9Gl3PtzHKFBqqChxHQsrMQutYo6Qu/P+2u\nvarr\r\n=UAcC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCcwYLa8WSUssgb2e+viFAxq4DMkv9afgIqmvUXZdkhXwIgKGWevBzweFrXYcQYOKv+WdWfQ+rY2m8x1LDbLCbaZEY="}]},"_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/httpreq_0.5.1_1624305796473_0.12238229626994479"},"_hasShrinkwrap":false},"0.5.2":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"0.5.2","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 6.15.1"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"^4.17.1","body-parser":"^1.19.0","multer":"^1.4.2"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"c2dbc959ea8538ffcbb12c5a7e7e1b90abd7d5e0","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@0.5.2","_nodeVersion":"16.3.0","_npmVersion":"7.15.1","dist":{"integrity":"sha512-2Jm+x9WkExDOeFRrdBCBSpLPT5SokTcRHkunV3pjKmX/cx6av8zQ0WtHUMDrYb6O4hBFzNU6sxJEypvRUVYKnw==","shasum":"be6777292fa1038d7771d7c01d9a5e1219de951c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-0.5.2.tgz","fileCount":5,"unpackedSize":34015,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1kq6CRA9TVsSAnZWagAAiwIQAIRaxmMFYs0bRGAFVg7O\n9+I5qXDNZUWX9M1ngclGTW9jeoz3Uc5/dQMpwg3d50+AH0PRrXURBkl0aaXA\ntSPkwYZN5pC/NCON/rPC+arlR6nYjP8NpFWK12KN5qfX3V/JRCPfsnCmPrsf\nY7Imbf+ICauK9YX9I1b5kQ5vX+L+n/h7mnXXHW0WwQcstWRVbckKonbVqz3W\nDQYT53Jp9MXZOSTE42JZnTDbzLpx4l5FUQ2+TaVUpf8LszIFw5up3lr3hgfu\n+tkDefR96epPqAFVUHeF++NBbj0phWlOLVb3JskbW/AN6DP6UX55q3XD0KLJ\nVSQZiq3NqeL8jA8DGvzGmhb/DA3p2DMrsg7S3wLMszhRLpR0hU2D6GurvfZ5\nLktXucmezdsEiyoWYAIpMGdqx1MpFksCQiFSDSsSgpciVejR3bqxkgSxLs//\n4RV+HL9RDhlP/+2Q2Axa9FVy507yEXIRRpyG741MBDxTFKRrhWtbzxC68LBq\nVOiH8mp5T6ZtSvynXkg5kOzX481IOUgodeH/yySxhyB7TwQtJ9HP7kfaYRk+\nyByS+NLZinNbjhZyOLRA01fndXoh5QpIMZ1vx9RSFVoNCai75hccyZGUnwmp\nRANWNku+uA9PGpqxfX2YvKKCfqLqcArCav2xdzFFJVqUX01uvZmpZGpyfF5C\npIzj\r\n=gERL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEI6S48RDoR9apD7KkzJTg0n84DtQnhGDtt2aGiboxAqAiAem6vRXJNh6ecOMD0Q0tkzMMOONYPVZ+45lHRlXGUi1g=="}]},"_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/httpreq_0.5.2_1624656569987_0.0016055739963369842"},"_hasShrinkwrap":false},"1.0.0":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"1.0.0","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 6.15.1"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"^4.17.1","body-parser":"^1.19.0","multer":"^1.4.2"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"7699f4720bb6619dfc6ad53779b279a7e1ce3e90","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@1.0.0","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-YGeTNcv3gVyDpKjqSvd5w19p1Iz6fzd8tmDxMNK/JmkehjKosRX1Wb0qTf/HhKFnK0wa5OF3rY6lnac0JqDnHg==","shasum":"42b2939e1e76301713b0068696693d3721c85c92","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-1.0.0.tgz","fileCount":5,"unpackedSize":34550,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGIu1SEeqO00FGYW/m5b2BsneYXCgyvOe5ug/YEEruChAiAbOZuZNes/6DkM/1D6C+8UKyy1TbY5/Km7tvGb0ju0vw=="}]},"_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/httpreq_1.0.0_1692623323263_0.22047018845629385"},"_hasShrinkwrap":false},"1.1.0":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"1.1.0","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 6.15.1"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"^4.17.1","body-parser":"^1.19.0","multer":"^1.4.2"},"contributors":[{"name":"Russell Beattie","email":"russ@russellbeattie.com","url":"https://github.com/russellbeattie"},{"name":"Jason Prickett MSFT","url":"https://github.com/jpricketMSFT"},{"url":"https://github.com/jjharriso"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jeff Young","url":"https://github.com/jeffyoung"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin van de Meent","email":"fr@nkl.in","url":"https://github.com/fvdm"}],"gitHead":"cedeea384df54b074cf476cbfd88f8ae3478a3bf","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@1.1.0","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-P2ROAc2JG4Y1+EL8vRusYb3p6BK5WRZLVj8WLrvtQJL9qQgocqieU9+0cWWwrL2FroUjXGtUDo4lOKXoq+Et+g==","shasum":"ea53ef7a5de82b806cf44fbade99e092e7c4f7d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-1.1.0.tgz","fileCount":5,"unpackedSize":35495,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVNlE7F/TglVzl/kLNU0qIzs364APF8QJGR322hC3DxAIgQSqP5+n4YAcN0vLTuTYWPR202BO0XUJ5Hivm8UB2F9c="}]},"_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/httpreq_1.1.0_1692695182857_0.0977896574327739"},"_hasShrinkwrap":false},"1.1.1":{"name":"httpreq","description":"node-httpreq is a node.js library to do HTTP(S) requests the easy way","version":"1.1.1","author":{"name":"Sam Decrock","url":"https://github.com/SamDecrock/"},"bugs":{"url":"https://github.com/SamDecrock/node-httpreq/issues"},"engines":{"node":">= 6.15.1"},"repository":{"type":"git","url":"git://github.com/SamDecrock/node-httpreq.git"},"main":"./lib/httpreq","license":"MIT","devDependencies":{"chai":"~1.9.1","mocha":"~1.20.1","express":"^4.17.1","body-parser":"^1.19.0","multer":"^1.4.2"},"contributors":[{"name":"ludovic landier","url":"https://github.com/Come2Daddy"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jason Prickett","url":"https://github.com/jpricket"},{"name":"Russell Beattie","url":"https://github.com/russellbeattie"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin","url":"https://github.com/fvdm"}],"gitHead":"ada2be73ada26d2af716283564fab3a6273573c3","homepage":"https://github.com/SamDecrock/node-httpreq#readme","_id":"httpreq@1.1.1","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-uhSZLPPD2VXXOSN8Cni3kIsoFHaU2pT/nySEU/fHr/ePbqHYr0jeiQRmUKLEirC09SFPsdMoA7LU7UXMd/w0Kw==","shasum":"b8818316cdfd6b1bfb0f68b822fa1306cd24be68","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/httpreq/-/httpreq-1.1.1.tgz","fileCount":5,"unpackedSize":34854,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWFcfxQXxkx9U04Hi8yLY1VqK0zf2jL4oh+6QKwDLBoAIhAKjvgImEDM5+pbLoizYBbGgAXqSAiWedF+gQ0gtuGY99"}]},"_npmUser":{"name":"anonymous","email":"sam.decrock@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sam.decrock@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/httpreq_1.1.1_1695927497643_0.23337419974203333"},"_hasShrinkwrap":false}},"name":"httpreq","time":{"modified":"2023-09-28T18:58:18.103Z","created":"2013-01-28T13:54:25.750Z","0.1.0":"2013-01-28T13:54:27.468Z","0.1.1":"2013-01-28T14:01:11.899Z","0.2.0":"2013-02-11T15:35:18.218Z","0.2.1":"2013-02-11T15:43:26.153Z","0.2.2":"2013-02-13T17:30:36.188Z","0.2.3":"2013-02-18T10:21:53.686Z","0.2.4":"2013-03-06T11:29:42.404Z","0.2.5":"2013-03-06T15:30:39.363Z","0.2.6":"2013-03-09T18:58:46.801Z","0.2.7":"2013-03-10T18:43:07.355Z","0.2.8":"2013-03-26T08:59:24.490Z","0.2.9":"2013-03-26T09:04:35.580Z","0.3.0":"2013-04-03T10:33:25.436Z","0.3.1":"2013-04-03T12:04:32.988Z","0.3.2":"2013-04-12T13:08:34.659Z","0.3.3":"2013-07-25T15:37:53.981Z","0.3.4":"2013-08-14T00:40:59.000Z","0.3.5":"2013-12-30T22:02:02.138Z","0.3.6":"2014-01-01T02:58:19.482Z","0.3.7":"2014-01-01T03:13:25.892Z","0.3.8":"2014-01-13T13:04:08.821Z","0.3.9":"2014-04-06T16:21:46.854Z","0.4.0":"2014-07-18T13:45:52.426Z","0.4.2":"2014-07-18T13:49:51.313Z","0.4.3":"2014-12-24T09:15:24.236Z","0.4.4":"2014-12-26T14:58:38.988Z","0.4.5":"2015-02-24T15:21:51.880Z","0.4.6":"2015-03-05T12:28:16.578Z","0.4.8":"2015-05-21T08:01:53.397Z","0.4.9":"2015-05-21T08:09:40.357Z","0.4.10":"2015-05-21T08:10:23.577Z","0.4.11":"2015-05-21T15:39:00.363Z","0.4.12":"2015-05-22T08:16:05.905Z","0.4.13":"2015-08-03T09:53:47.524Z","0.4.14":"2015-11-27T10:58:10.805Z","0.4.15":"2015-11-27T11:06:47.857Z","0.4.16":"2015-11-30T12:30:42.723Z","0.4.20":"2016-05-02T09:12:57.660Z","0.4.21":"2016-05-02T09:16:24.148Z","0.4.22":"2016-05-02T09:28:58.363Z","0.4.23":"2017-02-19T21:52:32.934Z","0.4.24":"2017-06-30T20:28:51.569Z","0.5.0":"2021-06-21T19:47:58.676Z","0.5.1":"2021-06-21T20:03:16.747Z","0.5.2":"2021-06-25T21:29:30.112Z","1.0.0":"2023-08-21T13:08:43.517Z","1.1.0":"2023-08-22T09:06:23.001Z","1.1.1":"2023-09-28T18:58:17.921Z"},"readmeFilename":"README.md","contributors":[{"name":"ludovic landier","url":"https://github.com/Come2Daddy"},{"name":"MJJ","url":"https://github.com/mjj2000"},{"name":"Jason Prickett","url":"https://github.com/jpricket"},{"name":"Russell Beattie","url":"https://github.com/russellbeattie"},{"name":"Sam","url":"https://github.com/SamDecrock"},{"name":"Dave Preston","url":"https://github.com/davepreston"},{"name":"Franklin","url":"https://github.com/fvdm"}],"homepage":"https://github.com/SamDecrock/node-httpreq#readme"}