{"maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"keywords":["request","retry","stream"],"dist-tags":{"legacy-10":"4.2.2","legacy-12":"5.0.2","legacy-14":"7.0.2","latest":"8.0.2"},"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"description":"Retry a request.","readme":"**_THIS REPOSITORY AND PACKAGE WILL BE DEPRECATED IN JULY 2024. RELEVANT FUNCTIONALITIES HAVE BEEN MOVED TO [GOOGLEAPIS/GAXIOS](https://github.com/googleapis/gaxios)_**\n\n|![retry-request](logo.png)\n|:-:\n|Retry a [request][request] with built-in [exponential backoff](https://developers.google.com/analytics/devguides/reporting/core/v3/coreErrors#backoff).\n\n```sh\n$ npm install --save teeny-request\n$ npm install --save retry-request\n```\n\n```js\nvar request = require('retry-request', {\n  request: require('teeny-request'),\n});\n```\n\nIt should work the same as `request` and `teeny-request` in both callback mode and stream mode.\n\nNote: This module only works when used as a readable stream, i.e. POST requests aren't supported ([#3](https://github.com/googleapis/retry-request/issues/3)).\n\n## Do I need to install `request`?\n\nYes! You must independently install `teeny-request` OR `request` (_deprecated_) and provide it to this library:\n\n```js\nvar request = require('retry-request', {\n  request: require('teeny-request'),\n});\n```\n\n#### Callback\n\n`urlThatReturns503` will be requested 3 total times before giving up and executing the callback.\n\n```js\nrequest(urlThatReturns503, function (err, resp, body) {});\n```\n\n#### Stream\n\n`urlThatReturns503` will be requested 3 total times before giving up and emitting the `response` and `complete` event as usual.\n\n```js\nrequest(urlThatReturns503)\n  .on('error', function () {})\n  .on('response', function () {})\n  .on('complete', function () {});\n```\n\n## Can I monitor what retry-request is doing internally?\n\nYes! To enable the debug mode, set the environment variable `DEBUG` to _retry-request_.\n\n(Thanks for the implementation, @yihaozhadan!)\n\n## request(requestOptions, [opts], [cb])\n\n### requestOptions\n\nPassed directly to `request` or `teeny-request`. See the list of options supported:\n\n- https://github.com/request/request/#requestoptions-callback\n- https://github.com/googleapis/teeny-request#teenyrequestoptions-callback\n\n### opts _(optional)_\n\n#### `opts.noResponseRetries`\n\nType: `Number`\n\nDefault: `2`\n\nThe number of times to retry after a response fails to come through, such as a DNS resolution error or a socket hangup.\n\n```js\nvar opts = {\n  noResponseRetries: 0,\n};\n\nrequest(url, opts, function (err, resp, body) {\n  // url was requested 1 time before giving up and\n  // executing this callback.\n});\n```\n\n#### `opts.objectMode`\n\nType: `Boolean`\n\nDefault: `false`\n\nSet to `true` if your custom `opts.request` function returns a stream in object mode.\n\n#### `opts.retries`\n\nType: `Number`\n\nDefault: `2`\n\n```js\nvar opts = {\n  retries: 4,\n};\n\nrequest(urlThatReturns503, opts, function (err, resp, body) {\n  // urlThatReturns503 was requested a total of 5 times\n  // before giving up and executing this callback.\n});\n```\n\n#### `opts.currentRetryAttempt`\n\nType: `Number`\n\nDefault: `0`\n\n```js\nvar opts = {\n  currentRetryAttempt: 1,\n};\n\nrequest(urlThatReturns503, opts, function (err, resp, body) {\n  // urlThatReturns503 was requested as if it already failed once.\n});\n```\n\n#### `opts.shouldRetryFn`\n\nType: `Function`\n\nDefault: Returns `true` if [http.incomingMessage](https://nodejs.org/api/http.html#http_http_incomingmessage).statusCode is < 200 or >= 400.\n\n```js\nvar opts = {\n  shouldRetryFn: function (incomingHttpMessage) {\n    return incomingHttpMessage.statusMessage !== 'OK';\n  },\n};\n\nrequest(urlThatReturnsNonOKStatusMessage, opts, function (err, resp, body) {\n  // urlThatReturnsNonOKStatusMessage was requested a\n  // total of 3 times, each time using `opts.shouldRetryFn`\n  // to decide if it should continue before giving up and\n  // executing this callback.\n});\n```\n\n#### `opts.request`\n\nType: `Function`\n\nIf we not provided we will throw an error advising you to provide it.\n\n_NOTE: If you override the request function, and it returns a stream in object mode, be sure to set `opts.objectMode` to `true`._\n\n```js\nvar originalRequest = require('teeny-request').defaults({\n  pool: {\n    maxSockets: Infinity,\n  },\n});\n\nvar opts = {\n  request: originalRequest,\n};\n\nrequest(urlThatReturns503, opts, function (err, resp, body) {\n  // Your provided `originalRequest` instance was used.\n});\n```\n\n#### `opts.maxRetryDelay`\n\nType: `Number`\n\nDefault: `64`\n\nThe maximum time to delay in seconds. If retryDelayMultiplier results in a delay greater than maxRetryDelay, retries should delay by maxRetryDelay seconds instead.\n\n#### `opts.retryDelayMultiplier`\n\nType: `Number`\n\nDefault: `2`\n\nThe multiplier by which to increase the delay time between the completion of failed requests, and the initiation of the subsequent retrying request.\n\n#### `opts.totalTimeout`\n\nType: `Number`\n\nDefault: `600`\n\nThe length of time to keep retrying in seconds. The last sleep period will be shortened as necessary, so that the last retry runs at deadline (and not considerably beyond it). The total time starting from when the initial request is sent, after which an error will be returned, regardless of the retrying attempts made meanwhile.\n\n### cb _(optional)_\n\nPassed directly to `request`. See the callback section: https://github.com/request/request/#requestoptions-callback.\n\n[request]: https://github.com/request/request\n","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/retry-request.git"},"users":{},"bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"license":"MIT","versions":{"1.0.0":{"name":"retry-request","version":"1.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.0.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"de236deaf4d8a6a989e0942f740deb98a490a197","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.0.0.tgz","integrity":"sha512-nTji3a8QHNB6Qsfgd8SvIiboSEcdPqG2fIfWKX8DtHUzYYBPPdEb/XNLFBuuRk+STKKKhqB0g3aVmjNH2mFlIg==","signatures":[{"sig":"MEUCIQCELjO9X0MqRcM/xTa4qzrgVD8SXG944OP7OVSvI2zPawIgQg0kKdJrKymGQpHi1Ger0DfO6Pp/iG6U0WymmjsF8SI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"de236deaf4d8a6a989e0942f740deb98a490a197","gitHead":"58cfe5dbc238f6c4ab7a1888e3522de3b3d4517b","scripts":{"test":"mocha --timeout 5000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"2.11.2","description":"Retry a request.","directories":{},"_nodeVersion":"0.12.5","dependencies":{"request":"^2.58.0","through2":"^2.0.0","stream-cache":"0.0.2","stream-forward":"^1.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.1.0":{"name":"retry-request","version":"1.1.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.1.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"e0fefbf6f0f3c769cdd70cb12d45f3ff9b04a08d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.1.0.tgz","integrity":"sha512-Pk0ac4QX+XK86kuqx3eJpC4oig1erqINRH4mIKI5LbNOBgay0MDUQfL0K7LFx2JSzcIScqtM4onnjNLHKE0z7A==","signatures":[{"sig":"MEUCIQCeUNwu1U3o+QkVl525eDQZ9Py6WJG+3DZ9IsMZnDW5QgIgbt4amZUnRGCvL5X5bOmTDPsqTfBsMJX+BST6nrr7CmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"e0fefbf6f0f3c769cdd70cb12d45f3ff9b04a08d","gitHead":"30f1f4a508f9f8b961b76087db410547c538ccc5","scripts":{"test":"mocha --timeout 10000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"2.11.2","description":"Retry a request.","directories":{},"_nodeVersion":"0.12.5","dependencies":{"request":"^2.58.0","through2":"^2.0.0","stream-cache":"0.0.2","stream-forward":"^1.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.1.1":{"name":"retry-request","version":"1.1.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.1.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"d8d4bf2acf2a877d05a5acd88b5973f37a2a512d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.1.1.tgz","integrity":"sha512-xORzYRSYLpg1RaML6zezVo3F6wac73AAb5hVHQUI80ps69/jn6/PXGjf+RHVgWZHsMFSSf7lDZ5kroB6xJefbg==","signatures":[{"sig":"MEQCIGtN+brX1vOHaF23ehdTW+I4xqbjKhqsUIDel0ubK14GAiAf7Vm39a/eP1K+NjcpQqLWL/PH0qeB8VOUyaYPhHwOoA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"d8d4bf2acf2a877d05a5acd88b5973f37a2a512d","gitHead":"b23d9cfcd5346101b45ce8de6aab9b584a45dd0c","scripts":{"test":"mocha --timeout 10000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"2.11.2","description":"Retry a request.","directories":{},"_nodeVersion":"0.12.5","dependencies":{"request":"^2.58.0","through2":"^2.0.0","stream-cache":"0.0.2","stream-forward":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.0":{"name":"retry-request","version":"1.2.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.2.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"6360cc16cbbcfa82c1936403954a47d9b247a61d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.2.0.tgz","integrity":"sha512-wSZrwytvXr9f7HwABtD+Of7hw81WrBxM+Y24sIhGIToxj5Z+JJkeG4cYbv/clQczlicVsQOsHHuLLlt2CYCaVw==","signatures":[{"sig":"MEQCIEHkflxtbeHpjb9QTFisN3M/dwOmbWAX80kcW3Srt91GAiBNknpfrEiStFukBuz5PFmss9BVNWjjvoB6kMsJNzEmmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"6360cc16cbbcfa82c1936403954a47d9b247a61d","gitHead":"83a9e0e984ca5c968a3c39a542746f66808e26b7","scripts":{"test":"mocha --timeout 10000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"2.11.2","description":"Retry a request.","directories":{},"_nodeVersion":"0.12.5","dependencies":{"request":"^2.58.0","through2":"^2.0.0","stream-cache":"0.0.2","stream-forward":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.1":{"name":"retry-request","version":"1.2.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.2.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"f48e56c46bf2ed46aa176332779272e2e810c237","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.2.1.tgz","integrity":"sha512-Uz57A4kcSZqb5Yf3AcZ5dHr2C33nSpCS3iFxzULux2L0FYEvy9xbOB0dDAOvJuwWXOsmHZZrMUx+lGwEyXi0rA==","signatures":[{"sig":"MEUCIQDeKYNcFY6yII8UK40+nSxGPUjQaHYuOljrJYiOi8ISPgIgRgupIQYpVyIr/MBTQ41DHMRENl4dg7TLw7nI1mWH5Eo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"f48e56c46bf2ed46aa176332779272e2e810c237","gitHead":"563a10fe8072211bbbaa8bdcb440c119d87da618","scripts":{"test":"mocha --timeout 10000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"2.11.3","description":"Retry a request.","directories":{},"_nodeVersion":"0.12.7","dependencies":{"request":"^2.58.0","through2":"^2.0.0","stream-cache":"0.0.2","stream-forward":"^3.0.0"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.2":{"name":"retry-request","version":"1.2.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.2.2","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"29eb758f9bb5640b3ef7653da9f10ed596eb16d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.2.2.tgz","integrity":"sha512-4/7FWM6o8J6aqu+hfqm82vlQ4nFkIHF/xAD0ji7IQxNxLGbQwibPQU7yo8W91harUclXGlNy+nAhN2NNAG1zWg==","signatures":[{"sig":"MEUCIC1nhrnsDahKyxd192nGUuu8AQeXP7nO1OHk/A8uoohwAiEAktyiyEohwvtcfRAClwuwr7HMqj/A8Z4kT6OyzrfwF8k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"29eb758f9bb5640b3ef7653da9f10ed596eb16d2","gitHead":"db579c9302178623164b96cb0a8a2e6cd34d54ca","scripts":{"test":"mocha --timeout 12000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"2.14.7","description":"Retry a request.","directories":{},"_nodeVersion":"4.2.2","dependencies":{"request":"^2.58.0","through2":"^2.0.0","stream-cache":"0.0.2"},"devDependencies":{"mocha":"^2.2.5"}},"1.2.3":{"name":"retry-request","version":"1.2.3","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.2.3","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"20c49dee444fa4372a560657f1960a7635173f9b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.2.3.tgz","integrity":"sha512-CxqOC8QExTjnF9d4jpD+GfLmRfUdKXvoz6iwIpL3ft942nSLB2GNvGeDFTykFoZYDhSrqsKJAlkB4/5AzaGAbw==","signatures":[{"sig":"MEQCIATCBmiNxK0ktKYwTeHbURII/vt0WyJPJmEtAl3I0qB4AiAlWDwjECZrMC3sBm5gzBTuilBavsyWSObzneTJaYwsVg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"20c49dee444fa4372a560657f1960a7635173f9b","gitHead":"56e8021de6ca0ff6952d17bd5c9d1ac36c5cdd6b","scripts":{"test":"mocha --timeout 12000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"2.14.9","description":"Retry a request.","directories":{},"_nodeVersion":"0.12.9","dependencies":{"request":"^2.58.0","through2":"^2.0.0","stream-cache":"0.0.2"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-1.2.3.tgz_1454523468799_0.37297065975144506","host":"packages-5-east.internal.npmjs.com"}},"1.2.4":{"name":"retry-request","version":"1.2.4","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.2.4","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"0a9290f0cf32c94f2354fa25abc0d71ef61bc011","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.2.4.tgz","integrity":"sha512-vQiHXNF1fYq7464/M1kBhYV0gApHpIWNJs85zGaGrHlXGWbfA6nLhpk6jBQvMxUjzQCdzDcfGogfK6+E7F6Gjg==","signatures":[{"sig":"MEYCIQC4XBXnq+4GyuwB+eHZ+uuiEBFwzBcgJdkNmLpyMzqGgQIhALlKtONWKR+1MzXfbN1W0rsjQn4m/jIoQWLtXvpWW5VM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"0a9290f0cf32c94f2354fa25abc0d71ef61bc011","gitHead":"c9a5d8ea5eb23d504be12e1b319c287ea8401f8a","scripts":{"test":"mocha --timeout 12000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"3.7.3","description":"Retry a request.","directories":{},"_nodeVersion":"5.8.0","dependencies":{"request":"^2.69.0","through2":"^2.0.0","stream-cache":"0.0.2"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-1.2.4.tgz_1458929175113_0.21797742997296154","host":"packages-12-west.internal.npmjs.com"}},"1.3.0":{"name":"retry-request","version":"1.3.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.3.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"17a20289ee00504d9b0ff33fa0d41724f1671a7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.3.0.tgz","integrity":"sha512-BdRdFg675F/fqr26K+s4+IQIm9by/IygndM4OBR+mMem6oCHOTXNEx1et81kzY9MyAJ7QCT0A8HDYMKqNinxXg==","signatures":[{"sig":"MEUCIE0tj3JbEBPokN6nCFo/psXwAHslMWC6qB6wsP3sbmA5AiEAoNRreCFX0QmaJF/6Ax1VVybt1/CYUo9YWbWn6SEYoSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"17a20289ee00504d9b0ff33fa0d41724f1671a7f","gitHead":"9c322eed36d87e49974177ae9abbccbd0f8f8dcd","scripts":{"test":"mocha --timeout 12000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"3.8.9","description":"Retry a request.","directories":{},"_nodeVersion":"6.2.0","dependencies":{"request":"^2.69.0","through2":"^2.0.0","stream-cache":"0.0.2"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-1.3.0.tgz_1465996563249_0.40520702907815576","host":"packages-12-west.internal.npmjs.com"}},"1.3.1":{"name":"retry-request","version":"1.3.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.3.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"dist":{"shasum":"2f9dd3ac3cfba24996e7b220928f35b5ff6d3241","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.3.1.tgz","integrity":"sha512-t7dt40e45QzNT/NkNVmUpIB6ONNE7VCEYmBCU04FAj2yXvN8VKxFXJgfTl7ErTHYcO1X6PBWSCCdgX7vKRLsag==","signatures":[{"sig":"MEUCIBq2HuphJSM2AFyTAvBe5g0rY0e5+6QjKb0/pcKuUwrAAiEApQgtW/eNop2lVKVc1MgIjZMHyv5hsKOlcCx6kjulovQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"2f9dd3ac3cfba24996e7b220928f35b5ff6d3241","gitHead":"85ee18dfc48e3bff174a4711440f55ed4748dc0f","scripts":{"test":"mocha --timeout 12000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"_npmVersion":"3.8.9","description":"Retry a request.","directories":{},"_nodeVersion":"6.2.0","dependencies":{"request":"^2.69.0","through2":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-1.3.1.tgz_1467044677571_0.050240318989381194","host":"packages-12-west.internal.npmjs.com"}},"1.3.2":{"name":"retry-request","version":"1.3.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@1.3.2","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"59ad24e71f8ae3f312d5f7b4bcf467a5e5a57bd6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-1.3.2.tgz","integrity":"sha512-mHfMe7LgAbxzPN8Xc6cZGXvw+FSeRJB9vkvS1fZkpKGBu5llVm7Dc0/CMQe9zI04qxYM8FMN0H/T9J5tp3JvOw==","signatures":[{"sig":"MEUCIGBIO9duC5NOBRGbX39elYeAdI7NqdXz0YWYj3gFmK8gAiEA5zfS1P07s3HNClr/B39zpmzVJrAUWAu72jCMwH7brvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"59ad24e71f8ae3f312d5f7b4bcf467a5e5a57bd6","engines":{"node":">=0.12"},"gitHead":"cffad4f130d3b52117a59536ab4d768788d1c3ff","scripts":{"test":"mocha --timeout 12000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"3.9.5","description":"Retry a request.","directories":{},"_nodeVersion":"6.2.2","dependencies":{"request":"2.76.0","through2":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-1.3.2.tgz_1481223660640_0.9872467438690364","host":"packages-18-east.internal.npmjs.com"}},"2.0.0":{"name":"retry-request","version":"2.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@2.0.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"fa6d3f91e86ded0781c7cfbe45dc6397dbe37943","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-2.0.0.tgz","integrity":"sha512-Gn0aaljvUJ9rFl1XV0dUJqosj91RmW6oMTMKXgEKvAFdDbdXhqIu27nULZBqkJn+2OwJpnFJ6evevy2smcHbNQ==","signatures":[{"sig":"MEUCIB9TJcVSWfVvjDM8b0dB9fCq2PpSZyorUcZaIMifOm+bAiEA1GjSYGh2Fr74TwuaErbuBtZsy6kNWENotzO1KASjSdk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"fa6d3f91e86ded0781c7cfbe45dc6397dbe37943","engines":{"node":">=4"},"gitHead":"576627f98be5c1991e7db17f11a60fc35974196a","scripts":{"test":"mocha --timeout 12000"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"4.2.0","description":"Retry a request.","directories":{},"_nodeVersion":"7.8.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-2.0.0.tgz_1492792409360_0.05425534467212856","host":"packages-18-east.internal.npmjs.com"}},"2.0.1":{"name":"retry-request","version":"2.0.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@2.0.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"fce3d5cc53e307c7dd1b4a6395bbfac1ea5ae664","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-2.0.1.tgz","integrity":"sha512-ngTxj0Yjv8MgL6V8jK/cHcGYzwi9sznG6hH5zZypzbwHebihFpX1kbJdFKKFzfiVzTR59UNRxmcrxmibkZdaEA==","signatures":[{"sig":"MEUCIQDeeAxRuSJEhw52qNfGrTOsCaX684X8csBKoz4WzERE4gIgWexGL7WtpY8JFZXulVoD0zMi2lsk/baM8HyS+Acw9rU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"fce3d5cc53e307c7dd1b4a6395bbfac1ea5ae664","engines":{"node":">=4"},"gitHead":"894670a438d02eb465b432aadecb49131a6a7671","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"4.2.0","description":"Retry a request.","directories":{},"_nodeVersion":"7.8.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-2.0.1.tgz_1493924967641_0.046412039548158646","host":"packages-18-east.internal.npmjs.com"}},"2.0.2":{"name":"retry-request","version":"2.0.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@2.0.2","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"8f5ff4facc526fdeb8262ac6314e6becee9e3325","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-2.0.2.tgz","integrity":"sha512-Lu3W2OsnaSIOPRdCjPwJrp54DDuxpI68nb68t4eAAQI2diL7sD2Qk/My2WFijgkaLwuI2/8buUOb6cynyQPkDw==","signatures":[{"sig":"MEUCIQCl5QOmO5KHJW9QzUE3A9drAFwsrYQG/V4Rvbw6P7KnKQIgL2ggWKiu961/N/8r7ezglI56YCQZuy7Ydby1/SMs0MY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"8f5ff4facc526fdeb8262ac6314e6becee9e3325","engines":{"node":">=4"},"gitHead":"d02ca5adf6e3164abbbd6128edd59c7e2358ae63","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"4.0.5","description":"Retry a request.","directories":{},"_nodeVersion":"7.2.1","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-2.0.2.tgz_1494697693274_0.6713045253418386","host":"packages-12-west.internal.npmjs.com"}},"2.0.3":{"name":"retry-request","version":"2.0.3","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@2.0.3","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"721870a809e1dc678cea24c058947c12bfb5c24d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-2.0.3.tgz","integrity":"sha512-FpS8G7O0xcrP6QW/xVYYnD9fyRT3Ln4X0YC6ATTplyqiR6pc+bZx4E22xJDBZGHsqAsHRERWG80o+uigxFXoAQ==","signatures":[{"sig":"MEQCIDWiQJc/ij6dfH6aSks3YCRYzW+YhLyzfp/hBsEv24PsAiBKoRRECpwgJKvBuii0wjR/0CnZLVJi0rMqlNJEhitmzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"721870a809e1dc678cea24c058947c12bfb5c24d","engines":{"node":">=4"},"gitHead":"2001b79e5488389ad6343e9ed957a1e8be849d8a","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"4.0.5","description":"Retry a request.","directories":{},"_nodeVersion":"7.2.1","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-2.0.3.tgz_1495579712326_0.956495980033651","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"retry-request","version":"2.0.4","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@2.0.4","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"2cc7da18b0817ea085f9a4005594b5d8cda160b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-2.0.4.tgz","integrity":"sha512-NoLtHlslIw70+f2R0DZ45GodtET39Tmm1x/cvPIMUNx3Kcgjn+q1rRXBWi6H/RdQGaKpI0LMnZmPju00WytYHA==","signatures":[{"sig":"MEYCIQCZrL7aa39PKHzck6q55uQ9Yd7NE23tIxpI0bC1SSB4PwIhAPMSfkMSfZOz3UAdXEuwmas6p90UjdIvzPYGO2B6amo3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"2cc7da18b0817ea085f9a4005594b5d8cda160b2","engines":{"node":">=4"},"gitHead":"2d1f8594f3e084c5ca9c13cc3899398a96861227","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"4.2.0","description":"Retry a request.","directories":{},"_nodeVersion":"7.10.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0","first-event":"^1.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-2.0.4.tgz_1495745348711_0.9438036393839866","host":"s3://npm-registry-packages"}},"2.0.5":{"name":"retry-request","version":"2.0.5","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@2.0.5","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"d089a14a15db9ed60685b8602b40f4dcc0d3fb3c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-2.0.5.tgz","integrity":"sha512-DbjUqUy0NViwVvcgbO6MgmIXDpStrW9WgbtDLxtObWEV7hPYGpgwH7FAMybBJOaPZQQBw2PTdcKxgtQ/l3LvYA==","signatures":[{"sig":"MEQCIG8+nLBNTCKzBq+SQDSGByDYtz9dSrVw0t/1K/S9b70nAiAP3rqfD2IsROgYFd+AeQUeHB/b0IvqMyy2nig3tNirqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"d089a14a15db9ed60685b8602b40f4dcc0d3fb3c","engines":{"node":">=4"},"gitHead":"7a05ce53bdffe6a06a40f2ede3478a8c41646609","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"4.2.0","description":"Retry a request.","directories":{},"_nodeVersion":"7.10.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"mocha":"^2.2.5"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-2.0.5.tgz_1495845365568_0.2770050645340234","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"retry-request","version":"3.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.0.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"8bad2b1dcf04938bb211e2ced862e591b82f1917","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.0.0.tgz","integrity":"sha512-HwKkZiijU6TMYVjYYKh5uiCE0IzKpZJpyDoWe9SxyvhLwetOYRaqW9vTq+WaxuwPZs6Bipjv5QzpEhDeqxIJOw==","signatures":[{"sig":"MEQCIQD+hiE9CkpR1U46HB5lYp6d4/l0GXdzfENMSdIFGg5mkwIfNS4JdKZzAA4OoJh/wcu5uAFNFQQVbdTy9u7JBxWszg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","license"],"_shasum":"8bad2b1dcf04938bb211e2ced862e591b82f1917","engines":{"node":">=4"},"gitHead":"9cd62903af0b8d530198ce57a5c1cb8277d518ae","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"4.6.1","description":"Retry a request.","directories":{},"_nodeVersion":"8.1.3","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-3.0.0.tgz_1499991658247_0.11736751697026193","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"retry-request","version":"3.0.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.0.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"e5dd0ae4e550609fd6b41ecddc63feadc6bfc78a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.0.1.tgz","integrity":"sha512-onLk382defO67uPRDc2VcvixurPnH2wNxQ6mbYQknO09c/U8Xz1S16NCnDrs8CfZv64rW81j3+9aryaM06vQTQ==","signatures":[{"sig":"MEMCIB0ZWL3VdJBYFejwEFP0OoIRBmMlVHvs00EBylXpQ4RzAh9GLHT8sKs2Pof7xr4elpfPlIyH7LJ2MSpXm/LzuOP+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"68d4642a4e83dd053ce32621a2e5eee95f6c7f56","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"5.3.0","description":"Retry a request.","directories":{},"_nodeVersion":"8.6.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-3.0.1.tgz_1507745153272_0.20745273912325501","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"retry-request","version":"3.1.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.1.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"f948ca1792657a64abc89a0fad727dd07b62b0d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.1.0.tgz","integrity":"sha512-jOwZQlWR/boHhbAfzfOoUn28EDDotW2A7YxV2o5mfBb07H0k/zZAgbxRcckW08GKl/aT0JtPk1NViuk2BfHqVg==","signatures":[{"sig":"MEYCIQCZ4J2ZPa2kyV8XA8V61u4VeE0E4CxuCfwV+RhYDwGDTAIhAIU0fUJny/3mWYsyL6mYwyvd0OVp3LIieNuYNtg0lgq4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"4181eec8187c3603d4e4e68db1ee6ac27725afa3","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"5.3.0","description":"Retry a request.","directories":{},"_nodeVersion":"8.6.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-3.1.0.tgz_1508441033371_0.27498407708480954","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"retry-request","version":"3.1.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.1.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"0c6ec046253f2f8475e9465c4eb58c802675014c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.1.1.tgz","integrity":"sha512-Sj3M3bC8ODJT+jfVxbTwvORRkFtc/AlDhhiMch5RJalLMAjz6+lIf5Q/Ox2esAM4tXcAYfG4ecNHPtaGNWIqvQ==","signatures":[{"sig":"MEUCIH+FLRBXKGwAzq2J5Kl1VuHFBcrx9e9LgKGGSHSSTyVxAiEA3iu7uo68jdITtc/+wx4sTmlyQMzGhNtvYo1VA8Rszq8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"048fa16d6a0fa2ef5b9c54cbd93f284e0efde7cb","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"5.3.0","description":"Retry a request.","directories":{},"_nodeVersion":"8.6.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-3.1.1.tgz_1509971802799_0.774577172473073","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"retry-request","version":"3.2.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.2.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"a0ef9f0c16206c49106ab6f9d41dec91c302b590","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.2.0.tgz","integrity":"sha512-QwzQvJJphYfwOfsLQACcTLx0d2kuHM5LB3CEPJG7urUbHYTbSf9jWW5XJtMFDNd1oylGOe77EccuLZzsPl+UnQ==","signatures":[{"sig":"MEUCIHPMthvihZdfk8rYxoPi2COmC8UmnioEdsquNkj+11OVAiEAoKLBrz/ha6ZvcKf7ASJN59w46kAVm/n1UD1xNV+43IU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"1bcc4485367ff29fab63ea5fb7a774a15776d548","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"5.5.1","description":"Retry a request.","directories":{},"_nodeVersion":"9.1.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-3.2.0.tgz_1512072753496_0.22255112323909998","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"retry-request","version":"3.3.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.3.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"ea28cfa47c9d1fa1eeaa3b1c968eecb18103b084","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.3.0.tgz","integrity":"sha512-bCbvtnZkfgB2TnbKMUUxzSR5W4AJQyMD6D6UcCsE/wBTVmlsS59OrDQr4RKV/Kq1hiIBmUYlbxd9MZ0cfpjrAQ==","signatures":[{"sig":"MEQCIE5TnmKG4tEPCaFqzCJSlg5NYw5OC6Uory/xOD3LrQOkAiASr0tgTr2lRNB9mys8MJvrt42tGCoozjNMQ5KDDBNNHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"1b666a7d9b75599a99e84d78ee96fa4376e53c7e","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"5.5.1","description":"Retry a request.","directories":{},"_nodeVersion":"9.1.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-3.3.0.tgz_1512155076566_0.8637452747207135","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"retry-request","version":"3.3.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.3.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"fb71276235a617e97551e9be737ab5b91591fb9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.3.1.tgz","integrity":"sha512-PjAmtWIxjNj4Co/6FRtBl8afRP3CxrrIAnUzb1dzydfROd+6xt7xAebFeskgQgkfFf8NmzrXIoaB3HxmswXyxw==","signatures":[{"sig":"MEUCIQD4QyofujxYF/4EU9HkW6CvPywGGj60Bu1XirKQQYuoGgIgQ2SxqmBackPo+cil0JIyHOxB3QXw2kyjB7U+XC7lPRY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"4620282a088fc0b5f6e91834d14b1415cfcecd08","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"5.5.1","description":"Retry a request.","directories":{},"_nodeVersion":"9.1.0","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request-3.3.1.tgz_1513100759160_0.2931959661655128","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"retry-request","version":"3.3.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@3.3.2","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"fd8e0079e7b0dfc7056e500b6f089437db0da4df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-3.3.2.tgz","fileCount":5,"integrity":"sha512-WIiGp37XXDC6e7ku3LFoi7LCL/Gs9luGeeqvbPRb+Zl6OQMw4RCRfSaW+aLfE6lhz1R941UavE6Svl3Dm5xGIQ==","signatures":[{"sig":"MEUCIQD9zNtuNHM5V59wBaz0QobdY/qdzHvU2c71+EZvbkBLYgIgXknxvGeAu5QYIu5HF6kWzcjVwv66lldBBtAEeF7QT+o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGtrlCRA9TVsSAnZWagAAQHwP/05/Gp5n0yVUmA9DgvqY\nBCqj2oiVoHZQ+3ysGgTlabxeVPSj7BFuTQvh8r2FS9V5LtHTzN9qHLfL0YFM\nHqeqKXRfgXDObuzhyvCJ+qlIuWr/5PTcLwFsLC3eKqugfaF4F9KGq0pBqUzM\nYHDE5lEh0XK6RMCL8NAPUn9AOnbYvKh/a34Eg44e199ljOVzNWIuyNuUUXEk\nFB2ohN7FYAQ51rlHW9F4kTsaWF1EkR+r6fjGEduvv0Dwc1T3VRcXLOzt6PwP\nNqVYvfgEK/RlUzME3FaKDIXTnwnugu5USXvjhRv7JuLVl178AZ3yYe6EROMi\nUEI0bgkTf28vI6CIwYPabsDUiD2AMvfVjQHx1x9NdIhEGk7dNhD1MCBpRt0e\n9JZwSuVmSw2I80EycrK5nfQ1Rr+RH22U8lIcHc5O6kfTt4Prh7rXEXDazL3s\n44akasfnzye3C+ZFLsKtZvVpPWVBraZNH0869YQ9yJtLVmjre/SsmcT2BS8o\n/4A4AbNXPEtO3+L0MK5XYrcHyeB1jTqZT4u/PznjRRUpdX1WxTrZiB3Is8Fs\nqa6jOCN4msOXM9ocUMMYFMsbO8dRQyaKanxrQGZmqWdSgT6foduQ+Fqs2P6n\nOz6nyB1dLx5N3vbUcStAsD9jnxPnRdB29f/i8htnO5267g04OlyPhXIuwaNX\nZxxq\r\n=SVPd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"61fd6e5e980b0303ba5b96ee61c0d7c3141e2b5c","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.0.1","description":"Retry a request.","directories":{},"_nodeVersion":"8.1.3","dependencies":{"request":"^2.81.0","through2":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_3.3.2_1528486627793_0.2896997556657017","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"retry-request","version":"4.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.0.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"5c366166279b3e10e9d7aa13274467a05cb69290","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.0.0.tgz","fileCount":5,"integrity":"sha512-S4HNLaWcMP6r8E4TMH52Y7/pM8uNayOcTDDQNBwsCccL1uI+Ol2TljxRDPzaNfbhOB30+XWP5NnZkB3LiJxi1w==","signatures":[{"sig":"MEQCIAHL9OuzTed/gSgj+5Y0F2QH+zzC4KGDqT1iY7OtnsT2AiBYUdlj7sqmbnFAy08hCi6HO6Cw2LSUHy+j6UqGMrGJKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11768,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHq4fCRA9TVsSAnZWagAAfH8P/iBF1C26mErNxL8jrISY\n3zGDX+K8tp0GVveN5VwSVAV0LaW3nR/Co9npYkpopGzGLLFiALqUmIoKf561\n6hMElJiTjAMdtTq6kiLj6cx/+8MqcYARibRJ7sT/VuDIGpWKOLOY4ldx/02a\nFw1skxRgeLB4o5Ipk29FH1h3pVwbnH8Qrp00GFVu8ubmSImRkIEhbeyWC0OE\nX5xRRjdtMwe/pCBW6VQJn79+VINLBdrWD/AFFhCxHLmY5Nn5ptsNcNqA00rQ\nyWRZRYMz7o4ECPnGrsDup8MkaHxlKtmwI3dy2fgad5XpOFExFFLxs5qMh12c\no0n6hXB0rrzCnzGCHGwaedOFVdPktLd2o7/MDvZT/X1YY1fy8Rn6GcQO3MGP\nRRrjz1Wr8T0ZMHCeVSW4hQ4ZB6YXadpeTP3qJZjw+aYARAUJcuj7Rewvwkx+\nDQCccug9b+qLIYJbVkuyfJkqRK8ry3PUUcay25VxIeTbK0Pok/p9rL4ST0Zt\ns6z0X1FH8qddLjAjlhfdFZh17gVE45jQlN8f90gYK8FPbdIq0WuH4crC8wGa\ngDZ6YKSXDyAjQMrtfbCszqto8D9RCyHF+Xtqa/9HHmrGUyFgkXeZz+u53C3d\nhoEGTuQtmFYqPBSMpJed6VuDyNK0YKdBI85bPJojKUZ9ACamXNc15XMMwTRN\nuFez\r\n=itAN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","index.d.ts","license"],"types":"index.d.ts","engines":{"node":">=4"},"gitHead":"48a8ec0ce54805ab8ea41edc8c89363a09c886d9","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.0.1","description":"Retry a request.","directories":{},"_nodeVersion":"8.1.3","dependencies":{"through2":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"async":"^2.5.0","mocha":"^2.2.5","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.0.0_1528737309101_0.39882222140196477","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"retry-request","version":"4.1.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.1.0","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"6c26e9cefe943d4aab51ad1e98a166b9e54c5b30","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.1.0.tgz","fileCount":5,"integrity":"sha512-N1tmpCMmDpDFVLSa5P5Y16I/rFj4mS9/Nl0adCkJmzTLa+ANAshauLnc3PCFBHE7y7f0i7XuT3HDd+jA1GYUGg==","signatures":[{"sig":"MEYCIQCbw/KSTMIt7McRrL13nURbBW+YTQSCgjDAaxiJZWEhsAIhALXLmSgkgz9+hk4OXlxWoCieKSJmzSUTVIJZ1IV7v1uO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCUC8CRA9TVsSAnZWagAACP8QAJxVXHem694J6w0K5NEJ\nSJfloy4EZIxQrjsKsuWZU9uXfMKSGSFgo3cK3BaezQ3xRqvzy8qmE6aAtKqh\nfaJb28fkvU8sArVrsWiPIObwNQh/qjVyHgqmzSHNoY/WktUWEnLHg9qEjkNu\nka6YlyZpaCc2tcxIxzmR6tj8nqpeYS3FxCKw20sUUYONSAB/HQFiv5sScPL9\noBRryr0aF5/iEVptYS9t3W2NJYMueJUpzTuc8Dk2r0SlQDOw/CK+PpbIffgc\nww6OA1+O+ZwGou/JMQYyYDP9MKkXDUjj/CnzRDdsfJpnB/GXCkR19BvbPjUL\n0IGTo5v130bb5pniaBPhCFW9eRUsIVqz9usPTMzX3bSBTGAgw61OpLseBzlM\nVtgAQfzoAc4wKUs5/f61OdTAR52XEdcVY6i/VZ6TC+zSWufLvcriCUsq0WUJ\nK6nd3ioRSqwqpb5GKYimdGh2osu1FVpjmUP/ph+RY3x/pxL7dcdTc6fGtShM\nnM1qg/eR+Pi6Xdrl4tOKPaycYws1rSqxxkI4Fw38GDziMnuxdcUQhi09lVdS\nhBpNuihxNRHwUTg9Rbk/LKfrm4JucMthap2StwKlktJk9m7q9Boec+UKeecD\nYEthcSRYw454KkRkx3Yfu/BcVnr8pMkX3cNfAnWaZaWozvAuhJaSyMq9+2sv\nXkmn\r\n=3fjm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=8.10.0"},"gitHead":"34a37c532ff351404f041b9ce130f92d001ae3e2","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.4.1","description":"Retry a request.","directories":{},"_nodeVersion":"10.15.3","dependencies":{"through2":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"async":"^3.0.1","mocha":"^6.1.4","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.1.0_1560887483610_0.03326186829623423","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"retry-request","version":"4.1.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.1.1","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"f676d0db0de7a6f122c048626ce7ce12101d2bd8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.1.1.tgz","fileCount":5,"integrity":"sha512-BINDzVtLI2BDukjWmjAIRZ0oglnCAkpP2vQjM3jdLhmT62h0xnQgciPwBRDAvHqpkPT2Wo1XuUyLyn6nbGrZQQ==","signatures":[{"sig":"MEUCIQDf6DjLBpbRwc8Lt77Uq3mfQWByr26c6PuM2zvlNmgqtgIgQFie6utUvkr2BNAwy4Z5WD3j90HAUSOmEDOpTEhIFpM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCV6ACRA9TVsSAnZWagAAuZsP/3raFK/UAjT7/KgPD4ga\nctk0QNqPh835phun4tjFEdbzSaC1gwTf1EH/EWSJyc2mzN2lBv8+1RR+lUd0\nVI9VS+0axegmV+IbxQrPkQ61UfG+xSnG2/sttMcp4JZXfP03Z7rNxL3O1WEf\nsCvvcNPUd73Qxsj+e5zOazbZeuOVCCdYPTLL2FrwpXD3Uk2G79WTsF2qK3YF\nxSnEKi9TQcuUpcQSkMZSf/brtz47bbFvglviTUEkt8v61JVSSu47gb6edW/2\nnV/lxPUkYA9+JJjwkHaqQZW209NL09QV1xN97FJHi9BWfbpkiNeGOq2znH1g\n2Zd/TeI5vWhe+Pcza0Byi8xCC14Tg43ZXpR5wcSq2L6YUagFQkEBpDlSyaj5\n68XsTK1hDf3fqcDuqYz7ShxMkgq7enMTblXxwEaxHgZuDDFWPB6La01abgz7\nZpEH5D2AvTxIasmPkznNWZDhuafgy75dol4NB1yMtJ1HXQqyCpbNvk5CXzsB\n2A/0XaKxtTod14vakQuhy0+xqolYd4/2fmUiGhLjhB9UcTaikKtFLEJy19Yy\nzvjVlaM8L5JdycrFebeuRBKXxaXUhMOYVwHwUFr2SUBGuPOuRNA4pISD3UVV\nhCRrRxDiM6ZYDjpLF4Y73TawBCMP79vdPhR4qazXNW+h22k/j98ZE0b3ZjrS\nLlfn\r\n=czpS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=8.10.0"},"gitHead":"6f69c95dceada6b4255c148fbd27c4d530fcec3e","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.4.1","description":"Retry a request.","directories":{},"_nodeVersion":"11.4.0","dependencies":{"debug":"^4.1.1","through2":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"async":"^3.0.1","mocha":"^6.1.4","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.1.1_1560895103562_0.976871618711407","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"retry-request","version":"4.1.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.1.2","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"88eb28ba5b0b81c3692f03dd9f2f91868be2a30b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.1.2.tgz","fileCount":5,"integrity":"sha512-fa4OwUcplhOYIhTm7zt6xsUfoApWo+auhvxbpPR4XLxHj0k67MhPItpCzYWzOEjtJlCH4MJ5V0qUrXiu/pOpag==","signatures":[{"sig":"MEYCIQCl8H//goFaT4H7WNvQqA8gecV6nJnelDiG3vYetzyLdwIhAOftNCd53Djm2yaTx6B/oFW9y6w5sI86OcdkkPILPmrK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12865,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJFA6CRA9TVsSAnZWagAAv2EP/jZMZ827aJoOTXcU9Pmc\nQBICjlDWx3QglPbSvf9NypdvTFHYcSBG9F+5viZf115049Pn1Hv9bJzvz+xm\ndWjmquuEoNNrT/ObG0kx0FrFu30ht+MBQmASa4RokXEIFsIj5cYSX0e4ZWv1\n3SJgAHod7nBhOK35ZFjmKpUll4bprgp0GFm53lM2BpnxNLpfunhKpiCHLy5t\nbhMnwd4G3AYPetyR7LBaXyN6Waw/SeZoFhru6y3nLkws8OXs7Y95vcDUY/qD\nsR+WcInPcx5V4QIn+7akiDphmZcO/+uvqSN0Sm9jxDuLvp/6pQHOy+JXJH8x\ngOOO0yA3l6Xw/Z6AwywpIP/zjRf4dKo4IfGGYdSFIbteVBHvxd8I6bFBS/N5\nsA1FLUJ2j/DVmi3wwyFRyO/rBq8CVgfm/uCDc8WyRfkP7ynlwglkKYdQE7tE\n0CVg8KQ2GJq7EjgChIXYFkppKrai7joM9qh3lLZS0KlH9FqZDh/fTDAEpnMq\nIoJv7igsuhc8Q/e43QgqlVpV1+agS8Kcr86GxfJ4Dx/Nfs32iaMuOD5Wol3C\nkKZe7wiodwJIrTZsUr8Mhxu0/Mv1ewra+3TJH+VeBTPvrlJXfJKNXIbmCPgn\nRP00Qy1iZkwXdMoiOfNtEQQZ5im9VEpxJspwiPVs5t5GK7tOFhgorB74/LoJ\nTJrU\r\n=lH1a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=8.10.0"},"gitHead":"e81496d26ff2ce5bb8ffcd066d01b6f578e855cc","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.4","description":"Retry a request.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1","through2":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"async":"^3.0.1","mocha":"^6.1.4","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.1.2_1596215354347_0.04051599720310928","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"retry-request","version":"4.1.3","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.1.3","maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"d5f74daf261372cff58d08b0a1979b4d7cab0fde","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.1.3.tgz","fileCount":5,"integrity":"sha512-QnRZUpuPNgX0+D1xVxul6DbJ9slvo4Rm6iV/dn63e048MvGbUZiKySVt6Tenp04JqmchxjiLltGerOJys7kJYQ==","signatures":[{"sig":"MEQCIBklYAA2UPIT68j95fyplMn0OLbxn+MoYWAXTP/TxUBSAiAUCUIu/V2/Y4e1GSzJsJMzlAlZTsrm37cKvmu88FiAAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12861,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRrLpCRA9TVsSAnZWagAA/JMP/3oDnPmoLtJ0zZ4aBU5P\nvzmoS6fvlwGQqMRekwZuzxl7+YD2IJcKeQHe1AwIUVU9UaZuHJpE5/q+4KP0\nsK4rcDFmrWDspu84jae58oAW2cZIrbHm7Qk0trCAdDQQ8rEG2lfX3viHDFSu\nN0iTrr1eO8nj2cpE/ZRDOmX1gkKd1BQNRjJCnE3+ACyXnWp8v1dprtqNghPe\n6fjjwUMhCfuU5fePxIAGi+yQOPEmbM6fjUOjKNzMvkMU4Q2VkuDUWVQ1jVlr\nku3OU+DatjDfIPJC6C8QQSI5n5c5cqp8WBo4VryP6tUmuMpwbT3JSGNOY/JD\nwLGapGjT0xpFS3oU2aDouYc4NDCG5C/qAvIEJBNMxNMdrZyVJ2d1wrht5Ik8\no3HwnrM4DfqLfz2cZ/6IY+X5eTwMw2IJvIMFVZJYDo9dfjsI3KL1VhqUCB+5\nTk31okQCkh9S2BEniCYyn2eihAKhdZaDQeqO548Q6Crf6EduwH52nRE4QZqe\nF7nhwWQHcEbdffu9E8WbSCXybPU1viyitAdCB5kHsWnYgW6cep1PN8gYIyyj\nu5QKnpO4nrw6NlFlxzgY/4spG4FYeHg4floMyjXAwdAoswZNxcxaUQ1ZRUnZ\nUgZ3bWFySIvI4AF6wFpWlLgHBqB7sRaaT+7YNEH35KaIuJJXPFmWBh+p/M37\nQWFw\r\n=CgyJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=8.10.0"},"gitHead":"8df98870e14ad0a3e99def6a74b50c5e996fd25a","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.4","description":"Retry a request.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1"},"_hasShrinkwrap":false,"devDependencies":{"async":"^3.0.1","mocha":"^6.1.4","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.1.3_1598468840509_0.5831471935309511","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"retry-request","version":"4.2.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.2.0","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"b693d7fb8eaf02fcd90127c8f51360d96bf24981","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.2.0.tgz","fileCount":5,"integrity":"sha512-rIwHm2pipUX7MFTpscNr9CNfOsW3gzcosqUOvS7MbuURgdDeIzNVjA/sNgs4BTt0g3L748hB7Q/Yt6StRFHD4w==","signatures":[{"sig":"MEUCIQCR8EoN9xlPn9dttrBo2w4xjTr339qAxy2bS8gNQhK20gIgIOl7zkqIEvYPBHgZRYZc0IoicTCVde/C1rIG5j/Uv5g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14669,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1O11CRA9TVsSAnZWagAAy6AP/jeMNpgqm19WK1otMY2k\nWuo2UODV8zca+fLa5bg0TdbJ+PE7Xg7Kxh+o8+lxG7KPNhn9JI6z+U+94Zkc\n0XojAhnv42nEOcEOoKykI5XI6FvK8TAECiNcDyWdaGugPM8Lk7UDPyV50s9Z\nSi3mPB8Zpr9u+xTVQ2HqnW1QD+lJVT4uXbWyQ4CupxC0bTtmjVSEVxo+nz1t\nyBvfPgyjREMmHn11M1ar9HcSNSqWFsMU/XdbVsuH7y7p9id7xykDDaxzTOAp\nIMmavqN8HB1HKfEnvbxcGG7dHIpaY1SJrJ6rdqaA+0BvQMzyX6MITis2PRzW\nzkqi96uEsEu3Aa5/9bByvpQXpZYejzBsd9nPbQvYKXMRCh4uoEkmHCB/LFGo\nCce0+0bHeVUybNJCbGtRgxEpS1zyYhheHHCNVS0z/ff9jqXAsUc1KaTtj815\nj4yHvfO+OUMe0tgoGrvvv7v/1ckmASQxOoM2JWEn1u2h53PV89j+yO5Xr2+D\nXAtDKaSnCHI+wXKFt3q5wiVFcIyu3yX6shpwbcchRKDLxbtTjoLW1Sp+FgYN\nIi2h3Luaim7SAlO2Vky4bM93lwq+hOgPVDrRXNDWiskOuB995SpsIA8GArtw\n7GVv/KG5fUUhUnEybsv3UXfS+yBbgo4WHcrFSR7dEBxViwXgd6Y0N4CqSFKC\nk45y\r\n=1hDt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=8.10.0"},"gitHead":"1f653070a5428b6447becd3c50d767f6397c2193","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"7.0.14","description":"Retry a request.","directories":{},"_nodeVersion":"15.3.0","dependencies":{"debug":"^4.1.1"},"_hasShrinkwrap":false,"devDependencies":{"async":"^3.0.1","mocha":"^6.1.4","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.2.0_1624567157340_0.8607792621168171","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"retry-request","version":"4.2.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.2.1","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"e1e2c93e98d27a23799d3a7b347c0ed8ef52d6aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.2.1.tgz","fileCount":5,"integrity":"sha512-afiCoZZ7D/AR2mf+9ajr75dwGFgWmPEshv3h+oKtf9P1AsHfHvcVXumdbAEq2qNy4UXFEXsEX5HpyGj4axvoaA==","signatures":[{"sig":"MEUCIQDq5DqcWe37S5Adzq1MdEMv8D5mfneNTjUMQD+lFRnHxgIgD8kBXO9YOC9K/ADGwNt9aHgVqcA1lW3y0OfN1y/qHgk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14765,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3GbZCRA9TVsSAnZWagAAf9AP/RRiceTGEDAzu0BP1EZ6\na/eUHH0Mr3rOFi5bZLHiGA5JZlXFsdWw2b+hwuye5i6s3nWv1NpsDzPK+7iM\n4XB/+V3E3o5XBksySUFFpqkeCOkPiXHKEDwcYCRRC647jOrzGZwUsseRBr1L\nFzcYS15bkLGU+HwYRL66FNspXjx0iNoghLNKogz3yyXT+FvYqMfkDTByBvf/\nAk9Fb/rsQgzgXdCigzu+KCCP50BAU9LMfdRwbZnJvh60+sL/6ewGZHSPzrTR\nnsXmlRJ1u8SdwXHRthqPby09SSK+YJDyKuz/1Bygw/DKPD6knNsZfDmALTl2\n8AUwkZV5PGNDYUP534OFdUSRFtyr2iY+7gYylX1GkL97kuy8luQh9DvdDNXz\nRAwKJAdMAkTuRPIRs14kKCjhFgm3D9Eq5zKWKzatuTEMkogax/8wpHkYC8G6\n+DMn9tPhs+FCLEZ6kpGTc5h8/bbz0YfBIC/0+ZtQgFfZ31nrdEx5ynODQwXh\nfJiRIFddRcOVBprOXBrA6QQh58cHZaIGwcKyOaxoL3radLZSr7aTtAJ2IeTy\n3623EuRh/IZDKTycnBHzDZvBdvCuMMwEXyuVFTkDIOuI8vIyehuXJyMMl9sf\n9GSeJot+LuyesYkXiVmV0VmebB5bTuTDX09nbgNNmuGwqYX21Ad9HmrzOZ/U\naRWb\r\n=4p5p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=8.10.0"},"gitHead":"ed00e63c605c52f7bb1e9a6f91a03144765fe926","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"7.0.14","description":"Retry a request.","directories":{},"_nodeVersion":"15.3.0","dependencies":{"debug":"^4.1.1"},"_hasShrinkwrap":false,"devDependencies":{"async":"^3.0.1","mocha":"^6.1.4","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.2.1_1625056985127_0.4912111849802332","host":"s3://npm-registry-packages"}},"4.2.2":{"name":"retry-request","version":"4.2.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@4.2.2","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"b7d82210b6d2651ed249ba3497f07ea602f1a903","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-4.2.2.tgz","fileCount":5,"integrity":"sha512-xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg==","signatures":[{"sig":"MEQCIAZSQE2DKZgMH1POXPR+JzjfDFMDVcOXoiC6l5AFfbxCAiB8tdcBWzkabTk0QI8L1t3vVLlMRk/aq7ipUt+PphdmPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14814,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6Ka6CRA9TVsSAnZWagAAfMcQAJfhAwnTWMIknd+d/bOO\n/LiZbj/SNVhVOYsT9mnmbvXXCBTUmlIIPXgoO02R6/SvSQeI099mhHJwOQWV\nztMjmNWJDwLuU8t4kJXBqOA7JR19mFgtQnbooY52+GN2NCRsQTvswZR3I9Vg\n75gboGWgBpxTAm9UttdAKvd8SfIJ5LSP8lHbpYeeLIVasDFt3Xk7HxVEy3D6\nRLqmatfBto3xEn4J/3elzgMI/A8gKW4iULoUUyO7jGzLGkzrBC46c5+mz6Gc\n95BV63tjTOp+sp+Hib8JqJoE2uEFFS6uZfyC0mMRrlb8+p1MIblKZUE+3NFv\nFc2uwnZVpxqJ8am09JZtAFQ4U57QXmx+hiqfroxtAJ7bRBVChPesgBEzQHWX\nQga/3DWCJCs4Ulrvf7mZ0yT/32DgjItiSeG4gMYS9OgP452aGl4SaNUeI1xM\n3bc3EqgH4BCSWSIu3JHm5pvCkQOlWTOzeUQmhz2ox18N1FoJxb762EEiiuse\n3Nvz79dqxJfrLvEa1h2ip6wAN+S+kZNe3VHYblSS66gLIYpcCioPU5ROIDPd\no/J23lQNCcgsRjqEkQbV02KNfCjZUcR6Yq8jmL3voZyYpuq3bYmjukmwqqx2\nfqavHzE3/0akyVxU0wdxPU0y7FGiVfxwfCO/dy8YGrjicyyeRa3r2MMFjnC5\nrULw\r\n=NEWu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=8.10.0"},"gitHead":"f06f6351bd1f4d635804fb1c77e14984f2c9b2e4","scripts":{"test":"mocha --timeout 0"},"_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"7.0.14","description":"Retry a request.","directories":{},"_nodeVersion":"15.3.0","dependencies":{"debug":"^4.1.1","extend":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"async":"^3.0.1","mocha":"^6.1.4","request":"^2.87.0","lodash.range":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_4.2.2_1625859769887_0.18863462452363255","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"retry-request","version":"5.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@5.0.0","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"886ff8ec0e77fffbe66a4d5e90fd8f6646b6eae4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-5.0.0.tgz","fileCount":7,"integrity":"sha512-vBZdBxUordje9253imlmGtppC5gdcwZmNz7JnU2ui+KKFPk25keR+0c020AVV20oesYxIFOI0Kh3HE88/59ieg==","signatures":[{"sig":"MEUCIQD11mLxugXJfCvM5BoljpM+/J8j6ARb5PGptszJKuomSAIgfIQbC7mvlWZ6ko0s4XqMvIJgaPULBiu1N72ZCiCAeQI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieW63ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo8EQ/+P8jwl9er493pAiERl5GowNRCUk2ZuhweCA2uJUUCEQ1cOYMF\r\nwg1d1ZpmTRWzlKW/6aar0oTSQWXzxgb7LYI5zbP6L1DpA7TH0aEjA0TmwEzs\r\n83S9a17U8udbsPIJ/7yswowg706VHHaKlw6Huxb9TLqb62lJkzb9NHEo0goA\r\nPc9luEZ+rMeJhQAvTtSP0/qb110O0PJ4Wp9p9WNHBoovMSwpKFnIoNyVyfUp\r\nof3X101pCFRPdLbXJD6xvyglPEGJJfxL7Yro3dL48XuVXkeBGai6vi/bl/k4\r\nO9nn/imaIHOjAe56CeiCx9Azip6RPnJ/uRb2LCSnVbPSsoa4MXFhZZvF3df6\r\nFxS/PUvRW1xH/Gi6ZO1CyoXe4SnrbLC4zGdtv67a3HsrYtSUc3G/7EjCqJZE\r\n/5+C7fm8E1Ytdlg7C2zvfsH0AOLB62pQro6iV4TjEYsIzZSX9G0QaIuINVCh\r\nUtjqP9fJQQKShrUm/nBU73VxN6n54dXlTA+wiGSyIQgOHOCL9Pq5woGvk+n4\r\nbiSPk7EzY8OFACLUkMhq6AK4yUCx/QfRveRqH5mH1I1ZUGEPBR127BL7UOo1\r\nr2HwW+bCeBOKxOIrNUhO4ZlDt54NZqc0Ej9HM5nNg3uJLatzaOeTgYoGvzkL\r\nqrt31WteMEnGO/xpFmt5tr6Pxs60IG06qaw=\r\n=hsCd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=12"},"gitHead":"c8da29d4208ce96dab38d868325cf970cbe1ce92","scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 0","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.15","description":"Retry a request.","directories":{},"_nodeVersion":"12.22.7","dependencies":{"debug":"^4.1.1","extend":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^3.1.0","async":"^3.0.1","jsdoc":"^3.6.3","mocha":"^9.2.2","request":"^2.87.0","linkinator":"^3.0.0","typescript":"^4.6.3","jsdoc-fresh":"^1.0.2","lodash.range":"^3.2.0","@types/request":"^2.48.8","jsdoc-region-tag":"^1.0.4"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_5.0.0_1652125366952_0.22714214585319104","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"retry-request","version":"5.0.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@5.0.1","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"c6be2a4a36f1554ba3251fa8fd945af26ee0e9ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-5.0.1.tgz","fileCount":7,"integrity":"sha512-lxFKrlBt0OZzCWh/V0uPEN0vlr3OhdeXnpeY5OES+ckslm791Cb1D5P7lJUSnY7J5hiCjcyaUGmzCnIGDCUBig==","signatures":[{"sig":"MEQCIC9PqZD9yOZRvc7th7dyogv1f3PSixybCmmRLnOq1JkeAiBQxTUVL3apwv5cbrEicT9L+2+GqgTlGSkB7Fu2eSeg8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29007,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip8KdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHCBAAghxIDvVQoJMiGuXo5arnQLlzMSHTeGtlkWOanPM/veHo/jsn\r\n0bryfMdI8xsX36IDf1gnDGzwGPKi9kwWci9y0XvzMKQektkcCbHLJ5qpm+J/\r\njUkLFwzV9phtqIPWGwxhYxrhsN6l8o9EA2Tr5Rxu5IVt1skTWxdlEQ5J7gLN\r\n/hoqjL3VRahzmRQ17UjXXqlqpX0l9gMuiNhD4tVPX6EEciu0yTpEgdvfwyMl\r\navPr52StshXvLVgPoyVd5p4csE0Fyvma1WG/k/vsv+AsaYulxYfqpurbH6gR\r\nUWwZRbeezKcVJUQgigCYZDmBFLHotv+9FHJrQ/qMEB5B6F1inCLXZ7DIW+ev\r\nJOH6t8iFUxTtJTr9F5RV91JjTwV1J28q7gDx+4x+G1v572qIn/2hi0dveJax\r\nt4xnKs1N8JGBkskr/PCeTDQpdT79Vx94Nn0uvJka8ZlDRP+m51Mt9PEz3W+t\r\nsIim8x6GBaZr6brb06KWMPF94WRDBQopFqhhSHdi2HnlqQ45OrDX/tQkzR0/\r\n6fnJhyI2uH+Owqir3i1wMvn2ApEyv3mmD6as2sGIEYuXz3EPS3iPrvLp0CZl\r\neAnTwEpX2y39WG2Xk/Uf9kCS9xHUZ0V1Qane6kGE0Jur2TGWu638DCc9IbM2\r\nCi4HXSNaxiAaNmNQhzIrXSMd7rCF8EIrz0w=\r\n=bigz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=12"},"gitHead":"49650b66b97ea9630784db606f4e915c0998e7b7","scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 0","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.15","description":"Retry a request.","directories":{},"_nodeVersion":"12.22.7","dependencies":{"debug":"^4.1.1","extend":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^3.1.0","async":"^3.0.1","jsdoc":"^3.6.3","mocha":"^9.2.2","request":"^2.87.0","linkinator":"^3.0.0","typescript":"^4.6.3","jsdoc-fresh":"^2.0.0","lodash.range":"^3.2.0","@types/request":"^2.48.8","jsdoc-region-tag":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_5.0.1_1655161501649_0.31478232641082027","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"retry-request","version":"5.0.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@5.0.2","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"143d85f90c755af407fcc46b7166a4ba520e44da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-5.0.2.tgz","fileCount":6,"integrity":"sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==","signatures":[{"sig":"MEUCIAnFyZnnulb6xj1bY5KyGMcSloocTGhrLfOAPt/Zts6YAiEA0h97JeIi0lvo6NnUWUH8aP5mh8094bu0uf+0Zs6LANU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIjJyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/+A/+Pkz7MAe0HsTTFh4N4ng6twkpm59i+C1K6dXlRVI0IeSnObE1\r\nDmqlGfW5S3VX0LKs2dt9zy+wdop0bN7oKQnJEGZ1Yo5Nisryau8pxczJUJhR\r\no20degpiQ0K1qQjqGCpRmndHtmjx7rko3G5gG7cADATRda7CpOVaoravfjM/\r\ny6+ZMNGpoJSZqSlrwrgo/G/CS61VWh1Nsmdcse5SHu28GHFeJIUCisSyEFbi\r\nkMQKebVPI6lIQyF+4Yd/aUPkNHSefEtKnSxlBr8jC3W85C18lUTZ16s1kuiL\r\nOAucD+jSLCRh7vefJN0tB7s0OjHH8veYlCDBANx2OYXmu0C9zPPZ7F9NfdDh\r\nVtAaK1nNBAdfw97SRJBVmGtrCsTN3dgPYwtg7pEF0xvGSTSJQW0R+MKLFgru\r\nJaf6WnuObKXkywAeoQSmR2IUnne5uBvPZ2Sn35WtbeayCDMsGXo97yEO2G7p\r\nG3K9d53mwcY5ev1wjoUQKqVnXWpjsb2TgWpUymK1vYv+5yFPrVzLDIrIjahA\r\nda0JqXURFc8BwcsTXtFuN+L3/MZwlW2GuBKBlymsRFDS1PCiEmOWoHvBNp2i\r\n/ivPHw/tOnkFMLdF1qPjCafENRauBMh4/8LlQGmTltZRfSUfGnLTikKlMWgh\r\nF58sx9ldOf88bPApLzfgpovMSppGlWZYtJw=\r\n=2E9M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=12"},"gitHead":"7a0c8cbbd1787f18e64601c08bbc1b45db91dbc2","scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 0","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.16","description":"Retry a request.","directories":{},"_nodeVersion":"12.22.12","dependencies":{"debug":"^4.1.1","extend":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^3.1.0","async":"^3.0.1","jsdoc":"^3.6.3","mocha":"^9.2.2","request":"^2.87.0","linkinator":"^4.0.0","typescript":"^4.6.3","jsdoc-fresh":"^2.0.0","lodash.range":"^3.2.0","@types/request":"^2.48.8","jsdoc-region-tag":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_5.0.2_1663185522283_0.004076846610191698","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"retry-request","version":"6.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@6.0.0","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"a74dbbab421b51daefa20228f6036e6e2a0f1169","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-6.0.0.tgz","fileCount":6,"integrity":"sha512-24kaFMd3wCnT3n4uPnsQh90ZSV8OISpfTFXJ00Wi+/oD2OPrp63EQ8hznk6rhxdlpwx2QBhQSDz2Fg46ki852g==","signatures":[{"sig":"MEUCIQCFp221znEnTvMgznL4JmHKsChZjHCTfDSvEADDVzMxMAIgK2l8F/QElcgGNqwcQc1vpsOfEN24AAzor/lQhc/bn/k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18996},"main":"index.js","_from":"file:retry-request-6.0.0.tgz","types":"index.d.ts","engines":{"node":">=14"},"scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 0","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.18","description":"Retry a request.","directories":{},"_nodeVersion":"14.21.3","dependencies":{"debug":"^4.1.1","extend":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^3.1.1","async":"^3.0.1","jsdoc":"^4.0.0","mocha":"^9.2.2","request":"^2.87.0","linkinator":"^4.0.0","typescript":"^5.1.6","jsdoc-fresh":"^2.0.0","lodash.range":"^3.2.0","@types/request":"^2.48.8","jsdoc-region-tag":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_6.0.0_1689880235904_0.966685313230198","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"retry-request","version":"7.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@7.0.0","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"358d9792aeb1a73d6e7c9251deef2e01fc62b46c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-7.0.0.tgz","fileCount":6,"integrity":"sha512-h+V4RezoH7nR/QMG7Y0AnHlG9piXpGmMmkh1xTB4t7X8pNNAMUOHfKLBAOzGsIdPNCzpiL4kV1GHrXI3OmgdEw==","signatures":[{"sig":"MEUCIF/8oapnZSsqwfXVzVWAqdqpBrcSfBuZW4fv7kPtow73AiEAwkpRC7dppLsFjaecVVGTBojuaiIcLNoisAyAX1fB+BI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19727},"main":"index.js","_from":"file:retry-request-7.0.0.tgz","types":"index.d.ts","engines":{"node":">=14"},"scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 30000","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.18","description":"Retry a request.","directories":{},"_nodeVersion":"14.21.3","dependencies":{"debug":"^4.1.1","extend":"^3.0.2","teeny-request":"^9.0.0","@types/request":"^2.48.8"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^5.0.0","async":"^3.0.1","jsdoc":"^4.0.0","mocha":"^10.2.0","linkinator":"^4.0.0","typescript":"^5.1.6","jsdoc-fresh":"^3.0.0","lodash.range":"^3.2.0","jsdoc-region-tag":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_7.0.0_1697043815019_0.24795500665180525","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"retry-request","version":"7.0.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@7.0.1","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"b0163aeb934bd3fa2de76902d683b09b8ce364ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-7.0.1.tgz","fileCount":6,"integrity":"sha512-ZI6vJp9rfB71mrZpw+n9p/B6HCsd7QJlSEQftZ+xfJzr3cQ9EPGKw1FF0BnViJ0fYREX6FhymBD2CARpmsFciQ==","signatures":[{"sig":"MEUCIQC6u2gplM/nItYyAecWDnUQ7je2QDMKteV9hu1al0yxKQIgC8lA8JIt5N5clrfO7n12mf+VQ1wn6nr8ZIHdj3ANSRI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20273},"main":"index.js","_from":"file:retry-request-7.0.1.tgz","types":"index.d.ts","engines":{"node":">=14"},"scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 30000","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.18","description":"Retry a request.","directories":{},"_nodeVersion":"14.21.3","dependencies":{"debug":"^4.1.1","extend":"^3.0.2","teeny-request":"^9.0.0","@types/request":"^2.48.8"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^5.0.0","async":"^3.0.1","jsdoc":"^4.0.0","mocha":"^10.2.0","linkinator":"^4.0.0","typescript":"^5.1.6","jsdoc-fresh":"^3.0.0","lodash.range":"^3.2.0","jsdoc-region-tag":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_7.0.1_1697141765249_0.5350300377392032","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"retry-request","version":"7.0.2","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@7.0.2","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"60bf48cfb424ec01b03fca6665dee91d06dd95f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-7.0.2.tgz","fileCount":6,"integrity":"sha512-dUOvLMJ0/JJYEn8NrpOaGNE7X3vpI5XlZS/u0ANjqtcZVKnIxP7IgCFwrKTxENw29emmwug53awKtaMm4i9g5w==","signatures":[{"sig":"MEQCIDpHXzkWTo8iiq8Ifq9wtlBg1sClF1gUQVdwQcFytizsAiAVHMva0mWeo5fJPWd8r6QqIPTWvPfUFAY6s0Fm/hCxsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20577},"main":"index.js","_from":"file:retry-request-7.0.2.tgz","types":"index.d.ts","engines":{"node":">=14"},"scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 30000","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.18","description":"Retry a request.","directories":{},"_nodeVersion":"14.21.3","dependencies":{"extend":"^3.0.2","teeny-request":"^9.0.0","@types/request":"^2.48.8"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^5.0.0","async":"^3.0.1","jsdoc":"^4.0.0","mocha":"^10.2.0","linkinator":"^4.0.0","typescript":"^5.1.6","jsdoc-fresh":"^3.0.0","lodash.range":"^3.2.0","jsdoc-region-tag":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_7.0.2_1705693829220_0.9914344639520905","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"retry-request","version":"8.0.0","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@8.0.0","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"91c847cb648a049c14f0cb3322313d091d2445a3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-8.0.0.tgz","fileCount":6,"integrity":"sha512-dJkZNmyV9C8WKUmbdj1xcvVlXBSvsUQCkg89TCK8rD72RdSn9A2jlXlS2VuYSTHoPJjJEfUHhjNYrlvuksF9cg==","signatures":[{"sig":"MEYCIQD2BmL4ZTOZRVIp2U2ZmtADIsK/GKrVnzr69GvBgF3+twIhAI0AxAuYmURrGH076ozW0FYryhrsv6w5qTjs2lF1Rak/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":21177},"main":"index.js","_from":"file:retry-request-8.0.0.tgz","types":"index.d.ts","engines":{"node":">=18"},"scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 30000","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"6.14.18","description":"Retry a request.","directories":{},"_nodeVersion":"14.21.3","dependencies":{"extend":"^3.0.2","teeny-request":"^10.0.0","@types/request":"^2.48.12"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^6.0.2","async":"^3.2.6","jsdoc":"^4.0.4","mocha":"^11.1.0","linkinator":"^6.1.2","typescript":"^5.7.3","jsdoc-fresh":"^3.0.0","lodash.range":"^3.2.0","jsdoc-region-tag":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_8.0.0_1739924998371_0.7871213788447049","host":"s3://npm-registry-packages-npm-production"}},"8.0.1":{"name":"retry-request","version":"8.0.1","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","_id":"retry-request@8.0.1","maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"homepage":"https://github.com/stephenplusplus/retry-request#readme","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"dist":{"shasum":"4480272b4265776b7bb57029fe20fa28ba83d330","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-8.0.1.tgz","fileCount":5,"integrity":"sha512-5sR3yWYODO2MTxsKjbCYFQUiXTbAe+83BV8NOB97lz6AS790OBQRUnPxT3SpxNYHUKNnYPwalk1UxuaALLJ77Q==","signatures":[{"sig":"MEUCIQCx4sn5Um0pavj5KFzmriiSkkJ1A5P5EwdT/zcXwtGxzQIgFoFkoPYGqo9zPa3Dgi62CcjedhIadGlkXbwuQKw4Pl8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":16148},"main":"index.js","_from":"file:retry-request-8.0.1.tgz","types":"index.d.ts","engines":{"node":">=18"},"scripts":{"fix":"gts fix","docs":"jsdoc -c .jsdoc.js","lint":"gts check","test":"mocha --timeout 30000","docs-test":"linkinator docs","system-test":"","predocs-test":"npm run docs"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"_resolved":"/b/f/w/src/git/build-dir/retry-request-8.0.1.tgz","_integrity":"sha512-5sR3yWYODO2MTxsKjbCYFQUiXTbAe+83BV8NOB97lz6AS790OBQRUnPxT3SpxNYHUKNnYPwalk1UxuaALLJ77Q==","repository":{"url":"git+https://github.com/stephenplusplus/retry-request.git","type":"git"},"_npmVersion":"10.8.2","description":"Retry a request.","directories":{},"_nodeVersion":"18.20.8","dependencies":{"extend":"^3.0.2","teeny-request":"^10.0.0","@types/request":"^2.48.13"},"_hasShrinkwrap":false,"devDependencies":{"gts":"^6.0.2","async":"^3.2.6","jsdoc":"^4.0.4","mocha":"^11.1.0","linkinator":"^6.1.2","typescript":"^5.7.3","jsdoc-fresh":"^3.0.0","lodash.range":"^3.2.0","jsdoc-region-tag":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/retry-request_8.0.1_1754355592608_0.8635532377776356","host":"s3://npm-registry-packages-npm-production"}},"8.0.2":{"name":"retry-request","version":"8.0.2","description":"Retry a request.","main":"index.js","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/retry-request.git"},"scripts":{"docs":"jsdoc -c .jsdoc.js","predocs-test":"npm run docs","docs-test":"linkinator docs","fix":"gts fix","lint":"gts check","test":"mocha --timeout 30000","system-test":""},"types":"index.d.ts","keywords":["request","retry","stream"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=18"},"dependencies":{"extend":"^3.0.2","teeny-request":"^10.0.0"},"devDependencies":{"@types/request":"^2.48.13","async":"^3.2.6","gts":"^6.0.2","jsdoc":"^4.0.4","jsdoc-fresh":"^3.0.0","jsdoc-region-tag":"^3.0.0","linkinator":"^6.1.2","lodash.range":"^3.2.0","mocha":"^11.1.0","typescript":"^5.7.3"},"_id":"retry-request@8.0.2","bugs":{"url":"https://github.com/stephenplusplus/retry-request/issues"},"homepage":"https://github.com/stephenplusplus/retry-request#readme","_integrity":"sha512-JzFPAfklk1kjR1w76f0QOIhoDkNkSqW8wYKT08n9yysTmZfB+RQ2QoXoTAeOi1HD9ZipTyTAZg3c4pM/jeqgSw==","_resolved":"/b/f/w/src/git/build-dir/retry-request-8.0.2.tgz","_from":"file:retry-request-8.0.2.tgz","_nodeVersion":"18.20.8","_npmVersion":"10.8.2","dist":{"integrity":"sha512-JzFPAfklk1kjR1w76f0QOIhoDkNkSqW8wYKT08n9yysTmZfB+RQ2QoXoTAeOi1HD9ZipTyTAZg3c4pM/jeqgSw==","shasum":"c9b247b79e6347eb7cbae0cf5f1b981b87c29083","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/retry-request/-/retry-request-8.0.2.tgz","fileCount":5,"unpackedSize":16148,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCoYmF0hBF2dnmEMVmGM1atmvSXy6PaWvp+wUMU9EkkigIgF67Y1iDcdBpuBeCsCmK4QkzQkHxX7Vv4+/WSPz13vKQ="}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/retry-request_8.0.2_1754590512307_0.197268254935842"},"_hasShrinkwrap":false}},"name":"retry-request","time":{"created":"2015-07-07T20:20:13.134Z","modified":"2025-08-07T18:15:12.672Z","1.0.0":"2015-07-07T20:20:13.134Z","1.1.0":"2015-07-09T16:30:54.873Z","1.1.1":"2015-07-12T23:42:15.406Z","1.2.0":"2015-07-16T14:28:17.570Z","1.2.1":"2015-08-19T00:36:07.498Z","1.2.2":"2015-12-09T13:22:43.686Z","1.2.3":"2016-02-03T18:17:50.085Z","1.2.4":"2016-03-25T18:06:17.292Z","1.3.0":"2016-06-15T13:16:05.673Z","1.3.1":"2016-06-27T16:24:40.042Z","1.3.2":"2016-12-08T19:01:01.228Z","2.0.0":"2017-04-21T16:33:29.916Z","2.0.1":"2017-05-04T19:09:28.363Z","2.0.2":"2017-05-13T17:48:15.286Z","2.0.3":"2017-05-23T22:48:33.254Z","2.0.4":"2017-05-25T20:49:09.493Z","2.0.5":"2017-05-27T00:36:06.486Z","3.0.0":"2017-07-14T00:20:59.224Z","3.0.1":"2017-10-11T18:05:54.246Z","3.1.0":"2017-10-19T19:23:54.299Z","3.1.1":"2017-11-06T12:36:43.646Z","3.2.0":"2017-11-30T20:12:33.620Z","3.3.0":"2017-12-01T19:04:37.573Z","3.4.0":"2017-12-12T17:42:42.972Z","3.3.1":"2017-12-12T17:46:00.052Z","3.3.2":"2018-06-08T19:37:07.884Z","4.0.0":"2018-06-11T17:15:10.416Z","4.1.0":"2019-06-18T19:51:23.841Z","4.1.1":"2019-06-18T21:58:23.672Z","4.1.2":"2020-07-31T17:09:14.451Z","4.1.3":"2020-08-26T19:07:20.747Z","4.2.0":"2021-06-24T20:39:17.460Z","4.2.1":"2021-06-30T12:43:05.254Z","4.2.2":"2021-07-09T19:42:50.006Z","5.0.0":"2022-05-09T19:42:47.121Z","5.0.1":"2022-06-13T23:05:01.838Z","5.0.2":"2022-09-14T19:58:42.496Z","6.0.0":"2023-07-20T19:10:36.066Z","7.0.0":"2023-10-11T17:03:35.202Z","7.0.1":"2023-10-12T20:16:05.640Z","7.0.2":"2024-01-19T19:50:29.447Z","8.0.0":"2025-02-19T00:29:58.603Z","8.0.1":"2025-08-05T00:59:52.818Z","8.0.2":"2025-08-07T18:15:12.490Z"},"readmeFilename":"readme.md","homepage":"https://github.com/stephenplusplus/retry-request#readme"}