{"maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"dist-tags":{"latest":"8.0.0"},"author":{"name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com","url":"http://fgribreau.com"},"description":"request-retry wrap nodejs request to retry http(s) requests in case of error","readme":"<div align=\"center\">\n  <br><p><strong>request-retry</strong> - HTTP(s) request retry on recoverable errors.</p>\n</div>\n\n------------------------------------------------\n\n[![NPM version](https://img.shields.io/npm/v/requestretry.svg)](http://badge.fury.io/js/requestretry) [![Downloads](http://img.shields.io/npm/dm/requestretry.svg)](https://www.npmjs.com/package/requestretry)\n\n[![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/francois-guillaume-ribreau?utm_source=github&utm_medium=button&utm_term=francois-guillaume-ribreau&utm_campaign=github)  [![available-for-advisory](https://img.shields.io/badge/available%20for%20consulting%20advisory-yes-ff69b4.svg?)](http://bit.ly/2c7uFJq) ![extra](https://img.shields.io/badge/actively%20maintained-yes-ff69b4.svg) [![Slack](https://img.shields.io/badge/Slack-Join%20our%20tech%20community-17202A?logo=slack)](https://join.slack.com/t/fgribreau/shared_invite/zt-edpjwt2t-Zh39mDUMNQ0QOr9qOj~jrg)\n\nWhen the connection fails with one of `ECONNRESET`, `ENOTFOUND`, `ESOCKETTIMEDOUT`, `ETIMEDOUT`, `ECONNREFUSED`, `EHOSTUNREACH`, `EPIPE`, `EAI_AGAIN` or when an HTTP 5xx or 429 error occurrs, the request will automatically be re-attempted as these are often recoverable errors and will go away on retry.\n\n\n> ## ❤️ Shameless plug\n> - Need to implement Webhooks inside your SaaS? [Try Hook0, an open-source self-hostable webhook micro-service](https://www.hook0.com/)\n> - [**Charts, simple as a URL**. No more server-side rendering pain, 1 url = 1 chart](https://image-charts.com)\n> - [Managed **Keycloak IAM** ? Try Cloud-IAM](https://www.cloud-iam.com/)\n> - [Automate your second brain on RoamResearch with Zapier](https://roam-bot.com/)\n\n## Installation\n\nInstall with [npm](https://npmjs.org/package/requestretry).\n\n    npm install --save requestretry\n\n## Usage\n\nRequest-retry is a drop-in replacement for [request](https://github.com/mikeal/request) but adds three new options `maxAttempts`, `retryDelay` and `retryStrategy`. It also adds one property to the response (or the error object, upon a network error), `attempts`. It supports callbacks or promises.\n\n### With callbacks\n\n```javascript\nvar request = require('requestretry');\n\nrequest({\n  url: 'https://api.domain.com/v1/a/b',\n  json: true,\n\n  // The below parameters are specific to request-retry\n  maxAttempts: 5,   // (default) try 5 times\n  retryDelay: 5000,  // (default) wait for 5s before trying again\n  retryStrategy: request.RetryStrategies.HTTPOrNetworkError // (default) retry on 5xx or network errors\n}, function(err, response, body){\n  // this callback will only be called when the request succeeded or after maxAttempts or on error\n  if (response) {\n    console.log('The number of request attempts: ' + response.attempts);\n  }\n});\n```\n\n### With promises\n\nWhen you're using promises, you can pass the two following options:\n- `fullResponse` _(default true)_ - To resolve the promise with the full response or just the body\n- `promiseFactory` _(default whenjs)_ - A function to allow the usage of a different promise implementation library\n\n```javascript\nrequest({\n  url: 'https://api.domain.com/v1/a/b',\n  json: true,\n\n  fullResponse: true // (default) To resolve the promise with the full response or just the body\n})\n.then(function (response) {\n  // response = The full response object or just the body\n})\n.catch(function(error) {\n  // error = Any occurred error\n})\n```\n\n**Using `promiseFactory` option to use a different promise implementation library**\n\n```javascript\n// See the tests for different libraries usage examples\n\n/**\n * @param  {Function} resolver The promise resolver function\n * @return {Object} The promise instance\n */\nfunction customPromiseFactory(resolver) {\n  // With when.js\n  return require('when').promise(resolver);\n\n  // With RSVP.js\n  var Promise = require('rsvp').Promise;\n\n  return new Promise(resolver);\n}\n\nrequest({\n  url: 'https://api.domain.com/v1/a/b',\n  json: true,\n\n  // Custom promise factory function\n  promiseFactory: customPromiseFactory\n})\n.then(function (response) {\n  // response = The full response object or just the body\n})\n.catch(function(error) {\n  // error = Any occurred error\n})\n```\n\n## How to define your own retry strategy\n\nA retry strategy let you specify when request-retry should retry a request\n\n```javascript\n/**\n * @param  {Null | Object} err\n * @param  {Object} response\n * @param  {Object} body\n * @param  {Object} options copy \n * @return {Boolean} true if the request should be retried\n */\nfunction myRetryStrategy(err, response, body, options){\n  // retry the request if we had an error or if the response was a 'Bad Gateway'\n  return !!err || response.statusCode === 502;\n}\n\n/**\n * @param  {Null | Object} err\n * @param  {Object} response\n * @param  {Object} body\n * @param  {Object} options copy \n * @return {Object} mustRetry: {Boolean} true if the request should be retried\n *                  options: {Object} new options for request\n */\nfunction myRetryStrategy(err, response, body, options){\n  options.url = 'new url'; //you can overwrite some attributes or create new object \n  return {\n    mustRetry: !!err || response.statusCode === 502,\n    options: options, //then it should be passed back, it will be used for new requests\n  }\n}\n\n/**\n * With an asynchronous retry strategy\n * @param  {Null | Object} err\n * @param  {Object} response\n * @param  {Object} body\n * @param  {Object} options copy \n * @return {Object} mustRetry: {Boolean} true if the request should be retried\n *                  options: {Object} new options for request\n */\nasync function myRetryStrategy(err, response, body, options){\n  let token = await getNewApiAuthToken();\n  options.headers = {'Authorization': `Bearer ${token}`}\n  return {\n    mustRetry: true,\n    options: options, // retry with new auth token\n  }\n}\n\nrequest({\n  url: 'https://api.domain.com/v1/a/b'\n  json:true,\n  retryStrategy: myRetryStrategy\n}, function(err, response, body){\n  // this callback will only be called when the request succeeded or after maxAttempts or on error\n});\n```\n\n## How to define your own delay strategy\n\nA delay strategy let you specify how long request-retry should wait before trying again the request\n\n```javascript\n/**\n * @param  {Null | Object} err\n * @param  {Object} response\n * @param  {Object} body\n * @return {Number} number of milliseconds to wait before trying again the request\n */\nfunction myDelayStrategy(err, response, body){\n  // set delay of retry to a random number between 500 and 3500 ms\n  return Math.floor(Math.random() * (3500 - 500 + 1) + 500);\n}\n\nrequest({\n  url: 'https://api.domain.com/v1/a/b'\n  json:true,\n  delayStrategy: myDelayStrategy // delayStrategy is called 1 less times than the maxAttempts set\n}, function(err, response, body){\n  // this callback will only be called when the request succeeded or after maxAttempts or on error\n});\n```\n\nHere is how to implement an exponential backoff strategy:\n\n```javascript\n/**\n * @param   {Number} attempts The number of times that the request has been attempted.\n * @return  {Number} number of milliseconds to wait before retrying again the request.\n */\nfunction getExponentialBackoff(attempts) {\n  return (Math.pow(2, attempts) * 100) + Math.floor(Math.random() * 50);\n}\n\nfunction constructExponentialBackoffStrategy() {\n  let attempts = 0;\n  return () => {\n    attempts += 1;\n    return getExponentialBackoff(attempts);\n  };\n}\n\nrequest({\n  url: 'https://api.domain.com/v1/a/b'\n  json:true,\n  delayStrategy: constructExponentialBackoffStrategy() // need to invoke the function to return the closure.\n}, function(err, response, body){\n  // this callback will only be called when the request succeeded or after maxAttempts or on error\n});\n```\n\n## How to access the underlying request library\n\nYou can access to the underlying `request` library thanks to `request.Request`:\n\n```javascript\nconst request = require('requestretry');\nconsole.log(request.Request); // original request library\n```\n\nThus, if needed, it's possible to monkey-patch or extend the underlying Request library:\n\n```javascript\nrequest.Request = class extends request.Request {\n  constructor(url, options, f, retryConfig) {\n    super(url, options, f, retryConfig);\n    // this constructor will be called for every requestretry call,\n    // and give you global logging\n    console.log('Request', url, options, f, retryConfig);\n  }\n}\n```\n\n\n## Modifying `request` options\n\nYou can use the `defaults` method to provide default options like so:\n\n```javascript\nvar request = require('requestretry').defaults({ json: true, retryStrategy: myRetryStrategy });\n```\n\n## API surface\n\nAs with `request`, several helpers are provided for various HTTP methods and usage:\n\n* `request(options [, callback])`.\n* `request(url [, callback])` - same as `request(options [, callback])`.\n* `request(url, options [, callback])` - same as `request(options [, callback])`.\n* `request.get(url [, callback])` - same as `request(options [, callback])`, defaults `options.method` to `GET`.\n* `request.get(url, options  [, callback])` - same as `request(options [, callback])`, defaults `options.method` to `GET`.\n* `request.head(url)` - same as `request(options [, callback])`, defaults `options.method` to `HEAD`.\n* `request.post(url)` - same as `request(options [, callback])`, defaults `options.method` to `POST`.\n* `request.put(url)` - same as `request(options [, callback])`, defaults `options.method` to `PUT`.\n* `request.patch(url)` - same as `request(options [, callback])`, defaults `options.method` to `PATCH`.\n* `request.del(url)` - same as `request(options [, callback])`, defaults `options.method` to `DELETE`.\n* `request.delete(url)` - same as `request(options [, callback])`, defaults `options.method` to `DELETE`.\n\n## [Changelog](CHANGELOG.md)\n\n## You want to support my work?\n\nI maintain this project in my free time, if it helped you, well, I would be grateful to buy a beer thanks to your [paypal](https://paypal.me/fgribreau) or [Bitcoins](https://www.coinbase.com/fgribreau), donation!\n\n[Francois-Guillaume Ribreau](http://fgribreau.com) (npm@fgribreau.com)\n","repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"users":{"isayme":true,"tooyond":true,"savostin":true,"wuwenbin":true,"duncanmak":true,"fgribreau":true,"goliatone":true,"manikantag":true},"bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"license":"MIT","versions":{"0.0.1":{"name":"requestretry","version":"0.0.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@0.0.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"4d1d9ce7178ee5be50a48ea0f0fd06d321d293d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-0.0.1.tgz","integrity":"sha512-iCFbyRjpA4kIlfH64Un1QjexvgVoKoDA4KYfEN6mMgis+YTPL/xbjUPmmUQFn1JMOx8czvbCe+ooLzKd1S6a9Q==","signatures":[{"sig":"MEQCHwJXVQ8eyYEqQsVn2AcF7KB5YILUQokZmTsttFnX6zMCIQCpFK2BTKY4BGEYt06P2FnvBzp+54LgVHVpwK4vnuymqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.3.2","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.34.0","fg-lodash":"0.0.1"}},"1.0.0":{"name":"requestretry","version":"1.0.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.0.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"f24f0347502653fb4c1604b5c18511a65f142f9b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.0.0.tgz","integrity":"sha512-GYsNA5tZ96iQcGWE7omoT1tpW8Xjr1hYpoKSvrFWpPknd/mQjqrVDoXpb9hvbhLVq1gcCGgthnGkQ1p3a8b5ig==","signatures":[{"sig":"MEQCIDUpHAoinR7FpQth9nCy3Ztj4apTYhhuoK1/GXYOu8yHAiA2VvGHgm3ZW1nhfyuqOVu6ZQYQijV/8ItNQRrJXhX4xg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.3.2","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.34.0","fg-lodash":"0.0.1"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.0.1":{"name":"requestretry","version":"1.0.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.0.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"cfa8c20d6e65a59ba56f66a0055aeda0137639d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.0.1.tgz","integrity":"sha512-TgTknNiImf9FAxt5lQTDmsasrjxdEILnaBJcapNBtgfOqoZGMJ/vtukSOD16xU3HRjVsUGlliS3TG8b0Z8USKQ==","signatures":[{"sig":"MEUCIQDVnmlo1qnAx2SK/2P3USBmtGneHwkZt2zfbNbwDd5a+wIge5ZZ/41EROYpMDReBUme7HTEPKD0Z3PbyVmUJr4Uy78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.3.2","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.34.0","fg-lodash":"0.0.1","cancelable":"~0.1.0"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.0.2":{"name":"requestretry","version":"1.0.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.0.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"a090699ecc293086bf49bf5ca9cc7c5d5f4f4eda","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.0.2.tgz","integrity":"sha512-Xzz1uySWf9Om5HIhABWQo0946YGhXez5NvOcJbmCdfkwo/2r863ln1UIoVnaPeyuCDjNRwNPXfFmigm+9Rgr9g==","signatures":[{"sig":"MEQCICxxYYWrZd3bYcsUv+ytRuJsq1AqA6JzVEZp0L2otCI8AiBXxelN7jZykHDmfNeW5YrMM2eQanglN3sfMtrPv93khw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a090699ecc293086bf49bf5ca9cc7c5d5f4f4eda","gitHead":"c0f3b974315773d987bccb224ac9c4499e29600f","scripts":{},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.23","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.44.0","fg-lodash":"0.0.1","cancelable":"~0.1.0"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.0.3":{"name":"requestretry","version":"1.0.3","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.0.3","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"f81ca504dbc0a75c15b49beb0d6f7ce45fbb7a8c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.0.3.tgz","integrity":"sha512-3+0s3fihs9OAL/7RRoPfNcfmCFVfrjJdbz3YE7OMEjkpg9zFy3EL1GfWXLNTaLhW9BDTeP3kVqwlhQrk+nAsnw==","signatures":[{"sig":"MEYCIQCVO7cRkoVx+YhsOg+5oIzqHnt2fRlIg4cp/st9YmKJQgIhAKHDL++ogcirrr2SXKOeq8bj+DiTqxV8bh7gUlhIGtRp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f81ca504dbc0a75c15b49beb0d6f7ce45fbb7a8c","gitHead":"8ed86e67f346d597f65dc25ecb3a374cc7e3a9b7","scripts":{},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.23","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.44.0","fg-lodash":"0.0.1","cancelable":"~0.1.0"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.0.4":{"name":"requestretry","version":"1.0.4","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.0.4","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"60c66dc163b63ad98d759b718429d52d65cdc955","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.0.4.tgz","integrity":"sha512-8gUy8tjDoHSKICZn0XuXX7yF/XOOUUO2dPWRg7BssPh2wq53Gnms+y6YtcSwp+izvETtFeBGQC9FDFhZnZheww==","signatures":[{"sig":"MEUCIQCIZHzc04hbdrJmfwsvFuOzOyZSqTL68A9Rd27hyfS87QIgaRQCL4F/hfS9sW9dlQaLjtjPqWE8wZNiCtaiOU35hGI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"60c66dc163b63ad98d759b718429d52d65cdc955","gitHead":"66e39be276c61df7f8c8913dfdd0d42359aa2296","scripts":{},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.23","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.44.0","fg-lodash":"0.0.1","cancelable":"~0.1.0"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.1.0":{"name":"requestretry","version":"1.1.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.1.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"df1a0c321d1cb49ca6f9d84dd5f6a5e76cafa351","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.1.0.tgz","integrity":"sha512-+KojmiMhgTdKAw71TmTrZZ3YzMCTIpUR3ltnjUAHyy2qpDT85Rh0vWpY0GVFLJ/3WA11dEQbrWiHu2P5XhP/Mg==","signatures":[{"sig":"MEUCIEyo43pcjzvG8jDNbZx2/FusZTWeqD6NQwToJXgTGm91AiEAgFiCQ4BCxzO45Ii5yO8JMFZoYdpl8FE1/6AspLzoRio=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"df1a0c321d1cb49ca6f9d84dd5f6a5e76cafa351","gitHead":"6708bb0ea9d673ea511ed7a940e590b5a8762fb7","scripts":{},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.47.0","fg-lodash":"0.0.2","cancelable":"~0.1.0"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.2.0":{"name":"requestretry","version":"1.2.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.2.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"d9c2d3e56e49caa86c7558f76f7f18a23f8fd243","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.2.0.tgz","integrity":"sha512-4Vt270AdlOVG5UPRy7MkczCvLSprpDDrRj11hu9xgkgPS6haHY6cwbprC7Y3yn8O6ypiX3iRBzI0DVW3P771PA==","signatures":[{"sig":"MEYCIQC31mRQn0r9i5jqTTVzx0Ds/903s3FWt3xu8s+6xdKgSwIhAIe7+u9JyFvcC/aok9Z2hzluvCUSISXfrMqToRuwBl46","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d9c2d3e56e49caa86c7558f76f7f18a23f8fd243","gitHead":"103ae764efc026a61e4e369fd0556064ff368e3c","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.47.0","fg-lodash":"0.0.2"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.2.1":{"name":"requestretry","version":"1.2.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.2.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"0b3b48f192ec238ce883b895b4ccd0a161293b5c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.2.1.tgz","integrity":"sha512-TClL1cEBp/O3GuDSA89OZ0ebByMUN8HoxQueXE8hJYvsJ5z30MoetadHNXSoSjekR9IHYFcmQXsiZyw0yCoW/Q==","signatures":[{"sig":"MEYCIQDWKzy2A2LJkfkgUYDiLlXXwHioa4kj7wiZgDjCS//EbQIhAN59WnY67//1iOuJdNnhCvefxHlwLv1KwjBbFUvGD5zV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0b3b48f192ec238ce883b895b4ccd0a161293b5c","gitHead":"1a45d5188b239927e48bcb769c323cf409a5bf96","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"~2.47.0","fg-lodash":"0.0.2"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.2.2":{"name":"requestretry","version":"1.2.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.2.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"4b7daaf47330ccdfcae414e90b882eb6900e7983","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.2.2.tgz","integrity":"sha512-Ei2Lh90O44tNJFmqRAls22rIO7c4/UStDqAwC16O2XLRPTj4wyHapjsI641ijFoMlfoSKfUOMPQ+hM65TAPFEA==","signatures":[{"sig":"MEUCIEllJbvR4t663p6nmL2rgCoC405fJ5TX8FhJPJB0FhTGAiEAqLIniBtRP01S+zHLh0TPMrJzYK94VVcY6mAy2drw+MY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4b7daaf47330ccdfcae414e90b882eb6900e7983","gitHead":"4ee950bfae573e39c06f9ae221406a69975ed26b","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"2.51.x","fg-lodash":"0.0.2"},"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2"}},"1.3.0":{"name":"requestretry","version":"1.3.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.3.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"064bad0fa6c6371c7f0d7bd0105d8e38ad6b412a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.3.0.tgz","integrity":"sha512-eLILUuOrk0/MuhOd9KsWNzGyIYzyCtt9RJQurqyexi54MqFUKhhjQuaHFjb1CG8AU2HS1V7l4C7LhYeWaesvlg==","signatures":[{"sig":"MEUCIH5vv9+emLDLlHXDI+Xqx9WEzJ2GnvPqoZFUctLPsfgzAiEA4n8/s5afACkJrltG0LAdTwaQMpzr+k/KytQBiUADsGs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"064bad0fa6c6371c7f0d7bd0105d8e38ad6b412a","gitHead":"07ac1227fa24dafec8f085c7e554d58568348d04","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"2.55.x","fg-lodash":"0.0.2"},"devDependencies":{"chai":"~2.3.0","mocha":"~2.2.4"}},"1.3.1":{"name":"requestretry","version":"1.3.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.3.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"bcaf38a5b8b7c1caf0d4b0da21af0d5020f4dea4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.3.1.tgz","integrity":"sha512-tpMm9v3KSy4ww5IjRgvS/7RX1lusrvlQb7RUADi61WQarwRMTxq0k9GCAvqF9wRbMVFY8///rPDEQMSpjCRz2Q==","signatures":[{"sig":"MEUCIQCmApaWk+/ar9C8meZoEiPpYYojVPkQzEMslD+LKLWf8QIgE9BMYCKZtqiIq7KHmXU7JVTOXY5Eow28fEF+Zza+zoA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bcaf38a5b8b7c1caf0d4b0da21af0d5020f4dea4","gitHead":"bef5dba95eb1af36e2ac92d84c9fe208a949a79f","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"2.55.x","fg-lodash":"0.0.2"},"devDependencies":{"chai":"~2.3.0","mocha":"~2.2.4"}},"1.4.0":{"name":"requestretry","version":"1.4.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.4.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"839f7cad8458562eee01680d27452e9f85e16582","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.4.0.tgz","integrity":"sha512-l4sVxSYyl2tsWoy24Do5/F6hGAokD4aYLlZH9q8aezUp7stjfcdvB2I7NC4quxVQNJd0xA/Tgr7x2dgbN8666g==","signatures":[{"sig":"MEUCIF+6crq7z8AxceoTHGcTS9jSYkP9iY9kERTFv/LXy0WRAiEA1xb9D2/PpvGLNZoK67Ll3gy0viv0gQ7+KscxLiZLnAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"839f7cad8458562eee01680d27452e9f85e16582","gitHead":"e890593b85a18b52ca6aea24ff1e7736fb78d4e5","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"2.58.x","fg-lodash":"0.0.2"},"devDependencies":{"chai":"~2.3.0","mocha":"~2.2.4"}},"1.4.1":{"name":"requestretry","version":"1.4.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.4.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"f20a0e78a0ae2dd7ae6dcfe58dd0c64aef52f7c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.4.1.tgz","integrity":"sha512-u6lpPhdIWtj+njdYg9yhpDxZYgnnLEBxsedqCLubortKt8oIsVhngyo234WOb+DZ/HA5t+/ZLeodjw8agJH4rQ==","signatures":[{"sig":"MEUCIQDRq0Ayw0Hyc8N65Q8BMUwWz7aZXro3KVev40k6ou5L8AIgcudcGYYup1ieKkxQsooLlVReeRnqq3BxcKUu8V9qg0E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f20a0e78a0ae2dd7ae6dcfe58dd0c64aef52f7c2","gitHead":"9f6cadf9a175aab39738fad39f07e135488b26ef","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"^2.62.x","fg-lodash":"0.0.2"},"devDependencies":{"chai":"^3.2.0","mocha":"^2.3.0"}},"1.5.0":{"name":"requestretry","version":"1.5.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.5.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"ed157bba53526edeb3ec32a8e704a4998bece627","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.5.0.tgz","integrity":"sha512-TFGuroyIoxK+6P5nCPMMNghla1lhRYXd0g6b7Fiu1tF0hylwIdnbaaBl7Rd95YlRNRK+djXKW+9FG3/3B8H96g==","signatures":[{"sig":"MEUCIQCvsWvE2wRpRGx0BC2li89N9k6/CDoyloBzD59miU6wEwIgaqkq0CHfd7XGS54uvu+KlFdqEdUn7AMhPRZ+NAsrp9U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ed157bba53526edeb3ec32a8e704a4998bece627","gitHead":"1b7ca7c88a79f9221c1ab6974b191daf3c29d913","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"request":"^2.62.x","fg-lodash":"0.0.2"},"devDependencies":{"chai":"^3.2.0","mocha":"^2.3.0"}},"1.6.0":{"name":"requestretry","version":"1.6.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.6.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"3b33a9389bf17f87a9ad39862b47ffd04172e286","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.6.0.tgz","integrity":"sha512-/gKcD1z21UX1vJggycoV0j2waPdX3j57BOvar9GAajkmwozE+ieGFIXkM33p7PMDbcUi4GJGc58kUsi+zHEC1g==","signatures":[{"sig":"MEQCIEthmXH/+QwZQczXi48f7rCmsmoiiZJLh9Lo+X5T9x3jAiBw5c3GHlyiktSr6OMiHmS2iVXtTPypkvCgj7nu+DUYVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3b33a9389bf17f87a9ad39862b47ffd04172e286","gitHead":"99118dd9cd78da79fd914745674cde8b1d043ba8","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"3.3.12","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"5.3.0","dependencies":{"when":"~3.7.5","request":"^2.62.x","fg-lodash":"0.0.2"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","chai":"^3.2.0","nock":"~3.1.0","rsvp":"~3.1.0","mocha":"^2.3.0","bluebird":"~3.0.5"}},"1.7.0":{"name":"requestretry","version":"1.7.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.7.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"54e9c56f2a4dae86e13ff91dcba238ea4f86ac28","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.7.0.tgz","integrity":"sha512-UjJWYm+LIC5lTrQyiuBepTQ4j4EGQa4NtVbMlpdpyTc3c5arZPi2Hcwk5DzGj7LfSJL36hqPKnA6FTshCW485g==","signatures":[{"sig":"MEUCICiX8lggAdm5UPzddxQceGzhrrQXcPUNXvMTAjFW6pHEAiEAnWWAnLaCsRGxxXg1ZRUUnkHtLQBULgpwUbPWhOyjWWI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"54e9c56f2a4dae86e13ff91dcba238ea4f86ac28","gitHead":"762e15041b6fc5600e460c973db9dc2530928f2d","scripts":{"test":"mocha test"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"3.8.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"5.10.1","dependencies":{"when":"~3.7.5","request":"^2.62.x","fg-lodash":"0.0.2"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","chai":"^3.2.0","nock":"~3.1.0","rsvp":"~3.1.0","mocha":"^2.3.0","bluebird":"~3.0.5"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.7.0.tgz_1462549981955_0.7528514179866761","host":"packages-12-west.internal.npmjs.com"}},"1.7.1":{"name":"requestretry","version":"1.7.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.7.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"b49271570b3e9d703a2eaafcb07aafaf7811d5ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.7.1.tgz","integrity":"sha512-cHe5XQKlPpZyiI2GuF9loIB/Hk9WDCBFQTBbeVO6Q2IDjp/y3VWx3vBK8WKhd8hqRyr3ObqR7al2b5oh93jpQg==","signatures":[{"sig":"MEUCIB7iLuIz9vcUPt8NDCGytaFAX0+wyP77ti2GIos5IXmCAiEAwRq1ioKlbetARhNf7qDDL1WaHhql3zl1QoE90m0IOZ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b49271570b3e9d703a2eaafcb07aafaf7811d5ed","gitHead":"55ab78a92b63309a142f01cd6cb6eac1e3693f7f","scripts":{"test":"mocha test","changelog":"github-changes --o $(node -p 'process.env.npm_package_repository_url.split(\"/\")[3];') --r $(node -p 'a=process.env.npm_package_repository_url.split(\"/\");a[a.length-1].split(\".\")[0]') --token $CHANGELOG_GITHUB_TOKEN_FG -f CHANGELOG.md","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"3.8.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"5.10.1","dependencies":{"when":"~3.7.5","extend":"^3.0.0","request":"^2.62.x","fg-lodash":"0.0.2"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","chai":"^3.2.0","nock":"~3.1.0","rsvp":"~3.1.0","mocha":"^2.3.0","bluebird":"~3.0.5","github-changes":"^1.0.2"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.7.1.tgz_1462947863915_0.14631893765181303","host":"packages-12-west.internal.npmjs.com"}},"1.8.0":{"name":"requestretry","version":"1.8.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.8.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"1fa4acbcdf7f118a7b1c144bf4c0d8e14341d643","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.8.0.tgz","integrity":"sha512-i8NRt+I9cngMFYXTTrx7sZK6zmY9j30dgoxyCT01F+AF5v0sXIikFYc3UuVuXuJCTY8bFmF9TUv2EqTKs3QPtA==","signatures":[{"sig":"MEYCIQDD1G0G50Tqs5xCBAJF6tRtba7l24xFvu8uZ5NcYLD3AQIhAILdypFa6l1VJUeHftxTTUa8wgvcEwn+0W/IIfKiEAo2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1fa4acbcdf7f118a7b1c144bf4c0d8e14341d643","gitHead":"6767b497ad0f015bbc87eff65a5f6abd6d9e481e","scripts":{"test":"mocha test","changelog":"github-changes --o $(node -p 'process.env.npm_package_repository_url.split(\"/\")[3];') --r $(node -p 'a=process.env.npm_package_repository_url.split(\"/\");a[a.length-1].split(\".\")[0]') --token $CHANGELOG_GITHUB_TOKEN_FG -f CHANGELOG.md","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"3.8.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"5.10.1","dependencies":{"when":"~3.7.5","extend":"^3.0.0","request":"^2.62.x","fg-lodash":"0.0.2"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","chai":"^3.2.0","nock":"~3.1.0","rsvp":"~3.1.0","mocha":"^2.3.0","bluebird":"~3.0.5","github-changes":"^1.0.2"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.8.0.tgz_1462947966315_0.6624281841795892","host":"packages-16-east.internal.npmjs.com"}},"1.9.0":{"name":"requestretry","version":"1.9.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.9.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"8f44d66e53957f3b3d53543f1fd44d12f1fa0fd9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.9.0.tgz","integrity":"sha512-GVJOkgAu67N73s8w8+tVgtAI1Vp1UoA9EZnviqdyE+V7x81eccwjXzgmE4CCEmPV/W8F35Ydo0sDSmsyvLST0g==","signatures":[{"sig":"MEQCID+JtbPwctkmT75Uf4o+koLiMvnmuH0tHliROqTusbwAAiB0LsTiXzwpC4JbDNLLBs5iFgUyt2V4VN1wPkXbaszpsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8f44d66e53957f3b3d53543f1fd44d12f1fa0fd9","gitHead":"5bdee742e01b555fc8a538f5fce3d2b459ade9b6","scripts":{"test":"mocha test","changelog":"github-changes --o $(node -p 'process.env.npm_package_repository_url.split(\"/\")[3];') --r $(node -p 'a=process.env.npm_package_repository_url.split(\"/\");a[a.length-1].split(\".\")[0]') --token $CHANGELOG_GITHUB_TOKEN_FG -f CHANGELOG.md","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"2.11.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"0.12.7","dependencies":{"when":"~3.7.5","extend":"^3.0.0","request":"^2.62.x","fg-lodash":"0.0.2"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","chai":"^3.2.0","nock":"~3.1.0","rsvp":"~3.1.0","mocha":"^2.3.0","bluebird":"~3.0.5","github-changes":"^1.0.2"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.9.0.tgz_1466622694602_0.6649378426373005","host":"packages-16-east.internal.npmjs.com"}},"1.9.1":{"name":"requestretry","version":"1.9.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.9.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"0a2a004eaf211969c4cc2cfebf3fe9e57b92c74e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.9.1.tgz","integrity":"sha512-DWXDuj4syXribRStpt4qMOSBhDBUarreeoHol9sOdBfDG1BBDwBFfhgxCyDZkdQ+1W9mZm94vwEg8eD3p46tOg==","signatures":[{"sig":"MEUCIH2YgFvEPQAa8h+KdFJkOWiWWm5CHO0mc4Nd2AvDIVm8AiEA1bvi9MampcW7cJt3I/F7zGjNLj8JAeZwXJyal0C/IBg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0a2a004eaf211969c4cc2cfebf3fe9e57b92c74e","gitHead":"852e81c8ea5b6f4309123065e6517eddfafff7ec","scripts":{"test":"mocha test","changelog":"conventional-changelog -i CHANGELOG.md -s","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","changelog-init":"conventional-changelog -i CHANGELOG.md -s -r 0"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"https://github.com/FGRibreau/node-request-retry"},"_npmVersion":"1.4.28","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"dependencies":{"when":"~3.7.5","extend":"^3.0.0","request":"^2.74.x","fg-lodash":"0.0.2"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","chai":"^3.2.0","nock":"~3.1.0","rsvp":"~3.1.0","mocha":"^2.3.0","bluebird":"~3.0.5","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.9.1.tgz_1469812225141_0.7890794929116964","host":"packages-16-east.internal.npmjs.com"}},"1.10.0":{"name":"requestretry","version":"1.10.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.10.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"dist":{"shasum":"39c26d1aad3769cd40eae58ac8cc3a8792da09d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.10.0.tgz","integrity":"sha512-HhfKhlKb7yD4EoFRqGgI9/+pN8GXr5feqPRZE5xEJz+yMusbhP50MCvjA/VfCTfnXRcGFHrP853i/2gP3IJzbg==","signatures":[{"sig":"MEYCIQDBasgKohJC6gWJiwxDOxSXvfION1yrtbtURHbaR5JwjwIhALhN4ve/uRoL3Y2EaMsuSPApA6kuAvuLzen548D1DDaS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"39c26d1aad3769cd40eae58ac8cc3a8792da09d9","gitHead":"b1fbef59ecd5ad9fdf64f9f2632020c206464099","scripts":{"test":"mocha test","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","changelog-init":"conventional-changelog -i CHANGELOG.md -s -r 0"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"3.10.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"6.3.0","dependencies":{"when":"~3.7.5","extend":"^3.0.0","request":"^2.74.0","fg-lodash":"0.0.2"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","chai":"^3.2.0","nock":"^8.0.0","rsvp":"^3.2.1","mocha":"^3.0.2","updtr":"^0.2.1","bluebird":"^3.4.1","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.10.0.tgz_1471533014358_0.539109795121476","host":"packages-16-east.internal.npmjs.com"}},"1.11.0":{"name":"requestretry","version":"1.11.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.11.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"a4b1c185f664717365a57bad63cba074de8fefc7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.11.0.tgz","integrity":"sha512-LkeVOHCk+8LljXQIBGh1o7+1qzuWIbqlK8ZzxLeJX/KF4aHFrnapAIWxyOWbPaSuFX6A8NE4gmsejb0kEHOn/w==","signatures":[{"sig":"MEYCIQC+yXYESCUmVAHSQp9PkULEQD09EumpEbb2CHLl43c43wIhAPILkT0G2oiEaH5ys6nNgS/8lvAnJ2i1rU1Zf5lO8Tid","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a4b1c185f664717365a57bad63cba074de8fefc7","gitHead":"560e4026095d3326438b75cf8d73ec75230c78d1","scripts":{"test":"mocha -t 1000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"3.10.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"6.3.0","dependencies":{"when":"^3.7.7","extend":"^3.0.0","lodash":"^4.15.0","request":"^2.74.0"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","nyc":"^8.1.0","chai":"^3.2.0","rsvp":"^3.2.1","mocha":"^3.0.2","updtr":"^0.2.1","bluebird":"^3.4.6","coveralls":"^2.11.12","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.11.0.tgz_1472921751341_0.585861963685602","host":"packages-16-east.internal.npmjs.com"}},"1.12.0":{"name":"requestretry","version":"1.12.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.12.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"7f10a2cd0edb7e43bf9a8b6cbfeda202fb320860","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.12.0.tgz","integrity":"sha512-Myw6aUJx03EcwAxGytxnk+Y0kK+T96xUrGAULd8qdpu4NAmSsVXG6Nxezl+f1n+wv/68UwP9K+BqEBr7io6MjQ==","signatures":[{"sig":"MEYCIQC3gsMZdP7r+ms8YjEnxt26scffZpyLzY3JuWBNybzEEwIhAPzzX+5v6kyqVfKtphjR3Kd7qXt4PJOnCD9ElCZvwqvx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7f10a2cd0edb7e43bf9a8b6cbfeda202fb320860","gitHead":"aef934cb31c0ecdffae069a5a84e5a3df526806f","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"3.10.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"6.3.0","dependencies":{"when":"^3.7.7","extend":"^3.0.0","lodash":"^4.15.0","request":"^2.74.0"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","nyc":"^8.1.0","chai":"^3.2.0","rsvp":"^3.2.1","mocha":"^3.0.2","sinon":"1.17.5","updtr":"^0.2.1","bluebird":"^3.4.6","coveralls":"^2.11.12","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.12.0.tgz_1473236064838_0.20453642634674907","host":"packages-16-east.internal.npmjs.com"}},"1.12.2":{"name":"requestretry","version":"1.12.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.12.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"13ce38a4ce4e809f3c9ec6d4ca3b7b9ba4acf26c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.12.2.tgz","integrity":"sha512-wDYnH4imurLs5upu31WoPaOFfEu31qhFlF7KgpYbBsmBagFmreZZo8E/XpoQ3erCP5za+72t8k8QI4wlrtwVXw==","signatures":[{"sig":"MEYCIQCZvJs6k5Gaj9h6oqFr0TjNsjD3fFpkiZ3vLfAStkTglwIhAN2XR8MNFDplU/DerIsNGcnOaQYSDpLS9pVXMvOz+2El","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"eba306c594f6ab2729221615c099a35ca2e70015","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"5.3.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"8.1.4","dependencies":{"when":"^3.7.7","extend":"^3.0.0","lodash":"^4.15.0","request":"^2.74.0"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","nyc":"^10.0.0","chai":"^3.2.0","rsvp":"^3.2.1","mocha":"^3.0.2","sinon":"1.17.6","updtr":"^0.2.1","bluebird":"^3.4.6","coveralls":"^2.11.12","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.12.2.tgz_1501574128858_0.560437188250944","host":"s3://npm-registry-packages"}},"1.12.3":{"name":"requestretry","version":"1.12.3","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.12.3","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"af34d696a7cb7bcbec61b56c539295d4e6088235","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.12.3.tgz","integrity":"sha512-3H5xTOfORJGSDWV0WZYWLt39tqFyW19V+joQqsKvbbIR1AfJo8b1PDYlSYBoC5jPvmQcG0ZS0DkAKF23mChTow==","signatures":[{"sig":"MEYCIQCR5o12KVkvLZvobkg1IdQqmD9r/w8lYjxotPs+GJCe1QIhAM+Jub51fS59I2NnoJaGRjbTzX0yutJDaGcNDugtbYlb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"57bb3d8c7eac814330786198111dfe1daf52672d","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"5.3.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"8.1.4","dependencies":{"when":"^3.7.7","extend":"^3.0.0","lodash":"^4.15.0","request":"^2.74.0"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","nyc":"^10.0.0","chai":"^3.2.0","rsvp":"^3.2.1","mocha":"^3.0.2","sinon":"1.17.6","updtr":"^0.2.1","bluebird":"^3.4.6","coveralls":"^2.11.12","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.12.3.tgz_1516270399168_0.04993642191402614","host":"s3://npm-registry-packages"}},"1.13.0":{"name":"requestretry","version":"1.13.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@1.13.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"213ec1006eeb750e8b8ce54176283d15a8d55d94","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-1.13.0.tgz","integrity":"sha512-Lmh9qMvnQXADGAQxsXHP4rbgO6pffCfuR8XUBdP9aitJcLQJxhp7YZK4xAVYXnPJ5E52mwrfiKQtKonPL8xsmg==","signatures":[{"sig":"MEUCIAu6o+CtAj5ZW2KaT3CyWCjJuvn9cDHX4kwoFRd7KeTrAiEA5uVQhyTTr2t3k0JGe3ybceIjp6c8DP2gNL3rKlCR7OE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"83829111c751478824dfeee8283ca2f6c9d6aca6","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"5.3.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"8.1.4","dependencies":{"when":"^3.7.7","extend":"^3.0.0","lodash":"^4.15.0","request":"^2.74.0"},"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","nyc":"^10.0.0","chai":"^3.2.0","rsvp":"^3.2.1","mocha":"^3.0.2","sinon":"1.17.6","updtr":"^0.2.1","bluebird":"^3.4.6","coveralls":"^2.11.12","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry-1.13.0.tgz_1516271235648_0.5052908672951162","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"requestretry","version":"2.0.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@2.0.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"0c4a43c7c9b88b79f8fda3e3cf7bda499d9e3a88","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-2.0.0.tgz","fileCount":23,"integrity":"sha512-8nXedDVOtEENVl3WEpxgfv41P8t/uW80v6mudpCRK4+zx407V66VNxe+W6Hhd+0T5xcOthGajvfAzbuVX5WX/w==","signatures":[{"sig":"MEQCIF6J8o3HOZ+FaChdNDZgj0/QeBOze3SIVyE/fZ13DUuKAiBU4zaRH6KARllBKGmHvlnVr0mluicwSY7yYY/i2FtWZw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTc4WCRA9TVsSAnZWagAApmwP/RiTd/WGbMnr7FHnLdqB\n+eyyuKxXyFPGbsi6LyjC5XJSGf8hX/iEoYXSMLyRk7MqYmSz8x6D2ah27OcU\niPDXdwCcpj2PZHXEbqgsE++KdTRODBHtGzC7r4gJv5sosx4mOI55GHJy7FMz\nX9WuoiKEdZOsNfbO2BRsDEfPNc1yV4e9Yo/8ARtLzh3lJgyGgsM+2IoKnnTJ\nNIPjp/HEfSm9jHJxpBgvm98vfVN3nFIPH2vET4BRkvSSDCNkHHdEgInfcNOz\nOkTU17cps0oXMZ0zuB5Sl/mPT7JuIukU/UC0vogzwYc0XHMcy3awzgJTjzEs\nrpCYweE15R9gLRcsDnXSo/0gBF68Z6kVM7s25Uzb/5UaC9IvH4HfhTpw5yvC\nROUZoJQ2c62AZa/3tGy64H14hcyBHxWGpbpWzqgaMEU2zhDkfanWHO2Z2a8N\nIv41/DZVYC1SmDdpuW5KgbHhvb9Ym13A0nlHe/LGgDemfGXorYo1nFDZ7OOk\nR9MQN6G+YGotlDDLgT3RrEOJJI+x8yKqpClsHKIh4s8N98MR29pILiL+xEMG\nhiaM1+8wCQELqVPDyoAdbTkmQpPA+ToS7IR+MsJUdv6qw+5VvPMXWicQVOW/\n5JykFgxJASLshv1WVGWfUfZ2BHiWWXBXyaFh6eDAjAwV5MzIDe0AHd6c+4c2\nh2v3\r\n=zl8B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"e3f05f505cea5e7ce688201263bdb4303564c1da","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.1.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"10.5.0","dependencies":{"when":"^3.7.7","extend":"^3.0.0","lodash":"^4.15.0"},"_hasShrinkwrap":false,"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","nyc":"^10.0.0","chai":"^3.2.0","rsvp":"^3.2.1","mocha":"^3.0.2","sinon":"1.17.6","updtr":"^0.2.1","request":"^2.87.0","bluebird":"^3.4.6","coveralls":"^2.11.12","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"peerDependencies":{"request":"~2.87.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_2.0.0_1531825686426_0.008440179249709967","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"requestretry","version":"2.0.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@2.0.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"c18263433e44b840984f7de70be941f948bc5c66","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-2.0.1.tgz","fileCount":42,"integrity":"sha512-DBQVMGlQ6E/OLmXVX7tW+0k77Lzgs5meuRPBIxZVS5Ls0KEZNOzz/pQgBGG65KMiwobO9nX+aOT4rkFP6/Q8bA==","signatures":[{"sig":"MEUCIAvIiN2+EStnUIsLEzLoNFE7XbDqAhSv5VeIhUeV1iGXAiEAsQ6fUMUnFIixdQ5bz8P/vh0j3eL5ngM9NX4imYeXqOU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":205434,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYexOCRA9TVsSAnZWagAAbawQAKJzcvKbuFlBqE7ms/4U\nqYNulU5vqPvL4laA3+s6OMyHDc4XwmVAxJOgv3GC7aNjKi2ubMAbmzqv2BSb\n7S8lg2XE48FbP7FVIlBogqWPynPzocljr8l0hlH/PTO5E1xx0rtytcHYOfc3\ncsd3yKfcchPI/cRW8VMnBv0/CKB90qriv41RTQT+ry/LNSPgLH2vxgn/yeJL\nGwDtdPgZ0D6AZ6wExLDeG78Ab+TFpeQZjTzY/Ph71/vCcBPmD010EgC9hhGK\nH0R00/TzWAMDnGM/SJTNok5zfTtvnKVatnDlsGYBuFSGgfIXPSTAnfcerjBR\nDEgC/jukErc1BWgBF1aPCqTbgiFsk4Yb2MOPz4UEA13zwfIYYbyhhixgzHRO\nlY59A0dAiYnvNKlC3l+U/Gf8RSM069uVR2sZMqNyr9c4TYRNVIv+htxFI2yL\n5cWadlhJtM0UfPLn92xI8QXGe4b0+pI8PNbTspls5GqvH+KXEIQPvd6t6fIx\nmIbkiye4fZmNmrBfdz/8He0tF4Hkb2Dtr19Tnuv/hyg5pq7k3v2JUeMuQuvN\nrHwCJb4T9Unyz8blRHMitVEw62sS8x2quzud3P9e4LBEqDfO9vHO3t6e50Ns\n/LUWWS3YNcpbBBn2aKwZD1yEFPqR3D+B8GUhb34pGAUupGaoVqF3qBMFVAR3\nlYJb\r\n=2BZ6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"4b0a236ecb80d0177fe562f27f787742050cd2ba","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.1.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"10.5.0","dependencies":{"when":"^3.7.7","extend":"^3.0.0","lodash":"^4.15.0"},"_hasShrinkwrap":false,"devDependencies":{"q":"~1.4.1","kew":"~0.7.0","nyc":"^10.0.0","chai":"^3.2.0","rsvp":"^3.2.1","mocha":"^3.0.2","sinon":"1.17.6","updtr":"^0.2.1","request":"^2.87.0","bluebird":"^3.4.6","coveralls":"^2.11.12","npm-release":"^1.0.0","conventional-changelog":"^1.1.0","conventional-changelog-cli":"^1.2.0"},"peerDependencies":{"request":"~2.87.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_2.0.1_1533144141812_0.271411110899475","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"requestretry","version":"2.0.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@2.0.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"ecbd2d9e2c9abb64c66e2d42c75f61af6e2c0375","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-2.0.2.tgz","fileCount":43,"integrity":"sha512-wBIylIEvvGHnFAYRXIKCARGzWxChn+mo7X3KjXPgtofB+c0ejcZFdZ5k6RFhBV+IOf80fkemcVuVdUKqovnj8A==","signatures":[{"sig":"MEQCIHHzlpd9Tu8FI8+OOuInW6DmPx5Z+H987aKfPW3zvJpMAiBmApMsaUaOxu4TPUqL3gv7EDgqb6mHauJIzDkX1qtYPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":221140,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYe3UCRA9TVsSAnZWagAATukQAJbUc96B6bXP+z0om2QP\nziChLCmlHOQDc4Pst7VOJ+5+XMeZ09pApqBNQymOKePebwENLzLNK1a9383L\nQ4zUTeaqBdSDcuaPALEqvZoyU2FMCBE124GC7rfbHQimf057f9BmLX2JU4dh\n8giY7U59O51Sn3N5iUT29YaJ18FpAKqAUnO1+xJMnxotE7siI0BTGOu0R1XG\nAFtddKO1QKETSqg0aJhfykLRlUMvvx9bzlk4C6BnsoDKKKEipA3XmrzB56u4\nl63KV9LJDzPGzPqFduFSAB8wc9YzrgLIPbgyeh81eghw30jc8mKQJTV5FYaW\nQDpKAUm9mvgsqtAE16i89JUqMwR7A91WYM6YMVKT8hscKP/KOQk1kbdzUVAj\n+Nqx1QUfse2r4OacLhRVBNYBSC8xW0ckHR6/Fqo3SZ2v662qPq2SeA4PrDgm\nUiTL0vDfQQv8wK7uI9XyOw5t4+jSmJUN35d5XEzXh9kYglBsqe6RnI23vzYK\nu8XxTsavm8T0FFTlzOIJvtY65Uxj7vwvOnXXRWCq6uPMi1x8TjOSheaCXV88\nWB5GyO6Kg7T+KdkbfRT52gPE/9BWitb9ay62KTtDXhEUtxXZSLNJo+FTASSe\nX7/U5AeL7kCfWmqep6wj0575QFnz+CukFXBSGZ27vwugA1p09Vs1yTERucoR\n5bke\r\n=HlAA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"a79fb0f994ad7fc4ca2bc044cb7a72209a19f165","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.1.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"10.5.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.1.2","rsvp":"^3.6.2","mocha":"^3.5.0","sinon":"^6.1.4","updtr":"^2.0.0","request":"^2.87.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^1.3.2"},"peerDependencies":{"request":"~2.87.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_2.0.2_1533144531538_0.10604938142210063","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"requestretry","version":"3.0.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@3.0.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"5ec44059a53a322e421f634b41d5a5ae8fb77cbf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-3.0.0.tgz","fileCount":43,"integrity":"sha512-8lXENBLPiVMasnY+BH+w65KvIdNIL4fXacGYfUhAm3D1Z4mGKbu/22noIe9HM/ncoxr9Qcz70p59tjCEE9nBrA==","signatures":[{"sig":"MEUCIQCz+d+ZYe+AKAKGKkTmD/tONmklquN96LIJtnO8bzWGIwIgX3psoGd8oVTej0bWXolwx3t+0MHuzFEJgywf21JwHEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":224011,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpLGICRA9TVsSAnZWagAAEhAP/AqITrHIEW/BS4Zq4i2e\ngYDG1CP7eJDiGkZ02CPRoDKGBZSeYCIUa9mkTp5FuW4SozvGJHcxVTn+biMB\n5kzTrlfdXUkShN2MYbAwDahi96xhM7+jxmgtPxkvMAhBJ1KuQUChNdjMt51O\n0NJtdokqv83bk4+VV5B/FwQTStTw63OYenmxNDyz0zj9hsch0NgerVM2ii/a\nqK79l4OkvIAun7f6fJh4SL033aGrX8AfTERjFt9nTHsuN8VK8Ss6gsPahnvM\naIVqKjY0ftPelJBXulQu4YjSMoPvWiuziB0+lRqLkd7Xukdj6ZrucSyB7Np0\ndttOTRJxV85umcU+OE0iDo5+gf1bHZkNS8GkwbEl0/Qy+EVSoSueyHwQFYGv\nJwyPf3hxLPiWsD7xYMNSZLv80XgaohgzBpXYpJww9F65uCIrZrP+bQlk6qeI\naq+FCXq80pn4rpK9/c6df4iXMGfzQGrG963Rwir7hDhiokZbGkrusHPNIt9c\nQHKdHUC4iWWlV4wwjrfc409JTF3tkwPOAvpkc5O2l7upF/kLsOzXDFSBR8b5\nzpOech88vZ8lP06DNv8Ddr0lLConKGIYbwRa1CtOymnYSRg8eX5u7NMomCMl\n5NPKhDg52fZR4BYH0Y9azJaLHA/xnXVBxcXRZpNP8s/37BjcvCkdcM9etTOE\nj/4R\r\n=G3VT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"9a16328fc88600e4b023967e082ca8b3696127f8","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.1.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"10.5.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.1.2","rsvp":"^3.6.2","mocha":"^3.5.0","sinon":"^6.1.4","updtr":"^2.0.0","request":"^2.87.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^1.3.2"},"peerDependencies":{"request":"~2.87.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_3.0.0_1537520007415_0.8033434799423764","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"requestretry","version":"3.0.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@3.0.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"6416f3b898c7ae2bfb402de06798938bae3b2421","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-3.0.1.tgz","fileCount":43,"integrity":"sha512-vJUdB4xucpx+Hc5N1hV44/fHmT4ovhrwGWfG9MtZR6AeO1G350IqPUXJL4gfZND6RtqoSqB+Zs9EeCsMizYf9A==","signatures":[{"sig":"MEUCIQC7egRqOpl22romWl1sbr5YxDo7TuoEFIoh/B+Y/5vQWQIgHD3VHuRx9O5e11W9cLIM9KC6aAHv510GMQm1mqrmK3E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":223775,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbq4NPCRA9TVsSAnZWagAAU+MP/R1R1TdgUUwkbfxyYumq\n0STD2DL5Q64qDF6AyqxwniIEYAiwqsclOlT2N9Ec310nSB2InAkvYO8yKUtO\nuokfqqxRj/Mq6JhOxFhg1bdcYcIrFofuzNLeIMlzGehoUabIrpSbp5qQVxCn\n0R6UrWTdfbvp/415WpQUhUkv+rjfonrmgYRY6MqVkgrAr1J55eH/3BreGo3o\ns9t0Rp8fLx2k+K6YGBi3ut0aGgSSH/1brEa2282yhpcwnPHwqyES+IS/TseO\nvXn7IFZM+A2hMv2/vC93ylkFqUHFXxDmfc8atOvGbJwP5xSHN3pMlE9iYXd2\nmz3MdNkVT0OvGs+tPoW07dfMiSHsFwIRvZODbx1sZOpGcVc1goz51geegyql\nsS4HcZvLAplwkI2QC2N4+BlTNEW9PYAWbq2dJSGTILEiaUB/uMS6DxBaJdQp\n58rwnP9t3cnQ5Xa8t6CJSOf/DvsxdSaRyVXrewxvfdsgeuwEpRCVNpBEUIlW\n0rMXit1tQD/l7y+fy7aIIpCGnvMMQX/UZoBfJDIcVBejEX1yw4Dm22JXmOte\nB73ENOnaST1QT3ajsQjMZeKI/QVJgGGQYEHNMM8SgfOVM7sqShnaQK1aByzm\n20RnjuVAYDqXLjZajabQeHBpn0JKNgM+PLVkcn8nr6LoQ66dlyELJpT6sln5\n+wsY\r\n=bDNe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"43c5b7924587bed36fc4bddc3372cf20e0e4029a","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.1.0","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"10.5.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.1.2","rsvp":"^3.6.2","mocha":"^3.5.0","sinon":"^6.1.4","updtr":"^2.0.0","request":"^2.87.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^1.3.2"},"peerDependencies":{"request":"~2.87.0"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_3.0.1_1537966926331_0.6261855353730068","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"requestretry","version":"3.0.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@3.0.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"3e5024c03db28d9c17136f1b0857ad5742be2128","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-3.0.2.tgz","fileCount":43,"integrity":"sha512-3UXO4EOBwRFXm2AeAElyhM3bmMb57jZi5QC2httyXXSyT49O6o+AdzUZRA/vj5O2tE6xbdpDygRZb5Q19Q7lCA==","signatures":[{"sig":"MEQCIGzyAw7BsUXEp+GfBd4PQOyS6+FSwYpgUIp5aOB68QgnAiB68l0yeLxu7f90629d4xg1CRrVNOnvXRJB/hpS6KN95A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":224140,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbz3V7CRA9TVsSAnZWagAAKQ8P+wVz1Wnc0guiFZc4+g1e\n/fVIqVlnI+U5wLDwVfVGqHxk56Gi/+rkw+WspO4tWn65LjRcHV1vhTZhDDj9\notbjY40Y1UwmZGQ5mnTtOHprtSseRbqWHhWUS8HB9UiUNjMNfd9MxLWgxvZ+\nbk9q44A+nCARck11WsIkQN1v1gzvGevnWqYD1rDgyITxgTPWV9i8B7nlqCCH\n62hv1BQDYrNtf/rrwd8VzSqcJJ2ekJ1/7c9xvWHhOZ+eRcF7qztlxRawItmr\npI7t/Os37RcBtOvL3NxeHpTlJsOA6ml5yy2YfyPIytCO28Y03QFZTAp8BLTK\ndCZ3i1FVymLyXgRJOAyIaJIch1rK8H79aG1o5hQFIww1mCtuXSzhCYnluLsg\n4iOc9zEMs+fySokz3XVM5pO5uEPFgz82u4oPl7nN6dF+ACbCgZNXsUzgjDMz\nDOUrvk8DCSgLuKOoPTZtsITeX2EMc3j05I/qaCDwP+U4Z4QKbHKnoqyMS02A\nQ5h231E1CWrIlEVosEL29sAoNO0lIQEAE4lOMdtJV7d8csrLFFYMByZEgOQV\ngbx0cX16+/zfpULPckjk6iZHp9Yg33D3Bf+TjLaNoS5E7ZPwUhpCd5pjH/pA\nRJSvQrHsWOwLV+vOEMyhaKjh6pTshO8iGNMxbpUFIvpXhsFGsHP5XD0q7xB8\nq0Tk\r\n=Uk2m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"83be067c2cb8ec035833d4d98ca33e4e30cc24d1","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.0.1","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"10.12.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.1.2","rsvp":"^3.6.2","mocha":"^3.5.0","sinon":"^6.1.4","updtr":"^2.0.0","request":"^2.87.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^1.3.2"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_3.0.2_1540322682417_0.18118342233412688","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"requestretry","version":"3.1.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@3.1.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"c8e1976bb946f14889d3604bbad56a01d191c10d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-3.1.0.tgz","fileCount":43,"integrity":"sha512-DkvCPK6qvwxIuVA5TRCvi626WHC2rWjF/n7SCQvVHAr2JX9i1/cmIpSEZlmHAo+c1bj9rjaKoZ9IsKwCpTkoXA==","signatures":[{"sig":"MEUCIQCluHNIwJJVh+C+zhU/ZH2Go2ZJXv/BU1up4Lga2MuDrAIgSHfwp2SiXhqyb8pKsKl+3W0UASI+5CYvhAPh/KW4bc4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":230175,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/qgYCRA9TVsSAnZWagAAj3YQAJGPK94a10r6OXCKbHaa\ngp0TfD5r/ixs/Z0dEtA2MhnORkIHDv7rIBxDLoB/XRIZXCNlXF8JE1vH9Ls2\n0MJxFM03QXOcjlNWgsM5N6YRmODks2eB/aa2L7ZMI2EzZetIdj4QyvAQX9f+\ndKFLHfW+h0y6cxw86+3r8642mLAb4Y+BVwnQjlHPbiQSF9qGzRWLspVGihWF\n+VxCTDhU6NIuKgYnAggEyB0KmrAcerDvKaUpEBDRSqFjo9zG3TTSDuCyNmue\n3dk4ierWfRGnzxUj3torVM54yvkYtp8SOlKQXuVyanEARH66ZJtGdUCrHoRA\noTHmGqfFAf6ogBZvBF6ikRRTw1yUozW8QJ862Li5OYNDU8nE9Ziaq9WWPzZh\nK9FFF3gegepyylM0LF0BUzUBifZgmPdUv+hDESfBMUt4O1NHhhnaVtHo/5ly\nihH2KP7aA+H+2BuRBMQiQAnzNQDyerkyK+CY3NxjlHsiyPFDBzB4Zw6cM2+I\nuG68aT1VX7IR7PthcokkjFaqEyMyzk/7mFHcMEcGlGvTjTK9vMe6wYK3naCe\nS7Onwa+x1QgwTLqZgosSk4hb0bb/e3wF0g6uP4zW7o69SlIyzBYL81onI9Pm\nNikzgQtIv77nFm5BI+fR/SRG/j/LD9GfDUksjv+9GgcP3jVm59+8xMfvGgjg\n2f0t\r\n=m4eC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"c05651b63e3ca3cd75a69afbc936b2fe5691882f","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.0.1","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"8.11.1","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_3.1.0_1543415831361_0.9722628783245129","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"requestretry","version":"4.0.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@4.0.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"4e9e7280a7d8561bf33e9925264cf026e2be3e89","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-4.0.0.tgz","fileCount":43,"integrity":"sha512-ST8m0+5FQH2FA+gbzUQyOQjUwHf22kbPQnd6TexveR0p+2UV1YYBg+Roe7BnKQ1Bb/+LtJwwm0QzxK2NA20Cug==","signatures":[{"sig":"MEUCIQDQndB3K2+C0uPYUx8flR5mcB9UIyvc6+MZcyIIlbrI9QIgNwNfILmM6rKWjVm8Tsd7xrJdyDc7wGDRXMHgr29XZgs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":233139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcirKXCRA9TVsSAnZWagAARP4P/RYB8xr5S9xjx9BjCfQA\nWZLWcsB+l4v4TPU/SDQkfVO3mmym3Xj8iIiFxIZ/zapEZAAIC5UZlQr5ZY6F\nhz+ZcfHmqR//Pt8O609Annbtd6JJXhShceyKihPr7/sK8PI1RuHr19e1pcym\nPoZXL3pHaf1I3RlP8gWmwy2tMqJptXqRiHJw/0OsP94GmJ+xneCrB1xWaFsL\nVe9b93oe4mGF/QhgzptqpqkpuaLEBTpJ2HkidoLp1sevqWGXGoLZ/JzlG9pj\nbZHSc8L5DNzxj3xfN96Hzsizg4ITaWGQRDmz1dm5TtIadE38cE4uc2V/vN2o\nFm2NE6NUSvNwZ0oM+oBt5HJO/vOuVNBSTSaoZJgVAuV7TDoF7O1IplzXg2Kw\nx42NcITohvm39iXVae0PSI/GjM8/VHzsRlKa+5N62x+5KJ6md0XDpS5RhiAS\nxKXE9ahVBxJmJyZUVMS9FwIn5t/9I7mzzZBjHQoJlubsC8G1/umn7iemBCob\nrHzLLU+V6230pdo9BaGG3gZkkyQR8JjYmsK+MgtR3UIelSMeiriQuodi6jK1\nDqGb9BZnhzdjysxxzBWc6/X1keaGygDHNo3T6DoZyBHgpmm061rikrOJ9CdK\n/Wj//1VSOPE3flzxZ1xwZdw3POeIku4cfoI/GEgBuUgsvkPmyiNh4Yu9Z3xV\nmvYL\r\n=EMXY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"0b3fab7767e3ad94d0f1c52cd019695bc11edad6","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.4.1","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"10.15.1","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_4.0.0_1552593558785_0.8748146715020282","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"requestretry","version":"4.0.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@4.0.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"c7c2b5e9a95cc6ecdc858c0436d07c1f9dd367fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-4.0.1.tgz","fileCount":33,"integrity":"sha512-2XqK8zMipHFBmedXl5CpCTz1d4kmDo0LEpW8qxvGd4Nu+JTIE6CGFWBjzpMq2YekNZNTqIwKz7hSou97RnkH6A==","signatures":[{"sig":"MEUCIQD341bhXlQ87/GNQzXRid9SHEdYguyBtN6yTZ/QrIWYGQIgfoa9VDmO8ceYbGC2qwuaPA3csRs8F5h6JiJAnKjp+Sw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":211309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdocy+CRA9TVsSAnZWagAAGE8QAIh5RdFaqw7Oyx9BwY/6\nbC/brKzPou01LRIC7EeohhiGJkhRfJZOQl2MeHJnp9LkwjjR2IyWfx+KJ8Eh\nHGfttfbtu8hRj7aB5TsmAJ8Jtj7AUCAF3E5SuMciCdTnwrXwbu6mn09abo3d\nteDjIdw6zwoLxve0693wXrtgn5nI1F5k0sd7BwdtrRNL169YXp+ZkKdwG/AX\nGehVLPL7PbsnNvECyUk6tUdmLroqBtF4DrW4D/eLJnM/9cezQ5qXtXIyk228\nDMv40r5OolGzGgOqz1EVWxD9JlFhHIZf/4ktDhIE3sK01MakOHhgO2QyhSEP\nqQbU+QOrifM8YuPYp1UwORGjYBV54iDG5CNYwDWY5TkxUErdSk85+Xh7u1V4\n+72cE0BVq/592ahIO+EjmWjjeqvLn+XApW9I4xwRraSEAU+hlaMXTuLOEWXa\nSLLgLLwbu8dtNnm+YxeB3gC1XvAsWS2pgKkK/g1D25Y6lLLZ0Rb9zePzpmZt\nAO1Vli2KmbLnMB1Vd8rc8qVX4t2qI9/BHGNiVuh73rBOQUjLh/DIt+ZS/kId\npodc0+4Tqk++Id2QZfccQrkQXbF2DfYorj9lb/UIvbz+YUjV342dH+FL5bcl\niMlqxiG1qgOfod8+VJTBMF0ezEWOY88V3B+1Wut9rX6sMTCixto1ZlCixCkU\nTyvL\r\n=99Vg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"d4a3dfecc31c610869c613f5ea8eb1c9249c89ae","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.11.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"12.11.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_4.0.1_1570884797899_0.020037995025008692","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"requestretry","version":"4.0.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@4.0.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"38213a65393a25b012d2208d6d20073a7db6b30b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-4.0.2.tgz","fileCount":14,"integrity":"sha512-ZGdO1ZXUQAeCB9xOS2keSN501y7T1t0zPOD58jTAOwamt6qkcBMaGdRBHEOMQRnDtT5fn7S99F0dwADUqCmYqg==","signatures":[{"sig":"MEYCIQCj/fVyrMrQbcn9utGsysvUS0F1axCJmPtqxG+HpPfsWwIhAO7lzlwCzgNsNnlKTt/cEErkThFrfC/5MY9OvQK8iQCo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49619,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdocz9CRA9TVsSAnZWagAA6GUP/1I8PswmHrF4iCzCyWj4\nJILjiwxoYrQ1XaXpbcRqPW4SATu3qum7Ea3b2OIe+K2aivXyScJGGK+Htb00\n6aI9HtWXRweUW7PSiM+eRB5RhVCcqKlLO18scjtlCu8A5+jWlyH4d6ELh/sO\nMhKbMLveA09gguJF9+qW9p+dO5XGIm2LjiFRjpDHkvCouIZUeYWaybncuVXk\nPIeua3CQI2CLlTUQ7sbwdhhB7IyCsEHZh/f62brH+3x6wazrG0UuTMbh8orz\nFAauR9RaSRctlbwAcoS8DV4DBM2aY7FBG/6qk8u/o80dWt/oHM8zBsEJAcov\n+cEVcgW2VyjOLRx7PQTXjkZXlWWVsYTP1K+iYbInTjlhiDQvOIU4vRZR1KpX\ne7SUWXOdDOY0Wh+ofyKVIFHfDn6USZtP7tTIhJgdz5YDeEZEgs/1RUX8/LVd\nLn5DidORrkr+GDvxFIvQwyNAaQlEt/hEzRVUZVRyW1Z3pkmkciZpSQ7km+2L\ns+TS+7Yu3CB5tOKa+7VfuAwVRpzd0oCiBW089qxfdQQtZeN0pp5HgB2lRTDy\ntrY4f14xZJgxoLLMA1V6vKC9wZ+JYtobP8W+wtobRYftEC9VQHSh3JFGsZYJ\n18/yxof/vqWl0EgBTzEEThDm1ZXnAT7YOBR3lOhM0KPh0C/r8JtX7DYvOUxe\ngl1I\r\n=XNRJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"a73a0ee4e35f9f352a67d105dc9180582d81d6fe","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.11.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"12.11.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_4.0.2_1570884861308_0.3335067384117125","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"requestretry","version":"4.1.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@4.1.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"7e8a2247c7d58726d3efb5d25bb1915bca8f0be3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-4.1.0.tgz","fileCount":14,"integrity":"sha512-q3IT2vz5vkcMT6xgwB/BWzsmnu7N/27l9fW86U48gt9Mwrce5rSEyFvpAW7Il1/B78/NBUlYBvcCY1RzWUWy7w==","signatures":[{"sig":"MEUCICTUSW9iw3p3TtZmj4XK+OwTkKtfaZjZZ5/Y3KBnELeLAiEAqxuLuzEWHO8+ya33640gxlp+SBWhiecm+3Yj4DM9XmY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50573,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGFG/CRA9TVsSAnZWagAAX4oQAInwYFQRavx552kJgUDC\nKXceMcHBW6ENBHzMKhgmRb6jMRl2zPvS8UK7F1geSDH6JWdfoTqR6ZfbItc8\nsMqwYW2rB0eQY4UvHhpnHUvbSKlabUCcLGEnjWLSBzMsR9hFc4ZNyOmH4kMv\nS3FXt6HmJpxsihu8s04qMlHxED5ijofrbS/Fl6i7E2YGjSeUUQXI38GuNKOb\nkN34lEQWqCqhMb6VMS6KuIYyzL+EAj2hGEvqg2x1VK3JOuDcZ3QsJGvFH/qz\nyq5HrUm4JckKzObBeDWy/HOQy9AJ0aJdi6VEVG9MWa2egVSoY1HqJdI3lX7A\n1taxmXh2x/bUjh1Z+7UHax+FyUUnt+E7LN05Pn5MKt53S5q6L9QrHEuVmVgB\nfZX2BTB3QmCeiqhdxnjtRCAU9Yb4GHzCAbipM+Ed3MPyh7PTejJeZ67H3VcC\n+Fv0DCgLfdazjfJGzRLP/dFV7jrSc8BQRBlu4tkxEqAz+4qlFOkC9BVA+8GE\n/+nN3fGuRsCERoQn4/+MAbAilZAledymOKkSGhBWJNiy5qHI4akwZcq+OsZp\n35CFaLiAddbbaTIN5PtEIN2hHoX34vZSXsLkYXb04yuXlGTxTb2yjATH2Sgm\nb0Sc8xo2wsYqT2WVXUHBx8ly4wuVQpT++VLpkcTls6RIezve67N2Se1DB4aS\n3MSf\r\n=sBSn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"318435cc8727099dd4bd71e28c2d6a5503662209","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.13.4","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"12.14.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_4.1.0_1578652095420_0.7432304309600741","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"requestretry","version":"4.1.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@4.1.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"cff81cf9cacc98bdee1ae8bcf8b542afcbc1938d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-4.1.1.tgz","fileCount":14,"integrity":"sha512-sV2lkWitASDXpIK+m0scC7dHBkW42EKj5iao6Cp8GCXsXY7qS4Q/min6PP5YBuqgV9W38lsA7LUhEkOezl1/Og==","signatures":[{"sig":"MEQCICIn8srg94H6T9Wm1YsGoIBPBXJ6bWpgHxRkkIhxYZSuAiAXua3YRaextxOtjRpUz4b78KUuZPQsmoMlnn7x48qS6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50895,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewjqJCRA9TVsSAnZWagAAdoIP/0zK5wcRp/hlG/7wLbN9\n+JTzHoWDDhbKjD0aVri8jFDBbPCChM5svCZf4TsbTJCWeq5riZwvDk5RVFRu\nfCEAVU60mtyfEeL5kg91wG9q2qaVv6s2BRelWc0dWi8Gh/dW997C9sBAgfeD\nAWBojHgK0yNibIJkXmuDw2AcrE+ILRshAG5XimIOwXLRx352100zlsw/RA/G\nwfnSEKFoo4+tZP1rhv6+Rb1U4VGu/UhAMoQe9+/CzogaU2oeWuAhFz36ht9W\nEIuTkQVaBeHS1fVI/flYPPGWbaharlyVN59VlREQUiovstMZ9Y1Fq3Fp8nh2\nt7EQ+92q39/nKKtLq6S7ezeQMLs5PXApBqyP4zuSgenzBXVGdMFih9UgHuDF\nieb9CGE2o66/9mpcpBMYC5AEQrkhBgAKr1uJm5PF6tdjEJwnLyR6h8jZYzGY\nqoccdeSHQyDct9iBSKe0tmfon0HUNLAVpN9MfzrFvEznrOUj2iy3CFkCmWTf\n99tJyclG9KEJ1iNsr4rTrgy7Hie1OHY/HYhdUF/POeDgRWLHcoImdaiXUdpw\nLWVxRyPFe08dQEiFZvwICmsvahdo/Tf6+umcz//oAax1bBpRfcgJ9A+zz9JF\n/sJZLMjMPyb26cdoZWYLL3jOiuknd41VLu0556kUk2THeAfxUHtyOwhoLWWi\nXJzc\r\n=IkTn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"1bc2d1558409ed300e8a8134ff89c0150d3be37d","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.14.4","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"12.16.3","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_4.1.1_1589787273195_0.38483347895521236","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"requestretry","version":"4.1.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@4.1.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"f5975c0c3be9e352e25038c9fed482d5cc51978e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-4.1.2.tgz","fileCount":14,"integrity":"sha512-N1WAp+8eOy8NfsVBChcSxNCKvPY1azOpliQ4Sby4WDe0HFEhdKywlNZeROMBQ+BI3Jpc0eNOT1KVFGREawtahA==","signatures":[{"sig":"MEUCIFnIogTx/1ajQVsb931TWzXqemiIAhNSLnz8YKZdRVwkAiEAx/2284o7ZadYuHebY/5jhmXYjdtuyIiLrzxPBLP1vnc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51777,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfq/uzCRA9TVsSAnZWagAAogkP/A8pwWbVAdHwltTAL9Z2\n665bYr3m3VX23E5JveVWAnskZAVSvUxrGmhCczgC6zBJ4g69tQOfQkYdKjR5\ndtH0lfljiZMzjQEkS4OEkXgqE1pSPTT6n4fvnPGKSX+z9QMTcrPmODqj6Vof\nEo8mNIMib8QMwkbdIBHXZoa97iqUxNqFXR6kdOt6boebaPp3NeHNTqbzTBci\nKlvD9ROfK9dYfRRzzzA2eEpc08eThsSTWGxBJhjrwK1yyAShYVwj6M1Z4ZLC\nlXQfR+xsDWpv8UBoHYx5vzZYVCrlOd0edgfLCFnBe/Sf+eeYVOq5SKp4LrS4\niWXCeCCtTb1ThZZ1vWCaV1cbhkqncLtEOtQ48LkXTxJEaUzuvvXlB8oYqtlS\nbegY6KcfkMCb3AXlnTYjy32a9HjCpf+TDZ7t00SHafobud79BFp9QcEXnzvu\nttRYEN6nh/cW8y/H1Oyq85X0AfbIEGvGn45WI5y4in598KY3Q+duUrRHqh+S\nF8DDnbv2UuBcIU97D1qTsHnU8A+IkDXZTEvIUhsDj+s837//atjb/tQPDcg+\nqEZcHY7YdkIZ7GaG66JlsTHq24Fee+eLfRyOt1jJ8otrFeo/VwAZFPuhmo/Y\nN8TTVT0YOkTJ758Fq9PMOWparjaTRsexRR/utmO74rHdLDXrXfjHyvD/Pxhv\n3RQj\r\n=tRwz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"6550c2a17653c22605b9b2fe8a2b0250a3be6afb","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.14.7","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"12.14.0","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_4.1.2_1605106610710_0.9599966434987135","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"requestretry","version":"5.0.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@5.0.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"be630c72de3da357e2bf5ebfb5ed6a4e14535ccb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-5.0.0.tgz","fileCount":15,"integrity":"sha512-Rx0ETW0O1K+PAL/w8XVE2yhBCEtEsu6H690qbyCBT9mAHetXaO3BQ5hO5QGGkawTu9jG29ErmfqJZwX+dUy4tw==","signatures":[{"sig":"MEUCIB1Ikt9A8m0+K+N9GcqbgfXdta3zYP/jtZHWZzh77y2RAiEA+GmUxqBvsrSqKBWQntZg2zQ+BQyQD8h9/Lfn5ITCQFw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLDtfCRA9TVsSAnZWagAAuoUP/0jZ+dpMpMaYoqSshzXI\nVIdZRqF/QzY0SstektvzYNCBivIGpCu+BOQnHRxu8ki7tO/minXHjPXurFHF\n8g33v06z7t3uqPObzU0W0AqA0YwnF3RjD4j8INcOBXhzVpTX3qrWQb/unAon\n+Z91mMzQn1WvtLVN6P4QpgcpztNObTHmfMAo2GJweNxxtkJWqxu98UgInm1l\nTB85BZjJ04HTXqS2/gZsFuej6fIr0BtGXVU4rtt0Sihj7Ye8nq1ZCllXIsQK\nzIJfzlQpPFTv/nKuNwRhrY2eaUvCNnnWNjGsFAiZt2WWj3yQ8+0WU3IQjW4f\nZhhv68GbaQWougTIO6AX6mwompRLM1Hcq84GApCYm1WoIksV67XT1atE1/RU\ndekC1dqWIJPuXSBDMLZMXlrUfawcpJ4xMm55dE86/lJjojmW2AoHNdzKkuD+\nOHCjvSLtkies/TFnUbs08LRPa6yyz7uXSa6TzGwRmpn4pJdheWxaGLpAIhVB\nSxGl47qzNCMQduIooaldt2hzWGA0coXnfMrRPa29Az5A9gTENHLzx/hhPJ1h\nDCrLUF960iF3RlcG6CDBTHnm1D0A3E+Zp+H+L68awf9gFW2MhvzDAslnoyF+\nULJH8BXKZG5luuKs8jZHr/32EXAKEUhtJ02f8q8V0l45SqatAt9KbqA2/cKK\nJo4T\r\n=dxFK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"7b53cffe4d77f1b3c6f090250b4451a50117e969","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"7.5.3","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"12.16.3","dependencies":{"when":"^3.7.7","extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_5.0.0_1613511518958_0.07572179257609912","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"requestretry","version":"6.0.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@6.0.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"a213b2133ee3b18f74c2bbc0f4e094e561b57335","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-6.0.0.tgz","fileCount":15,"integrity":"sha512-X7O+BMlfHgzetfSDtgQIMinLn1BuT+95W12iffDzyOS+HLoBEIQqCZv++UTChUWVjOu+pudbocD76+4j+jK9ww==","signatures":[{"sig":"MEUCIQDolBTdpqmy0pKu13ypxWDYb28ouNXsJu6txd0bM8oVUgIgdYX8pvMQK/G7A8hThXjjCpSYzaXh9nRo2hoH8jgcfgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJKR/CRA9TVsSAnZWagAA26cQAIwXrqMPxfEeg922HBpr\nlynQxpkYzj62NzgmjSX0REVItem8vqY1iUVq/Zgl+VoQXurDE+/M+IYIQ+Mk\nV9/B+TrK4FrmWheQaQb7DSJyHrDHqLwvesZd0Gkj3SvRU8BE1WNrde9+ZvY/\nLKu40e7oKX81yfKS50hbjSj2LMsxmFULXB3Vjse5tYpx9zQ4RhKxgVmijDFC\niWrFvrMbfbNpbAokgM+n+0QWQ3uz5kz3Ueen3nkbAv0SSZIHPA1bOjXttOTG\n+CicIHK36ye0gJOxIvpavNpdQ+bF795G6seO/cmsy8j+gZOzHHPQx13rkEb5\nj8CCKidtCPDkng/xTowoWJp66+NXrUrw5Oe92y7ATPdiqvoqYyoivEDKubRA\nOUhjTfbuUZi95EOIf1vnQwOf07+EeXsYrv4BUcRm8a/FS/nKh5FyMZZaibll\nhVelkMZbaSOIC0c2a6ul9TPbOh50XN8aw+vm6x+NvYTpRvhLQw+b9ws6HT1w\nWCIUzwPVw0NVPh0dVmEKLFENC34Ctr0U41XmpctpW9SoLEIJ4NFDFCtnNm7m\nIdZNFfIGk3aCe0xDWY7Hi7GVkTDId5G34WyWdmJwt/HxDROd+wDQpW6fb0KB\nvo+4tOXHI6UY0C5zi+qasJCtSy+su2tjgoNUk3SfYKzDajS8Hc36C0AKTYGF\n9ysY\r\n=BkEW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"1b8ea5c4d14dd08ee21d69ce060f7cb01d216535","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.14.11","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"14.16.0","dependencies":{"extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^12.0.2","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^5.2.0","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_6.0.0_1629791359371_0.859753833615678","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"requestretry","version":"7.0.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@7.0.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"570a9fcbeb2d6a85d7f15eb2265840d787f0c44d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-7.0.0.tgz","fileCount":24,"integrity":"sha512-g1Odu3IBKb6fYQog+HLy5FZ1CMwejIpD0iX1u1qXLsRj8TeQmFCpX9pTe50qhIirKvx1mcmoAeuLBFXLlBw6vA==","signatures":[{"sig":"MEQCIB+uG/xQLyPwHjiBE0AH/68b57NF0xDGGL4syCAZB3TrAiAqckmxvOiKJrNHrXzlzIl4tfMZOsMfWkyQN8FMpzJBqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79860,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiE8fmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmodZg/+JdjaBj7W3B67Xav1+X+wbXipjSl00znodpRu1sNGvM6O9RPE\r\nu9yR+bgzqQotHRXSlCsTgayxbzfwwRcU+lNIuGG6EtvD7PK2RdeQxCBdsrIv\r\nAfiYtnJZaJFdRNY47oVHjHYZo3FhRM0VGev7EqUNW2K6UloyxEOb+YH1n4Zz\r\nEAeZov0i3NHZH2AG/FuyX2ig8Pn/IQfZCIEvvNLfTC/C3R0MlaKbOVKbg0Jy\r\nlJm7PSM6Dyb3LKno8gydlqI5tXpEgRmeF0Fbt48F2vEiQUVHBNNpXOkirGbE\r\nQ8CMfHmLnxcG/9T8BMn8mg/Mvo6S31Bw70D0vBivWKDUKdv4i61bVFyuEYTl\r\njZmuygUZ3xy8H37LE3RwzNkaWpvpJyXM3h2d72vbYq9hkhKqTeaFi0sfYcY9\r\nKEDBvhSZ54hxnviSm5I+JcoHcjhXZ6vA4I8/UMKqtAlIGHvjRPdVwHRSLXPu\r\nx87INvXygBJTrXWboEKHLRceAx4vu9D4Mr6ZiAJLDHRPE8Do1PJnx5f+ebBE\r\nuosYLsi3Lnp1i47tHlt+wne0FJKj1jiCjb+Qn5fOqP0W7xMvbl29VVsRVFdY\r\nlOraRX1iq+Sl8OXzHPzSYf3YnQqOWa1bqQbrbD7hgRrUNwQH6kv3s1vEmVzS\r\n3GThM2dMoM+IRzQTyw0wqwcFmjrf+1Gs0r0=\r\n=bOe9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"4569005a48f8cb2c3a8ca7c78bb23437aa06b2f5","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"8.3.1","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"16.14.0","dependencies":{"extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^15.1.0","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^9.1.3","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_7.0.0_1645463526660_0.9135996883289512","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"requestretry","version":"7.0.1","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@7.0.1","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"04ce4ba1a634506b4cc8f3fbf931f3d2928cf17f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-7.0.1.tgz","fileCount":24,"integrity":"sha512-dlEq/ZKPDGtC9ngvg7gJ77NYOc0F2fFJlOoxIWQZ9G9U7uH4HYNmIzI4olDTciL6AGUf6XbnD8GhXeLHbyiIRA==","signatures":[{"sig":"MEUCICfqYHSmZxNR7LmZhE6hVbQcAyfD8LQFgcPUjoSXy74cAiEA+S+LW1x/Z15RQVlantfTW2A3xMMSbZC2Ru6i76DckIo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIJ4xACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr0dQ//Rym0SJ4RkV8cPObMbV83oO+ygdjjGEkXuqMMp0ICj3RjI1MT\r\nPWvNDNPvlM5snl6r1OQq6WGNrxzsazmCroTZ0sYrkligDMA3/wzOOM2Th/AZ\r\nRX3KGK8jwFOpgdHe8QhRlXUYz0uWd9t9nL80nJiRALY6KdGClnyUgEGPAmsF\r\nYwxDy3U5FsRrw1VxxdNmGogjboiBC76hzWvj+7p1EzP5Q3Mk0CAG952cMamB\r\ni7sRlsEbR8gNWeFIO+EvyExCbg4HsisJsNX4wf1DPNsE9lARWR8b/+Eyrto2\r\nmhFOWMDA08k6J+Fi4HOcwA8JoERriis6mqfkxn1TFHZ+ltjpyaO2G58RWgyz\r\nI5yqtvqBt+ab/Htvt7OjcEpIYBqyVKFtsosMHkWhCx4llsQjm1DrY8GCxHs/\r\nVxfC6ZH4cbXycd8iY5QxbapkwVvdtOyp55Wj/wI8x/gvL2OgRWD3Hf6S5+nF\r\nzN/uUIFg5AaATE6M8WknRKgXeY/QlX7WoOHRHhSR1c2+g9Eyub9ZzhvUVGBR\r\nb4PjUNDkt/6yxehsvh7WKu0WFOpxwRF1cmM2jBgUeS21xDr/6RE6MK/aQ6Fo\r\n4AyemlGEBxaAo0N6cHk4KipC3Toq4hksFAtzoPa8EfUjQB9RJdgfvBiZe2X4\r\ncZlIw4ABR/ryANX4cB3UEoZYR91ramXS34A=\r\n=pCW5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"a778a8d286bfb5af94713180ed59fbb514182288","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"8.3.1","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"16.14.0","dependencies":{"extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^15.1.0","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^9.1.3","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_7.0.1_1646304817727_0.9555749532048119","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"requestretry","version":"7.0.2","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@7.0.2","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"22a169e5d3aaadd95d00401d7347511f3695faf4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-7.0.2.tgz","fileCount":12,"integrity":"sha512-Zz8z7G2OuVs4F0wR0shKMEMm7lNvPNHM0UIHNns9qfyuBDKSExoTsZGtSjKst6nPEwlMrbA9G+m/yC0AbGj+8w==","signatures":[{"sig":"MEQCICLZKQx322/Sf2vGH+epjyhBVwM4hEcHQ6TqDGbLSoR0AiAwIEEX7b7VqTd7MUSwuvriatBokVmO7V4UwS8Saiaw4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55440,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIlWcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpaWw//RzB7jxp+3O0ub7mrs4+WodE6xEC0CR7ULNI0dqNZSbDw71AP\r\nZt+Idl2cr3jFpgjRq8kx3PgfsShaP0kgUZEGUCgmAe4ha1wn5sHk0D5+2FvL\r\n6TtHUyRJJRHIgLt8HJ+KjAts9uRgClBELKYctEkQZFqhaoW9Q4rB2Whmud4b\r\nkBWZj6aKJMEmABbYQdyORzPVRqmEYTkoPp+3GZdbnzJkxZ/FgWDqAnwK7YDG\r\ncTJO/knUlnKXzWAF0rrtJB9Ov7086N66YgUuFcThw+R8CtCQOruMFUVYIfgB\r\nbxD2lKxvDRgAqoEjD6QQcTs2n/KQ6IjPb3dE3vJTl0sDls7iWgz4qtPrVb+E\r\nsaD4FvSmSmpiVW+ZWDfgpWmqqtUaFENzEI2e7JVWzbdE8VpNQ/FO3hMcyJjB\r\nnxEB0SktKddv/X79PXlcQTi2xlg4q/zt+5oDXVXAlRLqqgqp1UH2894h+aLX\r\nmZldAiikngN7nER/MsT+YxTdB4REfdL7FAso7xb5o8NflFmUY3oe2Il4jWrv\r\nU79B+xTWHN0fKLJomKnmP+LVz+KhGslIUGfifSqGrFR6ObC6Bg8ic70T2pAw\r\n3AkIcGu6Qcxn7if3lfAekvtFd30aGj2lBqtNVf0Tkxbb4eNsejFbz3n/Oi1y\r\nUM177wE3JVHMubvQHsPUOOH/zIfA9TCPasM=\r\n=Y61g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"4e3fa9de7e112e7c93dd2765d7251e19f0fc56a8","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"8.3.1","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"16.14.0","dependencies":{"extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^15.1.0","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^9.1.3","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_7.0.2_1646417308734_0.6126571439791972","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"requestretry","version":"7.1.0","author":{"url":"http://fgribreau.com","name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com"},"license":"MIT","_id":"requestretry@7.1.0","maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"homepage":"https://github.com/FGRibreau/node-request-retry#readme","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dist":{"shasum":"d16a1a57a95295211147841550603f3dc527541e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-7.1.0.tgz","fileCount":12,"integrity":"sha512-TqVDgp251BW4b8ddQ2ptaj/57Z3LZHLscAUT7v6qs70buqF2/IoOVjYbpjJ6HiW7j5+waqegGI8xKJ/+uzgDmw==","signatures":[{"sig":"MEUCICNr4sE50tWyXWfc/FWFzMSVwDnQY+o8Pg8x9qxG6dDnAiEAgzK4m2bAeSY6qKLAupCH/tAZv/veDrsxvGSH9K/s/BM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56546,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZrjWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr+EA//QsBsIBejSmRK+EWA6m1atUnI2R+PYi2Rx+R6kE8qorBpWyVi\r\noUlONkF4MERY6loyQjYuED1KooOEtNebA12A27vRa2xnScsmsVNH1BiQsKOV\r\n1bDitc2gTlQG7Oqy6Ouixhap0hEDM2htGFRytih3frlexzvA6Ubr7ICNGiTQ\r\ne4HO4y3dCi1PJwq/pimYLBGUQKNtBP5SNyYkW1w5zULoANB9CPedjvhEKjHU\r\nYLv1OMZw+Y7eYKAliV1+wAQvoszPExIgePeZT2iGQl4n1Nc9+6loZV3zxWs/\r\n6XPkax7a4iDw015gf/Y0VBAigSEisyk42X3P1VWZ5bfttCkTc9jDmiTeqTIM\r\nWpb7S147TbOFKo48GvGHvadrpueQMa3UWDbSafNQgnRWLg+ZUbCBxHQndrCG\r\nbn0N2VqCK7y+5csE9B4S8wHb/8umUT7KITp2xgdjq28yThnt/HFEo/iPLHvN\r\nL9jFbRQ93+NxauUyqI79WCjKx9ig2N9xth7riYr6Ibd4VbeC5kke/46dNYkW\r\noZq0lfnon7hlN9oiVPsN20BqbU6hDGAhVm9RAKs1x2oroYAyjfmTGUwuwJGY\r\n3ZWZBf3kb9Olx4kghMG/lw6jmNPKJGnQCkuHT1GdrjizoZInLH0qNrC5BNW7\r\n37zy0tHHu1ijtduS3rHNhgjPOr5ZMr0o09Q=\r\n=JdQF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"d2f97e6c96ad0e0e488a44b337475b81a376e41f","scripts":{"test":"mocha -t 2000 -R spec $(find test -name '*.test.js')","update":"updtr","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","postpublish":"npm run --silent changelog-git","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","send-coverage":"cat ./coverage/lcov.info | coveralls","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch"},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"_npmVersion":"6.14.16","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","directories":{},"_nodeVersion":"14.19.1","dependencies":{"extend":"^3.0.2","lodash":"^4.17.15"},"_hasShrinkwrap":false,"devDependencies":{"q":"^1.5.1","kew":"~0.7.0","nyc":"^15.1.0","chai":"^4.2.0","rsvp":"^4.8.4","mocha":"^9.1.3","sinon":"^6.1.4","updtr":"^3.1.0","request":"^2.88.0","bluebird":"^3.5.1","coveralls":"^2.13.1","npm-release":"^1.0.0","conventional-changelog":"^2.0.1","conventional-changelog-cli":"^2.0.11"},"peerDependencies":{"request":"2.*.*"},"_npmOperationalInternal":{"tmp":"tmp/requestretry_7.1.0_1650899158746_0.9807785962322404","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"requestretry","description":"request-retry wrap nodejs request to retry http(s) requests in case of error","version":"8.0.0","author":{"name":"Francois-Guillaume Ribreau","email":"npm@fgribreau.com","url":"http://fgribreau.com"},"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"repository":{"url":"git+https://github.com/FGRibreau/node-request-retry.git"},"main":"index.js","scripts":{"test":"mocha -t 5000 -R spec $(find test -name '*.test.js')","test-watch":"mocha -t 100000 -R min -w $(find test -name '*.test.js')","test-coverage":"nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000  $(find test -name '*.test.js')","update":"updtr","release-after-pr":"git pull --rebase && npm run test-coverage && npm-release patch","changelog":"conventional-changelog -i CHANGELOG.md -s -r 0","changelog-git":"npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master","postpublish":"npm run --silent changelog-git || true"},"license":"MIT","nyc":{"exclude":["node_modules","dist","coverage","webpack.config.js","test"]},"dependencies":{"extend":"^3.0.2","lodash":"^4.17.15"},"peerDependencies":{"postman-request":"^2.88.1-postman"},"devDependencies":{"bluebird":"^3.5.1","chai":"^4.2.0","conventional-changelog":"^7.1.1","conventional-changelog-cli":"^2.0.11","kew":"~0.7.0","mocha":"^11.7.4","npm-release":"^0.0.2","nyc":"^15.1.0","postman-request":"^2.88.1-postman","q":"^1.5.1","rsvp":"^4.8.4","sinon":"^6.1.4"},"_id":"requestretry@8.0.0","gitHead":"0518cd89eb181e80f2bc55e4f75eb829a6fd8554","bugs":{"url":"https://github.com/FGRibreau/node-request-retry/issues"},"homepage":"https://github.com/FGRibreau/node-request-retry#readme","_nodeVersion":"22.14.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-/79rOV0pEVWVBRk9DfNsEopgnD2mQrJIrFtFBliRWOs7IEeH0IWIdoEEQYg82M4O86mtMxQDKllh3d+YRpBFxA==","shasum":"55b6ddb33446b3432ef46dc7404994fd9840319d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/requestretry/-/requestretry-8.0.0.tgz","fileCount":12,"unpackedSize":56474,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCID0qtb2lmRPwV7L1W9qSAhaqsORI1ZEc59ZTa7nE0Xz5AiEAoFxY3gQ+X30UZrTpF6SdZ32qHc2TY6DTfOrLOnmYPxI="}]},"_npmUser":{"name":"anonymous","email":"npm@fgribreau.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"npm@fgribreau.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/requestretry_8.0.0_1761657323900_0.27467590467233904"},"_hasShrinkwrap":false}},"name":"requestretry","time":{"created":"2014-03-23T17:53:15.365Z","modified":"2025-10-28T13:15:24.286Z","0.0.1":"2014-03-23T17:53:18.618Z","1.0.0":"2014-03-26T11:48:51.101Z","1.0.1":"2014-07-07T12:37:03.190Z","1.0.2":"2014-09-19T10:06:47.267Z","1.0.3":"2014-09-23T14:00:53.533Z","1.0.4":"2014-09-30T10:01:18.910Z","1.1.0":"2014-10-27T17:45:59.347Z","1.2.0":"2014-11-03T14:18:45.632Z","1.2.1":"2014-11-10T12:23:59.955Z","1.2.2":"2015-01-03T17:55:12.067Z","1.3.0":"2015-05-06T19:53:55.382Z","1.3.1":"2015-05-06T19:58:19.936Z","1.4.0":"2015-07-16T11:24:47.076Z","1.4.1":"2015-09-21T06:35:37.869Z","1.5.0":"2015-09-24T06:38:11.638Z","1.6.0":"2015-12-25T11:18:15.396Z","1.7.0":"2016-05-06T15:53:04.719Z","1.7.1":"2016-05-11T06:24:26.369Z","1.8.0":"2016-05-11T06:26:07.587Z","1.9.0":"2016-06-22T19:11:36.748Z","1.9.1":"2016-07-29T17:10:28.112Z","1.10.0":"2016-08-18T15:10:15.187Z","1.11.0":"2016-09-03T16:55:53.981Z","1.12.0":"2016-09-07T08:14:26.009Z","1.12.2":"2017-08-01T07:55:29.882Z","1.12.3":"2018-01-18T10:13:19.273Z","1.13.0":"2018-01-18T10:27:16.918Z","2.0.0":"2018-07-17T11:08:06.493Z","2.0.1":"2018-08-01T17:22:22.353Z","2.0.2":"2018-08-01T17:28:51.652Z","3.0.0":"2018-09-21T08:53:27.561Z","3.0.1":"2018-09-26T13:02:06.514Z","3.0.2":"2018-10-23T19:24:42.637Z","3.1.0":"2018-11-28T14:37:11.594Z","4.0.0":"2019-03-14T19:59:18.971Z","4.0.1":"2019-10-12T12:53:18.081Z","4.0.2":"2019-10-12T12:54:21.448Z","4.1.0":"2020-01-10T10:28:15.539Z","4.1.1":"2020-05-18T07:34:33.331Z","4.1.2":"2020-11-11T14:56:50.813Z","5.0.0":"2021-02-16T21:38:39.092Z","6.0.0":"2021-08-24T07:49:19.543Z","7.0.0":"2022-02-21T17:12:06.841Z","7.0.1":"2022-03-03T10:53:37.877Z","7.0.2":"2022-03-04T18:08:28.919Z","7.1.0":"2022-04-25T15:05:58.901Z","8.0.0":"2025-10-28T13:15:24.086Z"},"contributors":[{"name":"juliendangers","email":"dev@juliencrestin.com"},{"name":"Osbert Orr","email":"dev@osbert.net"}],"readmeFilename":"README.md","homepage":"https://github.com/FGRibreau/node-request-retry#readme"}