{"_id":"amqp-connection-manager","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"keywords":["amqp","rabbitmq","cluster","amqplib"],"dist-tags":{"latest":"5.0.0"},"author":{"name":"Jason Walton","email":"dev@lucid.thedreaming.org","url":"https://github.com/jwalton"},"description":"Auto-reconnect and round robin support for amqplib.","readme":"# amqp-connection-manager\n\n[![NPM version](https://badge.fury.io/js/amqp-connection-manager.svg)](https://npmjs.org/package/amqp-connection-manager)\n![Build Status](https://github.com/jwalton/node-amqp-connection-manager/workflows/GitHub%20CI/badge.svg)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)\n\nConnection management for amqplib. This is a wrapper around [amqplib](http://www.squaremobius.net/amqp.node/) which provides automatic reconnects.\n\n## Features\n\n- Automatically reconnect when your [amqplib](http://www.squaremobius.net/amqp.node/) broker dies in a fire.\n- Round-robin connections between multiple brokers in a cluster.\n- If messages are sent while the broker is unavailable, queues messages in memory until we reconnect.\n- Supports both promises and callbacks (using [promise-breaker](https://github.com/jwalton/node-promise-breaker))\n- Very un-opinionated library - a thin wrapper around [amqplib](http://www.squaremobius.net/amqp.node/).\n\n## Installation\n\n```sh\nnpm install --save amqplib amqp-connection-manager\n```\n\n## Basics\n\nThe basic idea here is that, usually, when you create a new channel, you do some\nsetup work at the beginning (like asserting that various queues or exchanges\nexist, or binding to queues), and then you send and receive messages and you\nnever touch that stuff again.\n\namqp-connection-manager will reconnect to a new broker whenever the broker it is\ncurrently connected to dies. When you ask amqp-connection-manager for a\nchannel, you specify one or more `setup` functions to run; the setup functions\nwill be run every time amqp-connection-manager reconnects, to make sure your\nchannel and broker are in a sane state.\n\nBefore we get into an example, note this example is written using Promises,\nhowever much like amqplib, any function which returns a Promise will also accept\na callback as an optional parameter.\n\nHere's the example:\n\n```js\nvar amqp = require('amqp-connection-manager');\n\n// Create a new connection manager\nvar connection = amqp.connect(['amqp://localhost']);\n\n// Ask the connection manager for a ChannelWrapper.  Specify a setup function to\n// run every time we reconnect to the broker.\nvar channelWrapper = connection.createChannel({\n  json: true,\n  setup: function (channel) {\n    // `channel` here is a regular amqplib `ConfirmChannel`.\n    // Note that `this` here is the channelWrapper instance.\n    return channel.assertQueue('rxQueueName', { durable: true });\n  },\n});\n\n// Send some messages to the queue.  If we're not currently connected, these will be queued up in memory\n// until we connect.  Note that `sendToQueue()` and `publish()` return a Promise which is fulfilled or rejected\n// when the message is actually sent (or not sent.)\nchannelWrapper\n  .sendToQueue('rxQueueName', { hello: 'world' })\n  .then(function () {\n    return console.log('Message was sent!  Hooray!');\n  })\n  .catch(function (err) {\n    return console.log('Message was rejected...  Boo!');\n  });\n```\n\nSometimes it's handy to modify a channel at run time. For example, suppose you\nhave a channel that's listening to one kind of message, and you decide you now\nalso want to listen to some other kind of message. This can be done by adding a\nnew setup function to an existing ChannelWrapper:\n\n```js\nchannelWrapper.addSetup(function (channel) {\n  return Promise.all([\n    channel.assertQueue('my-queue', { exclusive: true, autoDelete: true }),\n    channel.bindQueue('my-queue', 'my-exchange', 'create'),\n    channel.consume('my-queue', handleMessage),\n  ]);\n});\n```\n\n`addSetup()` returns a Promise which resolves when the setup function is\nfinished (or immediately, if the underlying connection is not currently\nconnected to a broker.) There is also a `removeSetup(setup, teardown)` which\nwill run `teardown(channel)` if the channel is currently connected to a broker\n(and will not run `teardown` at all otherwise.) Note that `setup` and `teardown`\n_must_ either accept a callback or return a Promise.\n\nSee a complete example in the [examples](./examples) folder.\n\n## API\n\n### connect(urls, options)\n\nCreates a new AmqpConnectionManager, which will connect to one of the URLs provided in `urls`. If a broker is\nunreachable or dies, then AmqpConnectionManager will try the next available broker, round-robin.\n\nOptions:\n\n- `options.heartbeatIntervalInSeconds` - Interval to send heartbeats to broker. Defaults to 5 seconds.\n- `options.reconnectTimeInSeconds` - The time to wait before trying to reconnect. If not specified,\n  defaults to `heartbeatIntervalInSeconds`.\n- `options.findServers(callback)` is a function which returns one or more servers to connect to. This should\n  return either a single URL or an array of URLs. This is handy when you're using a service discovery mechanism.\n  such as Consul or etcd. Instead of taking a `callback`, this can also return a Promise. Note that if this\n  is supplied, then `urls` is ignored.\n- `options.connectionOptions` is passed as options to the amqplib connect method.\n\n### AmqpConnectionManager events\n\n- `connect({connection, url})` - Emitted whenever we successfully connect to a broker.\n- `connectFailed({err, url})` - Emitted whenever we attempt to connect to a broker, but fail.\n- `disconnect({err})` - Emitted whenever we disconnect from a broker.\n- `blocked({reason})` - Emitted whenever a connection is blocked by a broker\n- `unblocked` - Emitted whenever a connection is unblocked by a broker\n\n### AmqpConnectionManager#createChannel(options)\n\nCreate a new ChannelWrapper. This is a proxy for the actual channel (which may or may not exist at any moment,\ndepending on whether or not we are currently connected.)\n\nOptions:\n\n- `options.name` - Name for this channel. Used for debugging.\n- `options.setup(channel, [cb])` - A function to call whenever we reconnect to the\n  broker (and therefore create a new underlying channel.) This function should\n  either accept a callback, or return a Promise. See `addSetup` below.\n  Note that `this` inside the setup function will the returned ChannelWrapper.\n  The ChannelWrapper has a special `context` member you can use to store\n  arbitrary data in.\n- `options.json` - if true, then ChannelWrapper assumes all messages passed to `publish()` and `sendToQueue()`\n  are plain JSON objects. These will be encoded automatically before being sent.\n- `options.confirm` - if true (default), the created channel will be a ConfirmChannel\n- `options.publishTimeout` - a default timeout for messages published to this channel.\n\n### AmqpConnectionManager#isConnected()\n\nReturns true if the AmqpConnectionManager is connected to a broker, false otherwise.\n\n### AmqpConnectionManager#close()\n\nClose this AmqpConnectionManager and free all associated resources.\n\n### ChannelWrapper events\n\n- `connect` - emitted every time this channel connects or reconnects.\n- `error(err, {name})` - emitted if an error occurs setting up the channel.\n- `close` - emitted when this channel closes via a call to `close()`\n\n### ChannelWrapper#addSetup(setup)\n\nAdds a new 'setup handler'.\n\n`setup(channel, [cb])` is a function to call when a new underlying channel is created - handy for asserting\nexchanges and queues exists, and whatnot. The `channel` object here is a ConfirmChannel from amqplib.\nThe `setup` function should return a Promise (or optionally take a callback) - no messages will be sent until\nthis Promise resolves.\n\nIf there is a connection, `setup()` will be run immediately, and the addSetup Promise/callback won't resolve\nuntil `setup` is complete. Note that in this case, if the setup throws an error, no 'error' event will\nbe emitted, since you can just handle the error here (although the `setup` will still be added for future\nreconnects, even if it throws an error.)\n\nSetup functions should, ideally, not throw errors, but if they do then the ChannelWrapper will emit an 'error'\nevent.\n\n### ChannelWrapper#removeSetup(setup, teardown)\n\nRemoves a setup handler. If the channel is currently connected, will call `teardown(channel)`, passing in the\nunderlying amqplib ConfirmChannel. `teardown` should either take a callback or return a Promise.\n\n### ChannelWrapper#publish and ChannelWrapper#sendToQueue\n\nThese work exactly like their counterparts in amqplib's Channel, except that they return a Promise (or accept a\ncallback) which resolves when the message is confirmed to have been delivered to the broker. The promise rejects if\neither the broker refuses the message, or if `close()` is called on the ChannelWrapper before the message can be\ndelivered.\n\nBoth of these functions take an additional option when passing options:\n\n- `timeout` - If specified, if a messages is not acked by the amqp broker within the specified number of milliseconds,\n  the message will be rejected. Note that the message _may_ still end up getting delivered after the timeout, as we\n  have no way to cancel the in-flight request.\n\n### ChannelWrapper#ack and ChannelWrapper#nack\n\nThese are just aliases for calling `ack()` and `nack()` on the underlying channel. They do nothing if the underlying\nchannel is not connected.\n\n### ChannelWrapper#queueLength()\n\nReturns a count of messages currently waiting to be sent to the underlying channel.\n\n### ChannelWrapper#close()\n\nClose a channel, clean up resources associated with it.\n","repository":{"type":"git","url":"git+https://github.com/jwalton/node-amqp-connection-manager.git"},"users":{"luoyjx":true,"456wyc":true},"bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"license":"MIT","versions":{"4.1.1":{"name":"amqp-connection-manager","version":"4.1.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"15ddc23b823ebba133efbe6629fba6d57cdd5f15","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.1.tgz","fileCount":20,"integrity":"sha512-vkEwurqrVu4O44+lmGZHJs2pPWHU746lc81UCrp+IYusBt+F09rVMjgBPnTv28NzkC+9HhQUIEz80xwTpz0bYA==","signatures":[{"sig":"MEUCIQClAvfgNBXp3dyn3iS3ko7T1DxzWYmuxqpYql7OPm34ewIgYM1jzjMymtSFxRK3a9q+RJ+iz0csI/UR7Xl0jSvfGmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":141052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/s55CRA9TVsSAnZWagAAYrgQAJqx7lMkZDFI1bJy2FiT\nBphiM+ZGX2lYhLBzFwWmC+fyOXjUd4Alf1htO9Z2PZ7G4n47kGas4yS+RnGz\n98JkxL1C6i2IIvNbG4gQn3u5NWsL+e6G5bB6T2VB6XcGQsGVdQ8+YR32jvlV\noig0SPxwIUEKJV9kqj2o6zKJ53DgUfKW9VtsNGthGtR2SGTcCmQ0BlpmBjxB\nPqJG+2/N8TnRW9SBabww551G5+c6PGNC0VpvABTqvwICwjhm1GWHcq/Ao7+4\nSSXfTW/2ordv3qjn+OH8rG+YtN8aLpugzOORvK3rDdY7kKmxhb65CRFIlsyW\nAV9XylaUNkfPTx5NnpSk0uaduzG4QKDpRrUGWjzcwlBIxmwUkozIRbGOu9i+\nz4CHRCCtLZR0D9p36dyDnUdP6f7kPNHZ5nxlmEAM67lEslHCYkwZtuJy/3zF\nSE8VhUtc5Q3oInmCtZYayL9TWgWMXGHfB+yvBVgWfH/M0K+yHylzjsI6NHJ4\nm3qJNPjQTeo9ISKS22KbEIt6NkgDq7IC8LQd83HjR47esk6Yrgu0c76Aq8Nj\nUyQR4vbeRRhpiz4q7TG2ikpWVd56amkLNeyI9kWcriLwugdPJOZpHOiSriNO\nj77rsnHEbkWIbvGYaUNC71u8TEZbox6nciduYPsGFeNNFPy6FwK9wa6gKRUY\np+bU\r\n=Bpmg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"890497dd54587f6ad4e4f082fd956baa31de3cbf","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.4.1","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.13.2","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.1_1644088953124_0.3910415504308993","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"amqp-connection-manager","version":"4.1.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.2","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"d432e1fc50ee4f0f65bf7cc2f2e715ba2aef3620","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.2.tgz","fileCount":24,"integrity":"sha512-1Qq6+uf4/3YS/KTRwu6pdkSvNklWpYmyYJzl5q00p5sUBUwpCxMgaW/RMqWDbh94Kmj1aiKdXD1PLlrPVRBqpA==","signatures":[{"sig":"MEQCICqbZ9ye3Q+WNvJYWdYUsC+uekXLRoeMHEDH+NG7M6CNAiBtYQhxPckHk5PCxXDGickm7WhS+n8fAGgQwa8381bfjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":152186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVusMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpdKg//Tza6Wohf8zr0oKfd9LLZW4YtQDVu6VNshruA+AH/LQbBiLIH\r\nlaZnszIHp829gh8woINShkFGNuoUyW2v6UcGz9mtooPSgmOq1GA4v9gw2JAK\r\nk2iZgVS+Q/8AJNnlKKycb+/i5YNbZFUElgF2Rkxt+jo9mF//oDIS0yaAQXww\r\nUjSw4BYkSnt/d4BMijKk+0ggxkjmj/5Zo8kn27Mqzy2PeABLuQv/3GrsZwZW\r\nKMKxxy113Steedu1omoo9PZKs+n/Fo3DLyOVOaoCBtzIMGW5V+sa71mFSHI8\r\nD7btA01aTHX14h+aTR1V+B3CNk/36x2Et94h8NcOr6NayKx6aJsKngOkiMDl\r\nJsZqQdcF042rhoFLqD8IBkPA6pQ77GOfrZK3Kw11RBk072o2pEcWVkUzZ+/h\r\n7GUtzIwnBfHyJDHfMNUDMuz40RPhTw6qX8cCyT/sKvASUrZARoiMTUwZ+ZCB\r\nDotFUc04UKcRhKAVmWMeH8AW2ttk5I6+rc/Gas73emep/+RQpCNEuCOby4XJ\r\n5ze8XokCKP8P8ZUWjCIV3fZ6mloX5LcTDEBQM4TsLpkStFiQSN+iSBlhGTWm\r\nGTMme9VMvlY6KQuPYR2JI7oJmvVcSaivaglG18DhFQKSmPblk/5l66jcOevw\r\n0b+VA8hHny12WQOpYhNB6VJVr1gRHFYKjBg=\r\n=ocoP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"03de4c22af3036290bd36aa7525bfb269c6fe1e9","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.4.1","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.14.0","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.2_1649863436710_0.2324895366107287","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"amqp-connection-manager","version":"4.1.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"5cb58d4412ef095c61599c59febdf42d5d7e16b4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.0.tgz","fileCount":20,"integrity":"sha512-e9wUIe60NzTtbA9HejvJhQdwm7Gp9bOfmNtnjpOhEvCgrpjZMPM23JrtftU/wMN4n1ST2i4Yo8lWwtRfmiwM/Q==","signatures":[{"sig":"MEQCIGp0oxSWkYtFvm0lm9Q4dNOJkYrZl9iBX9yz1C5or71XAiBOQn/LAqt41uuq7UXXbVUZLPfSuWvd4aMbQn2S3xI8kw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+YkCCRA9TVsSAnZWagAAGp0P/0t0fc3A5Y/5m0UBMxti\nzPHnaEX/V0yjHHxmUlEYxccomNTEP9s8xs9F2jB14BLbebNM5x/SzyG1ITqi\nHrfyjEWAG41poFSms3gEyXQXDRYMf20lYVhA/qvqXkmZpDr9xQDIeBD5Ct79\nVkAncFfexz25o6LbvCHEnEqfmFRQKlsCQOljHcjL5WnTAqsoyijM9mR/qHze\nyJs1aUiT7cxS3uY5czTl3S2OKKBZyDuMuem6DddoPvvd1c2JT2/bnCmy33mL\nM40r8n2bmDuLl0h+O0cZM7V1mJVxWpw7BvDdeTAzYQXvcgXF57oo1wXIJyv/\n2IGaUwlbDdde2I597dlCpn7h1rq56rTV8RKXBfSMVzP7/kbMREaX3iJeJq+K\n1izP5FnLpwodQjZxiXQJO5UNB+UNa9U958RFtUd7svGQyO7ETBg1T2zcUO4N\nZT0c0UAssi0ZuzMA9OhGpSbBo/Y9G/OQpY0aolwzgt9MTY40vT+Igie6L/JG\nwbETAId1UHHpvLszT3wwvgcixsJRzQodrs27exPSTM+dKnAljIb4JVaso2X5\n6NpfBkadbnPhzzvEcsCho245Glm6XT9sz+YDPSudLaVK3BkeRfyURBfZ2wmF\n4veGgb7PXevsg0evKknI/CyKetC/aZfxdbjlZfzccudNNCJUexh3kAKW9RBy\nRrHP\r\n=lfEP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"49823c41d01027b040f870f226cffbd47cddd91d","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.4.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.13.2","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.0_1643743490778_0.7622485873293643","host":"s3://npm-registry-packages"}},"4.1.5":{"name":"amqp-connection-manager","version":"4.1.5","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.5","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"5b6f3a308ca26fd7745799397843d1f698687c2e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.5.tgz","fileCount":20,"integrity":"sha512-lLZFFzVd6qNxNPc501+3XOTnFxHdoe1ahEzPxnb/qGi5aVHuTIJZhSsxMa5Z5d7yT0AC1+vZg2s9SMSXPujKbQ==","signatures":[{"sig":"MEYCIQCsmCsURJEK5nQy4fBX3vUTqyKOvjOGwLi6q2e2LQJZPgIhAOJelb1+/dgOra/LXGk+a9z07F9RGg/3uUI4T9gJs6iu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":142121,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8mXXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5KA//dgchk6K/Da+rMFhEB8ZS9zL1tx7M+dd5PhK+qpKJsa9TTlxS\r\nxeSnnIQ5e6P/oaMQjs1YspFYDnejhILWxkHqGR6CUaMmPJN1slqlFLA8DnIG\r\nXC4zwfNde/PiLYKLEmH8kifZQGvVmFjAMC9drB356OcB8ZeJ+3M12XK9Jo8Q\r\nDLplqK7Y6OJrUMrMiDMLKMtYRSlVr4Qp2RTxYjiYeRq4EXGqMqKFBLwrB7Sf\r\nWfHndkv4hr/Vr9vUwxT7aEt5XpbLyIab4IU86iCQIVAxJyWrB3gGOHz0VEbC\r\nI5UXe1eLZW8zso1KLA8DRVzI3RuOKda7S6E89SnTrmLQyO6kVO2q7CtqOnrP\r\nFBGBKs0VXpNyjylM1lpR/SCVw+bPgLXei5BaP5vEojf8bvnWWRmNrW4BKx9O\r\nPiU1aufToH1M6rKQUAkAZeMo+dKfbNS+1MIn1mATPy9Q8c+3IKsgIzm9rAUf\r\n2/jR7QAKiGmEEal1jx4BPgM6DzsiFMLmdEyWv9ik9pNPpp+rcU0K+eOry+Pf\r\n3aq7hxbyk1KXi0DEwPA9EYoHTV8UWH+j6PkOPO/Ucl6MkOcIINFtxhnXxJ6R\r\n0HZo35FH/P4I6SbEDxwgi58wk6N3MMKGAFkU95K4pyZN3EKzYSFsMqtZGmQv\r\nimeG6jo7pJo0ShjZvi0RUjLOj3byclli9nQ=\r\n=sYIX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"64c18649e2200a1b1830ceb11803a7f6ad30b989","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.16.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.16.0","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.5_1660052951062_0.9596985243685319","host":"s3://npm-registry-packages"}},"4.1.6":{"name":"amqp-connection-manager","version":"4.1.6","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.6","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"63e932b642d67d27119bf769cd71e6fd08007a8e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.6.tgz","fileCount":20,"integrity":"sha512-RFbVdA6COw+968HpZAeR4KJtgcBeKR626MTQjgHRwolaHry4Gg4Z7dJHwHerqlYbv5dAP8VB29AXYwu+XZP3JQ==","signatures":[{"sig":"MEUCIQCCK46rG6GgIUvU7tQuKv0LTaA7XTtoIjlCS8lqmZFzDwIgIalcCc6+GwApgpqRN79aVoU3HqvFUT5tAggS9syy8tQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9WYyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoE6A/+O+j2xPkEOMaFCPEmG6r4dtSuU6xQEEv3KtMt5GsRNmiFX1Y2\r\nSthLph7i37esYgokbTbuIPpLRhyYsQAJIi9DTH6coPi6Xpr3yOQX7ecS9iak\r\nmX4bkSQ4yKvuXMnoe0j6MOs7d8a5VjXcIDmCWwsaCRfu8Ed0ZP9mCIz9H8hp\r\njL2MxrxAEDDCK0qDP/13ihTEE7VZrJFz27FbLaefq0BMGLLx3w8hg7lBfzx4\r\nMEzg5S1dP6eHt6I9a6BxqxwG03aUI1/ieY/tWTQFRCAT+qG793CFzoQ93mwI\r\n87nrGR7SJ884Qd0fFlzUQxWU10S+QiBJRlbKJlUOphmoLxyoT1Xf+wpdZ1gk\r\nNmfZvY8CrbakYfzvhZiKwu4slq951PuYDTFyEEHaTE7GrD8Z8dnuKDXQ+XlL\r\nB+m5G3+Vn8iKnQmLPYhmc5+IqRuWG4yuElRGR0vabgRnsBSM35DdZroSQmWJ\r\nNJfnyJLdXUGDTei9OzUtse2W9nrLtxw+OcXqLRfZMJxj06Wr9s3Xs4cnaieu\r\n99zXGiBDlzQOeSJ4YSa6mfuYAaeVAHKaru4WvFIw/wUNsOnrY3F/bQpZDj/l\r\nA7TCc52hgZlezZpaJ1eSPfWnVzGcUSamt5MFrQfclhrMNbYDTuQKVLw8IBHE\r\nI5ZFbFinhWrhnXNsw8n2qxnj1/KtIoOFdCM=\r\n=wZGh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"a1092b3a3a8e866080a1b400cd826a8edb739e3d","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.17.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.16.0","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.6_1660249649995_0.45996717631986495","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"amqp-connection-manager","version":"4.1.3","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.3","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"68df6bb6ccaf5454692870d9923f76310a9b0a4b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.3.tgz","fileCount":20,"integrity":"sha512-wFc3oUbcDfmpSV/YxrsR9KrTXmFsZDzpdvfGCsAQfm6+5pl3VJyvxic44IYmqgb0oIvT0T5fWsmAr7zxfQvkTw==","signatures":[{"sig":"MEQCIFt0dYgCMlooO5sq94MaRvHUEv90tOoapokET1IOkTeMAiAPpja/KZLNqzQqMExX1o6KPHfZk6TfkBongEW5EtXcDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":141997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicis6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqf/g//VYzu4LDAstmy6DWwwSxUJhpWvnBCDUgG9tSGa4uCmN9IRvrj\r\nsf/zwgiCoNrr4KgWaSVl8HgiPXw9nAJEq+TuNd4hl1B3nmCW+YG4q6TPXnjf\r\nFnPwTFegCWOqcc4S6jbWfXC3Z+glgawK44gXrBNApy7/Fr2IBZZJfSfzYQ0W\r\nfdVhq3fVOmm2Ww/eVMa4tW3z1jYPR8qu9YJkNvduEDcl9yDUg3inzie/BavT\r\nJDgHCe/Fez7ntokDMD9PpK1dg65OwlYy+NUkAdywXMcY+I6RrpGfaRIIEkMm\r\nA0KbHmZgSSSNCqKO9rVhoLRRamc4OBmFIjkVCgzVJa55pa4D2oNNTc2f9iM/\r\nR9dDQwUT+EZWYdjDi47gDC2AS7Ke0ZYD/ShlhCb2SLHYX8XOe99vKgV6e+3k\r\nonj55VOx/aL8aLIPn0m/cNL2Eqf1LpBOIktTYcLkMqKbEcQfpo+Opi74jqcz\r\nKkUzXO0KHAPCncDGabdcq/QFsoyhCfrwziVoIE4JeQ5FN7hSP1t1CL8/0F5G\r\nC95Xso/ol7wrXTKRKrQK051JQOefdBxTEAMCDi1drOh4nC/MyKMoj73LoVeu\r\nFy0OVGukxP3NGbKPstAFsKLA0aka+BWDNjG2Nl5vpKPgHWTqu6svgWZ9qhj9\r\nZ0KF1rOWOy2J6Rl7cXTAge3WVktiDr6DK8w=\r\n=bD1a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"e6631eac6f648cc8ce7c9c5e497948177d8d4a8f","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.8.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.14.2","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.3_1651649338377_0.9833348525050005","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"amqp-connection-manager","version":"4.1.4","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.4","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"1e5bf4222b5431fb5ccce6c16728667e09d3a155","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.4.tgz","fileCount":20,"integrity":"sha512-FR9mC71YDvugaKwxaxOWaS1PmPxFDN3gO7/zuzmCreFHxdJj4BpRVs/O1dRz2loEUl/JYIvz4B0vB3uaQsnVtg==","signatures":[{"sig":"MEUCIES7ORhCQXzzOZxEeZ16Mad5PqVjtUlHgiS40rVS5BCGAiEAzvTflJv0R3yaG7/boVg3fD5WcndWFO8SkDTud3EzjBs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7VvIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJHw/9EeHFxno/Z3Q1CTz1Iog2ulvUjG3uAJco6m84+Cldm2VqAa4r\r\nTokmxqRddOppgXp7+UulOcWuw0fzngJSjZCHc5+PoEGDRSJxRw5SlGiq+DwO\r\nIfh0ihzIDIQ+nxvwIxUlRTWSwjhQvO8RtEAPGCUp/U1cCdB/Bip4V5qEAtb4\r\nqNO0ICTHF/pvD5Mr/5JDEtemjPWmEY5K7WGyi0GKXogmwDNAVEYl61Lvt3X5\r\nYn34z6urxI71ImxAm1A6UHjalneb/cBx9JlJpU6JF2SGgBFXeWQMyEmNTBPc\r\n9gLOEBDvFbo5Xq9ATlQyKJ+Zvi4LXv1AhIbi26/i5oglunob5M/Fv8wInG1b\r\n6mg0ASgW4i/knov0KykuVcCoYJcCBZsny0hv9fJAXTyBfqtGwIwL6ELnTt+s\r\n6EyI8V0Slka6CDzN7bdTNPYxmBgYnnne7f1UTkQTXcyk6qw9x5xYCPEaRi3M\r\nH8PdcTYfVGNsZtyEICGfjQVjhPeGRNe4MwoP309Lv3M5GS+iT3LamOhohiYd\r\nbvlJM+V5AtAt84ecYmCDwhYiE1z/ucmtHc5g9jcCOKKM2VKILTBWISdpIzG1\r\nt8wSi9yiNYwUjx9n+faXON5jb9lHDBETdt3siVlQXHmsJgF2UZY6P1ds5aq6\r\nx25aYiL5HIUh0mdI2r6C4JS+m6cMD+CV7K0=\r\n=S0vP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"f42f7c2223f434342fcb3eea15d84dd5bfb7ae9c","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.16.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.16.0","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.4_1659722695930_0.15974105316490883","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"amqp-connection-manager","version":"3.5.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.5.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"d6140f960eb8c6751cd4030aa4a8d222ab1fbeee","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.5.0.tgz","fileCount":20,"integrity":"sha512-uqjSUVGw0CcK/AxjtqqGdmSqc0yGqoMgdlBNsd/gdv3Qc6l9ecToa2y4R6VYZOnS3CFt60cbI7FRh9ku/7fXEQ==","signatures":[{"sig":"MEYCIQCvuZOcMeKqfB+kVTlLY7ay/Il9BAOfSmwLBzszry2Y6QIhAN2DvP6j3OqgIABeCG1jghCLJ2d85k+LJfsaHwATtQyv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":112030,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJ4UtCRA9TVsSAnZWagAAdJoP/21abyL2TghNv+jJIvdB\n+wg3ImEfxrNmsYbxyQx61S3SdN3JBriUlMLuT0XfM/UU6E99Hn5r08epW9vU\nsMNVknNx7jycOiVDL8txWan47719D4m3GciBnAJFy1rguWnSFPt5ZOifUq0Z\nlEQW+DEAtt88G1nllJQgIdVbJK4nwZ3KntRf0U14CFjZIQOyvSTGguhfm6HX\noc16enB/e87o5Zq56zGL4ESTCdbnKZXKbowVWQRXY/JkKxyyMlWE+bObCnJX\nFQPVZNnPdKl8R9i6q5Nta3P1DvCzkjaZU4WGjF218sDOfz92YO+tH2JlDdBY\nrYOr/zqaW2x+/g5w16KHmkoRDXC7djLz1PngYzM+1KvK1zA0o0uUBAWXf+Rz\nllBn8MXTsbyuKw8vYsNlyRtp/jgPqxODgHZq7Ko16Y+Vor9TVHDorRzaZbS8\nfCpulhT5p2QT0WRIWDhEWGZRB22FjmrWK0hqrmtYyTzRZF5q5qUIpbaVLOnm\ndZ3qXPSw93WzwBM6+aN0Iu5Yp63cky5ympBRSNnQE8MFTpRQaaIMvTCFxqSb\n/P7Mapixel133ljhZmNCKDl0tc5+Lq4JEly0s9GUsKSqOXSKqH3DCBh1ho8J\nnq12jqbPJMro8JTj8QvsFTtlQmucIoBPenz4Vql1Z1GqF5b7mVGsa/U1fuEb\ngMl7\r\n=9e66\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"5038376ade39f2696a85552db786494d42ea98a2","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.5.0_1629979949758_0.9893336054491193","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"amqp-connection-manager","version":"3.5.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.5.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"7c18147dea508d607fae4e3ec795be22d5922af6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.5.1.tgz","fileCount":20,"integrity":"sha512-EIS58VxNZkib/WA4P6zB3wV4mb6q4rhV33UWFBWFivI9F6uf2wmnNIltlVS/IZdEmPaa1e2CFxsZB/CBmfgyEw==","signatures":[{"sig":"MEUCIC5grjrwzg14octBDgsr7qFVYNh1VDYmN0pNF6ZkkvsJAiEA3MwKk09bpXJyH59CaGQPz6DDFPNJtOJJIpZWTMm3534=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111935,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJ6IlCRA9TVsSAnZWagAAJAEQAJ3G0fenrFRqalaga8yb\nOHKBk9kbFUfeNO8JKb9iVMWcXX2D9JUSTO3d1CuXbuItnfruWjczOxy6OMX9\n15b4Xv/J7xAB/9o3g0weLfjVIR6R92Mm+YwRmaTqNWG4C3bQweo0Ce0eKemh\nObYHM9z3+6DaEy0NcLQQ8FkB8f92p0eGwIMnfB6xWDKC/qVMk6qPC/aqiB5/\neBpnDkgEE+ZZBMIxyZegF4ahj2BYjgu+f+lQiEGGLrBj4idAIx7jjqjH7mc5\nakZQipmDNzHRl1xAZ9d/z7I50HGmPcwDbYHFioMg0/WDG2huAJh4OFwFRF5w\nDHtSq325N4//A5O038pYW8I6kgjujGLPrKJpVnN3Orqwy9PPSatnvxvpPAOY\nWPZ22PPfpCEEcoWff9aj5YmnA0DulfX74XVMia/7GccUjEwhxJ+jaPHj7bEL\nZUEHf6FPBCJJDuIIBj7RfaEJ5miODLuC/yDQ1athDuF/aF32M2G/x95cleb9\nFMIPp9McRqUixKmqG5GaIZyYUfW9v9fzZorwDQU7q/ysqt34fvC5bSz4dEgG\nKVCLqfnOqo1hcSvKLi7Psom9/Wr83wjswxNvo5aj5w3bq2E41mmwe5YwmJ+Q\neFJCBCGs6yk7v9qWr280PnqSgV4ckTkzKvIO2B8NiZFazJ55Q48eBteb+lpe\njj1q\r\n=xpLT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"814158d2cf7f1b13b8b53397a8b973d443c2ff64","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.5.1_1629987365543_0.18961526667729123","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"amqp-connection-manager","version":"3.5.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.5.2","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"f1981e189b41920479bea3d10c2251c4416d88ac","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.5.2.tgz","fileCount":20,"integrity":"sha512-lvyzz983TDv6aMhvnhn1g/m74Xy+idYKZ8STnuQ6vFTSQmfPThlSNmbs+ZURaEJAVrOVL9M9tlLGCX4PsK7wjA==","signatures":[{"sig":"MEUCIAD2Y2NJSwUO/69qqmY1T9N+dzpzeG260/vjovwTgpnHAiEA90oQ3DV0FlfaMQ3ML9IcFJEPjjgToS6gMgMFocErCf0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":112906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJ79TCRA9TVsSAnZWagAAUP4P/ij8xpZYByAW639M4t8m\n1VCv0wLu3GrFIAIC3hAz+Q/Pm7UiEg4hnHRdYx+Lf0IWkLtMWDvAY1O9Ots5\nD2fj7ahAFF27QcwzehN/DM2lFTOFFikFByDqDfvegm610I9e9tcDMcTe5C7c\n9PrtMU0km7VkCbTpv1Fsekxw0Q+eGjYjgy4vHY8IkS8L7xl4Jih+5hkjdmOU\nRaakqTFKRTFEct4QgqOGgIkgarKIruxXl2KjZk6KfFSJWBJHwnnKVpMcYGVf\n6Kz9DweGJsii/mMect6FGWcfr2uxW42imfm3jQ+1uIUzVRZfYSWi+lAcw885\nSmBvEXsHcWsFg2aST4lGhS+K90VrHT8aVylGWtsrbWnAuCtCyvoUHwIhs2xU\n2nn811gVHjOgJ7O4/mzob0yQv+1fAaKzLvdF+jp6GeSA72vSlcIhI7A/Hs3n\nShqWRBbqTURKLaANzoPeGMzuWeBVEEMnKh5FgqEfynpE6mFyRVKZKAxxcZAJ\nSrZMUT6FPgOfTEmmQx2zgtly8zJjG9v1oJ9s+u8GIT3DUz/aldfNTequQ5wx\nFS2eC9uWSpvlu8s8DMQMdKltLpye5dgEKqZY5cRmXWiwgPltUn1bIYg3ckGk\n1kZOapsiXH+427FR/Ao3/rf0e0bCF90Y0RjqR5qtjFuvHySrWLqw5ZA4Oy6D\n2dKo\r\n=rXkv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"17210f906228e84db48f62152279d569df77614c","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.5.2_1629994835558_0.26353642455631543","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"amqp-connection-manager","version":"3.7.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.7.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"b37a5c714032c42676cdaba0827c739d6916eb16","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.7.0.tgz","fileCount":20,"integrity":"sha512-pWlrXVQNnSV9Jsewq6wnZjddzlHI/gZroDdmMEYfsqaAUa2V2ENCXbDdoi0r/GVesxueY/Yb8nBO024lfdtdPQ==","signatures":[{"sig":"MEYCIQDT80d/QOlUdD7hMqTCQo1J7HCAvALxaniMgisIZVTEuwIhAM8spquWmil2gQOmGtOlbVhINTuoCRmlMUQElAb0NsiM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130256},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"4ede1b201e09e02b4edc5549f8eceb2bf584fb7a","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.24.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.6","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.7.0_1632232526938_0.15666792287096998","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"amqp-connection-manager","version":"3.1.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.1.0","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"2ee7e4ceed3df541a373507c8dcec028331672e1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.1.0.tgz","fileCount":25,"integrity":"sha512-RJAe2/QrQsPjVFH5DY7Wu1ZzDyLRAly2BzvPJYogZulQOIRWfdLj3lVOHV4e4MQyYSANie4k5hX1zIEe8aLmPg==","signatures":[{"sig":"MEUCIAeh6F+fIfS7nPjpZejjsKyH+TBxSM4k3h96nLT4JXYnAiEA23DcszCRs+fwPtQOwFMBqyH1fRmmGVVYyHPY8EpmTsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":176575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6n+0CRA9TVsSAnZWagAAkJgP/3TCLmwsqIB7yY4BC3UZ\nidA+jqNwtpEaNTEEYr4zO9g29TEQSV3EMkoZUx7hQX8VS5kucobYlNG2+pAK\ni29C/45q7OlZDHFF/i/bXQaHxVtrdB9TGlBuVaqa6zt+t7lsMAzvLzoSyU7C\nNuNhUWMe02EVfriZMmLBQ7iYv/0Qalm2BKlGN6AcFfGBAoU2PYlpPdteKzdv\nYxf7HtqBU1+teu8ZSiX6QoKidoSHDcSu13W/zOEH91pbc9bVxt2ST6UVy0+/\nwd14f7Aud1K3w8K1Of+QgpThOzMWZgdGOuaHI8P9Ehv8GqOLJLHRIS2HmBCc\n9mvIq0J8jt0URBOGJpasDXG2NKQI4rGuJlZGVJasG7POJIvEgrH1suy+QNJS\nqMISYLtnrSlUdaDeP6zNlUWwffqENZuoV4k1dO4eO9AUv2ardlIvl6OmYhYo\naRhQF4oBOyI3iB98olaZybGR7fPOrcyxjfQ0JfqVHeRSMb8KzN46R6YgZ/6U\nGjvYOa0GiFK6vR0WU4Tu8sm2V4+qPHH+p4x1PFRqcH3vMv7Hws8cYCD9ubKQ\nddYVks436dzlGfNgmf5wDo06RV9tPsXXYRINprp0xzP0Mn5grlLzSGiWVvsL\nbH4OTR3rvF3FYuQZPb4d6n6NpIGpZMutEQp7ruzgfxO81n46fo/6LzLIP7M3\nmMSU\r\n=yUbT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"8d8df83cf13325aa0dc774b49b281c753a5d785b","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.10.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","chai":"^4.1.2","husky":"^3.0.0","mocha":"^6.1.4","sinon":"^7.3.2","eslint":"^6.5.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","cross-env":"^6.0.0","@babel/cli":"^7.2.3","proxyquire":"^2.0.1","@babel/core":"^7.3.3","chai-string":"^1.1.2","promise-tools":"^2.0.0","@babel/register":"^7.0.0","chai-as-promised":"^7.1.1","semantic-release":"^15.13.18","@babel/preset-env":"^7.3.1","eslint-plugin-import":"^2.18.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^5.1.1","eslint-config-benbria":"^4.0.2","eslint-plugin-promise":"^4.2.1","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.1.0_1575649204382_0.3863479347816752","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"amqp-connection-manager","version":"3.1.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.1.1","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"c2311bf9da6020033cc59de2968fd29a2f0f113c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.1.1.tgz","fileCount":25,"integrity":"sha512-CpGq79MTFU8ql3M1BQlzYIkEPbfKL9e7s5UU7ghXLH3gFYh3R5dX6hex02KA2Bi4xDMNCHe/1rxSLR6B67AyWQ==","signatures":[{"sig":"MEQCIBlbyZTNhnhup9wnbcMb/hLY2Myyt0oT00Pbhwb6l8qTAiBgVwE+kQpL0gf7Pbdn+fexWtNjk616DzgeuS80cCylGA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":176791,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeE4JyCRA9TVsSAnZWagAAesMQAIPnLCp5LhS965A6bRwM\nPk6snDjjEzme+o8OJ3iYAJUN1Ain2AJxkHghm/ZtCbwNJzB7kj9wDsiJ4alR\ne3iSZsvhPpXxQuoTNWER8Qz3bYZkwt76Ignvu2tFHxL59QmA/0444YzivJpQ\nweGiIYtanWJ5nZeTq/gOqPxsv+iNsAl56MOglvGXLxGyyaqnzu991+aHNLmU\n5OwZvk55piFCRxg5qyhIpvbv7XL1OgtVbvw04slLPUgAYL4kT/souwGzkn2z\nvX1fsVSMAKjD5NVFrSCWF7NrSrKELtPVa13fHwhOnkCPdySQjECdIVWMX2R/\nYnQcqvN/bkWNZTcc+j2JeIrQPgHb3Y10+QGNqvmRDs1Uhf59QmUNY1I+e6tK\njeRQUoE7At5w3mXB6lWeVonWDnIE0+MtLkEbd5aXGH4umW5jTrJYJBDHGlGz\n5p1zY+i79M2yfUnOJYwq8ZtW6d0HN3MVTBl7lPmniFZb3akg7EVsFz7oknnO\nkLJosH70N1IMHJyVM27bCQADKIsrEbiuJv33bazumsq7k8t6bJhT9YP1AE48\nz6ennUTZ4+vhXATqJ4Y7VR5x6JPZCmr3/pAcTaWLID04LJFb0gyMGDXQPeZb\nsmLSeXw2yzH4hNbBLt64ldwrnbiCaCL2JKEVLIIngqjltCsjQuPHIHSiYTc2\nhOdU\r\n=Mn/2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"64a6387a632351be9e5c33dbe214469c4d03f1f0","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.10.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","chai":"^4.1.2","husky":"^3.0.0","mocha":"^6.1.4","sinon":"^7.3.2","eslint":"^6.5.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","cross-env":"^6.0.0","@babel/cli":"^7.2.3","proxyquire":"^2.0.1","@babel/core":"^7.3.3","chai-string":"^1.1.2","promise-tools":"^2.0.0","@babel/register":"^7.0.0","chai-as-promised":"^7.1.1","semantic-release":"^15.13.18","@babel/preset-env":"^7.3.1","eslint-plugin-import":"^2.18.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^5.1.1","eslint-config-benbria":"^4.0.2","eslint-plugin-promise":"^4.2.1","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.1.1_1578336882460_0.839832081757091","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"amqp-connection-manager","version":"3.3.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.3.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"8c2c36496541d8c09829f8493d42bf8ee6e49e6d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.3.0.tgz","fileCount":26,"integrity":"sha512-6FIno3fl1mfCxmy7MhdnRkzXAXvEFzxb3DUKLYBSPc3ICrYfOyV7bgFWFADgqWOMcXsRA5JbXaEW07pGYFiylw==","signatures":[{"sig":"MEUCIHmNC54g8uplPWZYFQN9gUxgsJSVySlyEulKIoAoPl3QAiEA602m8R3EFBPdI11mqWZ9UXK8XPogPyY3+Amne/rT48U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":208819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJSmXCRA9TVsSAnZWagAA42wQAIQzEkYmMGMEP4pIUg2P\nI7NeCNqHLyGaKr8iMcQTIQIXtS9SR74IchvojLOdGofjS4q0zpKVeICBSiJs\nGQJfCeN5+uUbFFwD7TjRCe2ViFloU7fTWXVWTHSpg/NmRY9ek426BsXIphPe\nGoV3Qdl6hPXKZjBZGBgYiR9cR4CcGEjp4EFrnwmxZUKibwHX3Lb5U/M+JVTy\nNpazRKkE4gORn05gY7mQUI6qWlt95E+SheoL4Ixh+JF+WHP3LWBUINM6cQTA\nbZOM7C6KUF1DMasM5dR/vs/9ZJz0NGMS4T6KpLZcJb8b44Ey1iHi3hrAm/y2\n6azi0m/YbH/4Gls0lCu6Kcq32CowUh6WQEz84tkjejtE/iL9pXT5IQ1JKXWa\nyMYXiL377dkyQXr3gnWTgDVpL7I9f1qbrRUNzRuIX6ldC8mXs/DtfZNnVTcb\ncjcILjnZuWDieQOzTTIjE6Rm1e7KQQ1So8WlIDASxJYyPzgG+q/E6jmHZUm9\nbu/mM8N6aWLBvbkEbNnSHpM38VfOKgHshfKwWQq4HpgWOGDoUlZxGxQJqyk7\nVhETwEqfSxSopuBZoctJjjhVO31bRJrTYTAyHrSEFYR1kaF15SeG5pKoXJ3V\noaKSIqLaMtAXu0HCgI9WPGdpQ/NxtZ+UQ6EtIxUw9to1XfRvTO6CPR6HshIm\nKqwt\r\n=/DlC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"eb14912c8b29844f10dc7f19c9995dd9becb4adb","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"husky install && npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.js":["eslint"]},"_nodeVersion":"14.17.5","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.1.2","husky":"^7.0.1","mocha":"^9.0.1","sinon":"^11.0.0","eslint":"^7.8.1","amqplib":"^0.8.0","istanbul":"^0.4.0","prettier":"^2.3.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@babel/cli":"^7.11.6","proxyquire":"^2.1.3","@babel/core":"^7.11.6","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@babel/register":"^7.11.5","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","eslint-plugin-import":"^2.22.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","babel-plugin-istanbul":"^6.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.3.0_1629825431660_0.5969813066419771","host":"s3://npm-registry-packages"}},"4.1.15":{"name":"amqp-connection-manager","version":"4.1.15","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.15","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"af1af653961c13674628d0b075eef7b95a209fe4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.15.tgz","fileCount":28,"integrity":"sha512-YGi8MuO2K4u0qC4b1qAKVIK8CdBJF+PpEZpHKxmrL3x61pU1sAb2SHzQl7ypoqr6oECIfVqtG9DGdOZxaUq1Wg==","signatures":[{"sig":"MEUCIGsiWwDsgItKyIMj6HdbmKXqAQHx0oZ76ccie5RxpkjlAiEA2MbezrWzcWp7aVwNvpIZWH+Ho4Pq9vnt7SU7t4Uc5Iw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":179039},"main":"./dist/cjs/index.js","types":"./dist/types/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"types":"./dist/types/index.d.ts","import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"cd42478fa794609d75f36ffd80e3d7c200615d2d","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && tsc -p tsconfig.types.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"10.8.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"20.19.4","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^29.2.1","husky":"^8.0.1","eslint":"^8.6.0","amqplib":"^0.10.3","ts-jest":"^29.0.3","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","cross-env":"^7.0.2","typescript":"^5.0.3","@types/chai":"^4.2.21","@types/jest":"^29.2.0","@types/node":"^22.18.6","chai-string":"^1.1.2","lint-staged":"^13.0.3","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.10.0","chai-as-promised":"^7.1.1","semantic-release":"^21.0.2","@types/whatwg-url":"^11.0.0","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.15_1759158232420_0.7674734130431906","host":"s3://npm-registry-packages-npm-production"}},"2.1.0":{"name":"amqp-connection-manager","version":"2.1.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.1.0","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"f0e9e68fe2677f4491e46fc56d460641f54031d2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.1.0.tgz","fileCount":20,"integrity":"sha512-4rlY1xm3lsJKZOyXR4dESG0JzqEgSnCDNvWeiTWD9SLG7YA3yFcCHZ5lbbNOXPcJ2sy53nsYLFil5fb63/caDg==","signatures":[{"sig":"MEQCIGgo+Tbj8vb7Pgzfa7zgdH+BTzqtg8R3w2UDkWjvyc2oAiA4h4kAfEFi6CXmF91ORV4ecLlZ3tLmXWn5WiNrA9BPzg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115528,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbK5iCRA9TVsSAnZWagAAFksP/RUjYACXVlyrdZX72vt4\ntzmHBjG6UvwMHOE7wcO/R60mgOH7OOm7nDynnLKYIdgZQfm7FbV1SGhpvVYo\ndMCyzxYkI+rr0KEKOYK1bLhU0lv+c2dGsoWTooB75YryDjqFehsKOKZP26xY\n77hDQ7gsKewcNfwZMkrrPlkONxenJAnHX5h3kNWoQVty/LGg7HqAYh9CIzW3\npG6dzClADViPPje/ZWsaL56I/pHnQx6oXWCgtVs8PX3E9kGH3+0iepajeZz8\nPzrZoEA1R3BXX1fh5lcQ0D6MovdkuYxAXmgkNjj6sAICzm4Mnhx8p1+OEGmc\n3MFQujp/e2Cnm7TVGvD+EpGR+WfKaNm7PWSRjJs4IchhDfISO9UNejLwIi5T\neVg5k8VTEzdOPWioilRrumKb1E3MxhyuqbKoqVPjxEh69VirPKmsQyMaO3Mc\nUlUTJz52XouDVynH3WvLTLn2bQwvLzoZegjx5ScVKhwD8dQ6+7lFnkmyvYv4\nu3fuT+Oh1N1kx29Ei5has3IuRhq5jJSbB/ZK4TTaqxeGvNix84tmRQm9ONvs\nEAqZ6aAlhDMBC0AM9JgKyFk4ylm5XQCExHE1cxtwNgUC9UAupX4rmuum/Kvx\njtTB8uV0XFVY1S4mjCgF0BOcTRVANgafoCGsE0RO4A/d+jWR87G2vAbOw2CZ\nVAgr\r\n=/Mw6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"ae89b8254a292486fa1a655f1d020ec20b8eb59b","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"NODE_ENV=test nyc mocha test","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"BABEL_DISABLE_CACHE=1 NODE_ENV=test nyc mocha test --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.3.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.11.3","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.1","chai":"^4.1.2","husky":"^1.0.0-rc.2","mocha":"^5.1.1","sinon":"^6.0.1","eslint":"^5.0.0","amqplib":"^0.5.1","istanbul":"^0.4.0","babel-cli":"^6.26.0","coveralls":"^3.0.0","babel-core":"^6.26.3","proxyquire":"^2.0.1","chai-string":"^1.1.2","promise-tools":"^1.1.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","chai-as-promised":"^7.1.1","semantic-release":"^15.9.6","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^4.1.6","eslint-config-benbria":"^3.0.2","eslint-plugin-promise":"^3.7.0","@semantic-release/changelog":"^3.0.0","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.1.0_1533849185621_0.09320636531524307","host":"s3://npm-registry-packages"}},"4.1.14":{"name":"amqp-connection-manager","version":"4.1.14","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.14","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"603d20ffbc6d90fe464c2a08600c7644c9475342","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.14.tgz","fileCount":20,"integrity":"sha512-1km47dIvEr0HhMUazqovSvNwIlSvDX2APdUpULaINtHpiki1O+cLRaTeXb/jav4OLtH+k6GBXx5gsKOT9kcGKQ==","signatures":[{"sig":"MEYCIQDyLlkJI+cypiiM+b1dbMeWSfPzmrI51kHEcy63ZXsvDQIhALMSf5OZ/Qav8IDIiKsycQTczHThcAHEheKqwrwvIktM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145430},"main":"./dist/cjs/index.js","types":"./dist/types/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"types":"./dist/types/index.d.ts","import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"599d31f01d2e13d6a049bd7645e39e5de99d0293","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && tsc -p tsconfig.types.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"9.8.1","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"18.17.0","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^29.2.1","husky":"^8.0.1","eslint":"^8.6.0","amqplib":"^0.10.3","ts-jest":"^29.0.3","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^5.0.3","@types/chai":"^4.2.21","@types/jest":"^29.2.0","@types/node":"^20.0.0","chai-string":"^1.1.2","lint-staged":"^13.0.3","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.10.0","chai-as-promised":"^7.1.1","semantic-release":"^21.0.2","@types/whatwg-url":"^11.0.0","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.14_1690471078055_0.5550138407693594","host":"s3://npm-registry-packages"}},"4.1.13":{"name":"amqp-connection-manager","version":"4.1.13","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.13","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"639a5e039a4ac0f1f739f3024289ef2fa35053c0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.13.tgz","fileCount":20,"integrity":"sha512-riL5EOlXDlBY4VTTfi6lgy4lwrDbtncQQ9C4SdgxGV6PZ8vgBsNmiKnkxGLvbppDRZ70522glxIc1ep+9Xd/Xw==","signatures":[{"sig":"MEUCIQDmaf7mwHiamKphsGP3wCm1QxPjtMSXzmnKSRDSsLnmBQIgfxeMVihs8IciyGKHsw8BcLVLCr4lSmHwXQA3CCS2yAU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145397},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"types":"./dist/esm/index.d.ts","import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"3ca20a747e9e787db640d944be75356fdd647ece","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.19.4","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"18.16.0","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^29.2.1","husky":"^8.0.1","eslint":"^8.6.0","amqplib":"^0.10.3","ts-jest":"^29.0.3","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^5.0.3","@types/chai":"^4.2.21","@types/jest":"^29.2.0","@types/node":"^18.7.23","chai-string":"^1.1.2","lint-staged":"^13.0.3","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.10.0","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^11.0.0","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.13_1683034712982_0.8914379678987352","host":"s3://npm-registry-packages"}},"4.1.12":{"name":"amqp-connection-manager","version":"4.1.12","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.12","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"3592c0a21a12ce84a06f62ab44a688a3a27e8bcf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.12.tgz","fileCount":20,"integrity":"sha512-UuN2+FqS5QsFQDTIpZTm846p84Tyk1b3oB/WfxYii6uoVvWRnLBr96gmuHMEckanq0Fl7haTK+x3ikJ/S120gw==","signatures":[{"sig":"MEUCIFnJlQUBhJeEN/T63rysOvt8mw60PUN9JyzlUaUfNcuzAiEA/kO6DWt3SAfViGG+QNhXK1Lg3/8KFS7HmG7i1Xp8JpY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKsetACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmroRw//XKjsDE+KkEPcMH4Ur3XUucF0XoTQ5UiZjpo1pyADZkStTGee\r\ndE3QY/RqOsKgDhufJEftrr+YN4dO+xQpzaNE7QmQil8quDTKMNmlVVWumkb/\r\nD0FQg+SLvj41CmARUxAEjnP1HlpRUl26o/yR/e0vd55vDasDgLOBGla6eYO2\r\nu12REBCqv5aH9YcOzdqVKlO9U6CgZt/zhty5qUrDGOPVFGliLXRUxjBFqgbJ\r\nYyahoW3bJViJG6Vi14qPhtk7xWWfTawiWbQGJtV2AVFaRWuFan30Hz1KRpyE\r\nK2MvQlPeFuMhxo9wmN7CxbP/aKaukOO9wpM6mzIkCHLc7xKo6oiVZepcJ3lG\r\nFUzClWxLYCRrQQYCmTM8Up0iJbz/SMJquInj4bqtjppyX3DYQJL5Ve8U4uxA\r\ng0+vpxyv3WqHXRA/lUsIet7kfqD6nY1ena4x0+VWl7RVVehS4s5Wgeaar9uF\r\nFByk1en1jS75HxoF9ezG+dai4FI3om2HlEpAkqY8JkhUjQ4U+luJZwzxu5wf\r\nVQHHvasokwov8NlsWSBCCaB8Ip0wzKAbSMfGguVNTNPGwN8EBeYdZHExuD65\r\n31ZvR2rajQem8u7QwH4D4DniXwrpCy0TcNGCPInp2doda/oPxh7au3QhEm9X\r\nd//8mElpOIFVyCkdnNNIbcdgfTotP1Ji0sY=\r\n=12kQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"types":"./dist/esm/index.d.ts","import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"679f9771627ccfe8b9999872dd0f586ce190463c","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.19.4","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"18.15.0","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^29.2.1","husky":"^8.0.1","eslint":"^8.6.0","amqplib":"^0.10.3","ts-jest":"^29.0.3","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^5.0.3","@types/chai":"^4.2.21","@types/jest":"^29.2.0","@types/node":"^18.7.23","chai-string":"^1.1.2","lint-staged":"^13.0.3","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.10.0","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^11.0.0","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.12_1680525229078_0.9274103332832679","host":"s3://npm-registry-packages"}},"3.4.5":{"name":"amqp-connection-manager","version":"3.4.5","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.4.5","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"e042f2a6cfcbfe6715ecf6c0e5f0e03003538cfc","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.4.5.tgz","fileCount":20,"integrity":"sha512-ZnNijreiGjv3aTJtZo1q3FvPzq9Q7+CmZwELKpTgU4k9K1iJEPQ21x5Q8EH9UC9ANGRDBZiiZiHdCnQL0Wv+9g==","signatures":[{"sig":"MEQCIDCj7MBtt1DFxzoHLy6dU0N7aNDY1AeYDYKaEqZ7EXERAiBc28rfk8Vjzr1VqRndgLcQKcZfmRyT5CBbu2oLQKzHJQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108953,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJ4QICRA9TVsSAnZWagAAjRYP/2XLPcfwsnHmq3JQY4yF\nn7WLUGmTp1HN0OMiR2ACbdAyMiZY7A+dnd5cNBCjo1C7LL6AnBqYsep43J4a\nDkyArqZMfIYEe9diqQzoZSlm/ccae9ZHaKhB6JpdAOvEoiTmpowCrEMGWyhh\nI9sSVKLs7awVoRZqWDt9/zouFxjPzk0bMTBImUDhhx21HmT7s5zjQoOwu1In\n2h8sjyiw2IbVOxYtiACTvVwdnGD7TjmxddO2b+seCbM+vwvTgOKVaz0PLTuL\n5NHKHeiqdQrligV26fJHGDGvDXpfMC4hN+6r3ETt0ID3BCYCK9BSeo4Doe2W\nlPp4ctUrXdHUon7DlsxghyMVS0nbbzXvVB1465NOqOR0chNgArY/RyKLBYIz\nBJeMh3GWU3TkNw3Q25dLrz4H7qHwJcEWB+sHO+wnZGjnLBSRN3lJ66LCnQpd\n8zETNiK8lshJ4JGIsekIm8vOq+E+srZ/Vl7IbQ5FWQQ90Ri7yDAgNgoOQFiT\nru2DL9HX5w1CFO4lh78Zs1t1wPMyDgl3SwpXizv2pACwsLEQMDDUjkqwTOTb\nTqY53nJwGqZ0/28rOH4mlVI+Pi6TxkEqGure9fQBvaUkHU5at9GLotBZVO56\nFY4B7YVyIgylyD258P85jAT8TVf07cv9FKC2KOzFNfCax7McH8mfXyveFkZY\ndZhM\r\n=Dp0Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"b1975552063a87028058ee033596f7ca4323aa6b","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.4.5_1629979656215_0.8545591817300706","host":"s3://npm-registry-packages"}},"3.8.1":{"name":"amqp-connection-manager","version":"3.8.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.8.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"1896439bd34c73c7a321943aa6d1a48ab46ee2e5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.8.1.tgz","fileCount":20,"integrity":"sha512-v92zEQgW5pCmGdApnjhwqgbw55lDHIJzCr1T9rxfL15aryWuhOoGoUdu04Eq2QL8H527YAaGUxOiKznCLQoEyQ==","signatures":[{"sig":"MEUCIAF2mmlFt2GNAFwQo1zMlly0dv4YLHvnV0Uk1XdFoj8NAiEA4pKQgDZyPqdwlt9j6vXLH7swHTUq88c2Us5VT5Diayw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134731,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzBnjCRA9TVsSAnZWagAALJkQAI4HFZWZOGFYCOXrm5hm\npW/hDcVRnLdNh1115FFXNOhY7j6GBEmOudxw+isw3q2ItF2yMLFxqXaXvDFk\ni+8PfArs+rhJZg0idRzipHB8mh4w9szDi2SzgupbUUBCG4UvKWRv44KM4x6B\nZW7GrprbDOJuKArLAjGaoBRBculu/NreznvVl5pDmF8E9yDdtcCqrAAsZwOw\nZ0x3esDdrFzR6yqbCU0HJucxTZplNpaEFEwqGKhE8/ycFgDoHXsRBbHZR2UD\ngkkurOg2vwxerYXTUbNmzM5KRp78sabYtzLdPq2WHJ+f0iMdK+8LPLxIN4Gn\nOAEAHbyvS7NZdIhxXq5qp0YzRbYL2BYmqsB8wQGr0R8aU7dfO8PTOHUWwIjk\nvgxWk3S7l4uu1g01lrvMBG8WOPbVKMwewTkNd8Ux7DAfZz0LghoaCO5qSffG\nmHkAfueyzl8uF8tCZTKjT7iSFUUO71fKFJ8UQrkNwrDVzBA/TYDTCBKnqjGs\nr1vlkdN69hNsBO7uEKJ1kWCqx0qbmW7jw3HyZw+2KedkFbDeTygRt5OnJwDu\nTbPPMMdkLHNso60FJ2MGaimwXjlyQSP2D4W1iciIcQtupeuxsEnCqL88KCyM\ntMYzxnbqiEXkUcOWK6pINkJG/sFofTQB4qsIFGhCBRNYn+l6ygHdUY4VEN8o\neyqf\r\n=/Tyc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"4d9f385d0d6b5d54f41a3bd2150e47e4aa621143","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.24.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.18.2","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.8.1_1640765922960_0.640039445684478","host":"s3://npm-registry-packages"}},"2.3.3":{"name":"amqp-connection-manager","version":"2.3.3","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.3.3","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"26a72c5e37554b119300495aebc31e668eec4a86","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.3.3.tgz","fileCount":25,"integrity":"sha512-sYp323H2EtW9oopoKyGEdXjXbdzlE5fWyc+w6dvCHKd/sGIersEu2CNz3PE1oGyZmJC/GXRK4AtQCnVi/znYpg==","signatures":[{"sig":"MEUCIQDooOa3fm5I0cJMqBBGfVOQF/bpw7xeBl7kGYOhddjP6AIgfOFSucSQp+1fmthNHturxOnvnHRfJkAx1laThHiaoSA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":168294,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEnycCRA9TVsSAnZWagAA5ckQAJLuJGP5LepE/EZVE1uq\nPcHxnaSGCvvUikJVgqbx51NF9OKTii0W60kBO0nSVLrwg/iF5sxnluHDNabJ\nmqZCTMUlyNJvggnIoj8wCH4XuM9uDtxs3+A29zOcY4ISURntDjxlRs+gedEv\nYJErFgMCfwsLGQdt3MacicCuNXKiCs2sDoxV9FFmlomYytvUgdWncaait0iy\n8YxpFzcaE2iPjWNtVWHFBL2VPg8TxARjV6iNTb3HZcorthDV/dRLCnvChVhh\n7K3U13eKnOt2DjT4SmE/is7pSewuddZZrfw0b16slrijXlr8NfDOsStWhOEi\neg4MBIooPduEeGtIK76FPOEiZHPbob3L4+imIBvPCnDMq0pzbkQ9SCxJNsTz\nFYlzWEPR8LA+qwbKMOLy18ceGPKkdRsuCuGzVnIKqFeHxqkqV2eQ6EDkvIgL\n072XpOzAq645ywEc2dyOmMJlODNI/ooOfQ48ggrqY1+3X/wfhFEefTTcDQif\nQfZjJ3GlqQJk9aw0eDBL32D8fuZORxboJ9ssaUzrX9npHYRstppYi8k9wRf6\npkpaqXxKexlk/Kx+1RbY8Gf7dVkSn0hhA4jPbFs+rUDZARrIZevyJzVqubsq\nkcDYUoc1XwVYDO9D0Ywa1iMno3k3U0DQ6dwTUDYTFNu5zBT8rk8kH/F0BZhW\nAJOr\r\n=0nH/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"b83d6bbbb2c94c418cdc8b5a0515ffbd9613bb93","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.5.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","chai":"^4.1.2","husky":"^2.0.0","mocha":"^6.0.2","sinon":"^7.3.2","eslint":"^5.14.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","cross-env":"^5.2.0","@babel/cli":"^7.2.3","proxyquire":"^2.0.1","@babel/core":"^7.3.3","chai-string":"^1.1.2","promise-tools":"^2.0.0","@babel/register":"^7.0.0","chai-as-promised":"^7.1.1","semantic-release":"^15.13.0","@babel/preset-env":"^7.3.1","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^5.1.1","eslint-config-benbria":"^4.0.0","eslint-plugin-promise":"^4.0.0","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.3.3_1561492635294_0.7580723923853971","host":"s3://npm-registry-packages"}},"2.3.1":{"name":"amqp-connection-manager","version":"2.3.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.3.1","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"6d2e1f167fb60184e157f4c686c4fdb86eb578e6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.3.1.tgz","fileCount":21,"integrity":"sha512-5uld2vHfUZWfTjYhCsmWhrpNsESUxfq0K1RllUUavngULgwxLZcsm0PjhhwqNwEXRhkK1uDMS/rzjUGCZBVYaA==","signatures":[{"sig":"MEUCIQDXNkfSbxUzRAaMIgMvaocLPkbsXDbFmYi3sX2Zzge3mgIgKzh9R0riprTSDRu5pGQwV0iJalrFYKzRjQioFfga6A0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":159680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcomxOCRA9TVsSAnZWagAAdKwQAIgTbTHOrJOG5rjntxDi\n5tDl0FNqCNHcpEiNdSStbAMVNpaWwcnlUKum5lxWzUg7XnHivshInGpTjLkB\nNRR/mw4av/JM2jp/1bdttM879q7vt+UbbLp02N4a2S9x9ggpvj6S6cs6RAwU\nDH+exZWDD6u+IGC6TQUVdjvtji4BB35v1K/CyqpOyFbHmn2+0rBB6uB43oaE\nenaSQHkIyltNvZDZxWFVN+vD8D+KAABVZL+BrTzDHCOX8cVmSFr9AaqL2xVe\nBVWZs9JtLh3Per7tWjpunvGBuColrx/ctjfLvxXy2R9OfwYtPKW0LOUo0MaG\n+tNKqTbW3zdDBApesLBgIUx2xzvc2RX/w1wiRitU3msAnwtWCs/XFlrhCtRc\nYlkcmUcWhxGM3GvWh96A/cj1kDtiIAcH8KB/FiTvvauW17vo5lV5sGitL8uo\nvp8RMc5otSpiQxBmlTlniiayBRuJFJDqmvRMDu5m+ZtY4cX9lJ1f7ZVGcKy5\ngwewihWmzeqj9wSfl61X1/fMEKffFNZRgGbid+49ImW7eR1IykrXnvCqySL9\nNOYh0k6+TJ7EG6ZW/YjmnHR7OrZUpdwgjiwIGPOw09/kUjq3H9E7mqnXgTjo\nLj7HlYaCo7zFj+dG4zuBHpZR4CjLzh26GOFmtHIYRl8MaY2MKYVaNwjERacJ\nAZXM\r\n=5zG3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"cc84805bccf1a9fe75f5799fcf80a4e8b6aa52ff","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.5.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"10.15.3","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.3.0","chai":"^4.1.2","husky":"^1.0.0-rc.2","mocha":"^6.0.2","sinon":"^7.2.4","eslint":"^5.14.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","cross-env":"^5.2.0","@babel/cli":"^7.2.3","proxyquire":"^2.0.1","@babel/core":"^7.3.3","chai-string":"^1.1.2","promise-tools":"^2.0.0","@babel/register":"^7.0.0","chai-as-promised":"^7.1.1","semantic-release":"^15.13.0","@babel/preset-env":"^7.3.1","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^5.1.1","eslint-config-benbria":"^4.0.0","eslint-plugin-promise":"^4.0.0","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.3.1_1554148429949_0.2684414821307608","host":"s3://npm-registry-packages"}},"4.1.11":{"name":"amqp-connection-manager","version":"4.1.11","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.11","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"c5bab12a9fcd01f65ffade5278df208d85e6d6ec","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.11.tgz","fileCount":20,"integrity":"sha512-amk3oWAFglMdX5PKSjpkrp/uVBWaEp9CfwQ/6jMgoVQx0DdU7G0aM8X1VilZfOBPwBSbOwUYS1c2LCwjJcdN/Q==","signatures":[{"sig":"MEUCIQDSFkbh8kRtZY0Sy+aGwZESyEDMSJ6rWzqnoBVi1pcZ1QIgKjXR6U7AuhwBaqdowDWReqd14732Z1xYXiQ2dSgPNO8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":145348,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+PLaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6SA//WcNq0iNlJku02q0iDQNcNOLxrz/7coRLJTfbTx0wEtVXmrsq\r\nxtU2Y7IeNA6ckxojX39udjs8Q3mvdawXNdgPoFNSUUi4BhbEgraU6l/PMsH8\r\nR7NTYDr4gg849VvNzMMNlotGumkhkID0sr9FQvcN69v1t9HdySeeJ21062f4\r\ngPjHLQHMDyzuHD801xvw9kXcmjav25WHnRaLMFSYnwfTvDCkjZd55lDSuek+\r\neRFUiZimeAC4AbcYIQ1ngvrpiwAsrs24AAZRbfcm/Q3GaHxKnTJwM92KzrYY\r\nU4B3NpksryIyEOQbnsJsfiedghuwc1UIf0ixXKszlhQmBe5Ss1tGnnWNCFpE\r\nuqT2IKUjz2U/ahOwJP37vFVB0mePjDIEHtT5Q90lMr9WdRts3iIt4k2NF5rb\r\nGHo5FdW9IL6ok7dC66rrPlM5wDimZ+2G4/iqS4BmHHeFumzwuSUErSSRO6Au\r\nmZ6IhdhHJh+oxcey1v49cNrRaXWOZyhimSnYhwJN8AdW2SOaZOaFmFaYLYPo\r\nahOpZMLeabEGC4TFVfa6P2WSHsKWiDsMMGDvbllTpPoZmCDqS45rFxbLzOa4\r\nbysX/S5++UCujqaWSS400shJg2DLasCYzSov7ecbViitWHwJjfbjApeuv4DQ\r\nAYkRWNKdXMBTjpGyNSB075rIFBZP2d6tC8E=\r\n=5sgZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"1de5e7405f84853f2b3c2acaa9d3c82fe61a98e2","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.19.4","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"18.14.1","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^29.2.1","husky":"^8.0.1","eslint":"^8.6.0","amqplib":"^0.10.3","ts-jest":"^29.0.3","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^29.2.0","@types/node":"^18.7.23","chai-string":"^1.1.2","lint-staged":"^13.0.3","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.10.0","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^11.0.0","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.11_1677259482008_0.14676573979195884","host":"s3://npm-registry-packages"}},"2.3.2":{"name":"amqp-connection-manager","version":"2.3.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.3.2","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"5fca51752fb2e9d1261e210066ae97145ff6eb81","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.3.2.tgz","fileCount":25,"integrity":"sha512-peU+ib/vmveoSbNl88N40yOpvYFaT4C8ZZLrd5957KrPqtSLpCHaD7lTEkoUumkIklgdk2zcro/oEhjyoCWbig==","signatures":[{"sig":"MEYCIQDu3qX8zMlf3h6Fk4QRri0zbGd9sVXJww0QdtbnwdHo9AIhAJH7qVcnuDI0qC0KeQAdkwinqguuatNJKLKMFkq5hyt/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":168032,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5ErUCRA9TVsSAnZWagAAW/MP/3N+pcya/q+k6YXp1il1\nTgZgCrErz3YhEjxFnR5qs2MWLCuuRMvnZV6hLsDSLknPNccJ/27Ac3bMuQ+7\n6bhmqg36faMbq0Zx8QFj12uFzFaxBCXYrjcmJASOHRXFCoKB9cCS90q+y2Jg\nAkiai91ADiYPsu54NBAoAD6YJLgs0ubz+KucCeMTKV5EnWYp6zn0FqlPp+ql\nserI/a6nQ2eyAF6u4nBidrJwr+aFoK1aT7jI9zRKxFSYHIw6pba5a6VMqIIV\nvDUGYrfo+eSaDNswXzwqItTLwkQB/xcU2gh3HPTmX0zvE8S4YSkjH+mVrtBh\ntnJRL5G7YkDJIkeXQt6F1UAv16/qPBcRMgO5w/s8fCQT1sTd25954ZdWymt8\naSlam6JSLA0plsQH/0YUQly3x8phdrqrJvlP5tfVt5b6awn5UJytFMG81x9S\nsbmCAerp8KN9s1+rYwgUr6/uF7i9RUG7FQqcrBdStLYyzt9eB1RjlqxdaIIJ\nkhJw4uBhgXUredAaxXKFWDaTdQc/iU2h0XhGlk45GZX20nti+XDHFGZELMNA\nta0ok4LrX4DH805HKT4hJ2g8zKi39m+vMGT+iGcGOY1HEd0MM/V+jQkEkPM6\nQ9N2clGmBC7l/8bMneVbvZFrn852CX6RvTvqp9AfBd8e0pdFJyNHylO859BR\nzQwh\r\n=PJkj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"4b09b76063c58f6aaaceca1ba5032d3dfa653cee","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.5.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"10.15.3","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","chai":"^4.1.2","husky":"^2.0.0","mocha":"^6.0.2","sinon":"^7.3.2","eslint":"^5.14.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","cross-env":"^5.2.0","@babel/cli":"^7.2.3","proxyquire":"^2.0.1","@babel/core":"^7.3.3","chai-string":"^1.1.2","promise-tools":"^2.0.0","@babel/register":"^7.0.0","chai-as-promised":"^7.1.1","semantic-release":"^15.13.0","@babel/preset-env":"^7.3.1","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^5.1.1","eslint-config-benbria":"^4.0.0","eslint-plugin-promise":"^4.0.0","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.3.2_1558465234634_0.5047002665914186","host":"s3://npm-registry-packages"}},"4.1.10":{"name":"amqp-connection-manager","version":"4.1.10","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.10","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"90343303ce7abaeaaf852a9de26bc9e4eee078a0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.10.tgz","fileCount":20,"integrity":"sha512-0289u5PQ/0s8o9Gbq3YZw7euIDp2ETjvTwams/yletCcTJC+HyK2DiMe8gRK688tCufdou5avoFCWDlTN9QeRQ==","signatures":[{"sig":"MEYCIQCKZXIFd4U4qPJkCuJc4W/rj1cvJI4PxglgTIDbYqRNDgIhAOjPgquOfw1nxwBU1upXCZ8+cOvBurj623NpwT9bqDwE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144349,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjsMZ1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmowZQ/+IPpTDQd9ZrxOhZ6zOt4F0puseOiKNH06Mzwbs9w1iH0T4EwX\r\nWI9IBN0wndakSpOb44ED8bazzf3kG+qWmiLWF47UdrFW4/hhPW+oqAYkCR1u\r\neVPF6pnYPa4bdDcrkPk3ZYvNeeXxGr2642yHhp0iVeg/Aog1UycFJGnl0YnD\r\nVyEl84n1fUW3URtuGEXwj2FjzV+y7MCB4xCZrwHpUyqpZn5bbZ8w/4qqIGaE\r\nFUy7R+Kzl4vduD5c4+4HlpGNg4NInOgM0bwPV10ict1xYiWGSl+h0HxX5Pst\r\nloqN4VML0Cb3zd2pKNL9nxfWaj9CyCoSbrGpX2lx1lhmhohzUe4ZH+393BEF\r\ncm++RXBoR0lbXmclzBG23KoEH0Sc24O5caCYU/CPIvmEfEqk1NRHIhzZzATg\r\n1mHaAvMXvBHT3tZLFQnG4ZdNm+JpwB9JyJesYxqj5qFsDAu2EAg1y6yRTeSt\r\nOfeMDX2xazY9jF8Os58KPiXaoXulTxoK4A0SoX7yVGP7Qdtzgy/Yl70SJ9vx\r\nA/MvXIRhJH/fsj4uAVoAUsD+YMOOTFA+MUdW5/TTLoPezFxYKXDVIQ1EoYHQ\r\n8NlIgV//Vk8ZB5DUm5JE+jGlwvEgcorso5zuMYQVzyFL5uWydDrAJkjNQqHE\r\ncRdH7xcdQWNd5PJ/P+xMeMOCanHwsRl/KiE=\r\n=NmQM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"7a3d1d1076aa2f2ac0b292943da18b67e9a59c28","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.19.3","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"18.12.1","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^29.2.1","husky":"^8.0.1","eslint":"^8.6.0","amqplib":"^0.10.3","ts-jest":"^29.0.3","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^29.2.0","@types/node":"^18.7.23","chai-string":"^1.1.2","lint-staged":"^13.0.3","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.10.0","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^11.0.0","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.10_1672529525219_0.7965842512736627","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"amqp-connection-manager","version":"2.1.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.1.1","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"8c5e9a6fcd7382b38e35ce49f3728c9ea3574859","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.1.1.tgz","fileCount":20,"integrity":"sha512-5FqjE/YfMZc0GUNtZrP7RXjCsteEj8G9/ZzPYX1WEN+bardWgMF+QkLwPRzZ9TrsRWhNi0rHlLro1AubrXCAfw==","signatures":[{"sig":"MEQCIHCmJw2PUFJYq1qcSPxEbjD1Ups+sG4+Bad6poVyM42OAiAf0EBvmZIucliUB873Vks39KNVW16oFceJORxP3PclpQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":116090,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbj+otCRA9TVsSAnZWagAAQKAP/0XYZmouN76Lua/g/M+F\neajN4YRExvNkMCEsKSxhO/3aY1MvAh09WizmhYU2sotCqr3VnDtkynBacNVp\n87zT6xF7ZBvfO5n2WlEwZDFvSdX4NwZGXM8uYGmX1IRk4LyDkbl0HkbQwyTK\ngWIQMg0anCvTAXvTUUsy4Ux+zBnBX08MbMGzDvW6Txy/JEtQ0kFGC2zX1iPi\ndQMLThSvj0rFX6q19dMRnBNR+l4WA9vjqLiNOrO3M7EA+9Nntl+cdARV5CvN\nqqEHx/r28eKmQmAKQiVMdiz3EkIhyRdDxlHuPMoUBB7KHdjiFqs/NiybjF2z\nI89Lr6P024hD3gtUcOECdel9v0x8N9tPnvwsmOE/aVGuc9WRVScpPS9gN/RQ\n848Iy/vgMCnsjZIAmvwNEGteMN6Uso9abrN0RiSV7sRBjRtCdMUkPQbTKEch\nMj8ES2ggKZCvWsoQtgioY3OWpKbW8aluXcSN6/ZjGNd3HYeIUVjngzdzv7+u\nf5zZDezdZsZJ3y+s4n+q+0FD0wnR8wP36B3tb1POVkUy+cmUC+vrjfalVMI0\npNrXMeorBnJwTD7OK2xLsqVbhRN0niphP7HrMYHito2ZTLyc3BEhttzSelTt\n+2lSP9HUYPw0bVnJrVjIWlV0X5ly6FPRCjJh6it20JM4pYinhtmNQ1wHl0J6\ny3ZS\r\n=2qKs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"ab7e8e04545f89f51749494cca006103c120ba78","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"NODE_ENV=test nyc mocha test","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"BABEL_DISABLE_CACHE=1 NODE_ENV=test nyc mocha test --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.3.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.11.4","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.1","chai":"^4.1.2","husky":"^1.0.0-rc.2","mocha":"^5.1.1","sinon":"^6.0.1","eslint":"^5.0.0","amqplib":"^0.5.1","istanbul":"^0.4.0","babel-cli":"^6.26.0","coveralls":"^3.0.0","babel-core":"^6.26.3","proxyquire":"^2.0.1","chai-string":"^1.1.2","promise-tools":"^1.1.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","chai-as-promised":"^7.1.1","semantic-release":"^15.9.6","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^4.1.6","eslint-config-benbria":"^3.0.2","eslint-plugin-promise":"^4.0.0","@semantic-release/changelog":"^3.0.0","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.1.1_1536158253043_0.972827601617896","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"amqp-connection-manager","version":"2.1.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.1.2","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"59bbae22b92ea1439d988e856fec4236d26f3423","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.1.2.tgz","fileCount":20,"integrity":"sha512-WHYrlfs3IL7EemQupjcc6zmN6Pcb8LSkh+Lk1p7/LSgIddZCZBsFeBR/kSJWkDB2fIJEFX7TPIsUqGMqBLsczg==","signatures":[{"sig":"MEYCIQDhg9gPOesrt16AGPIuXAPWo4lkaXsMyLN5s0tJETIiAQIhAJCbfNk/oKIFDC+O0JicjoUtAS4L48/BQI+tSkzuDSV7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":116658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmdAmCRA9TVsSAnZWagAANkgP/jUtvWrOoC3TTwd3H0as\nwJFgWqmIGTx5VCYEEp1WtpfDqahsRIsYO3+sZKCEYEGFJtjlcEroHIxW7f0X\nWsrh8zl5I4TdlrNXfDqB6XztU/GrbgdvBdL649ovvVNilALw+np5FP0XvPZf\nCRcpQ+NQa9i1UKKmxh4RTuoow7Yez9foR4IbONPg2e/7xkXwICOTnLg90xjW\nFlwdD9kFGwFnklls3pzy2Ioa3+RVsUTHCnSHMI+lkV4s7C/zHqra14WeudIn\nmGUbeItOoAm90fHZB0aYLJ+Yd7X4IF+h6EEmacCg15ARPtET8S/M7ArBEIuf\n5//qSUiABsY9WE6XAjeiVUmg5XKR6L81Cs4jYVU93M78taG+rcLnNRhRhin/\nS/WqBIP3vx4mQrnzeVPcCGTCwSnfyXg+AZ4cdcEaSgP3N0TGMACaH5EIQgXY\nKD5iwrUam9we5aTHcXqpPaaX0HrvI9NIZzH3KkyC3gqUJJ7i97WRT1KLslMF\ngDECndYg6pxLb3xgK0guasnkPlRCb1iPpqL8u+/QhewKJVFOY5+yO/QknJOc\nTnAtTcq1gdgeDOLpMLL8ZTQDJ/O2Woz1osfRZHndBdLrHigW2cIony1lhL4c\nxq4bCryx5NLftQjUB/zialFMizHErg05nOmJv4gAxYnid3dDHAI10GQJDlK9\nyAD8\r\n=n4l+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"0f8aca833b25199bb7d9759b7ff4e4fd47ff4cd9","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"NODE_ENV=test nyc mocha test","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"BABEL_DISABLE_CACHE=1 NODE_ENV=test nyc mocha test --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.3.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.12.0","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.1","chai":"^4.1.2","husky":"^1.0.0-rc.2","mocha":"^5.1.1","sinon":"^6.0.1","eslint":"^5.0.0","amqplib":"^0.5.1","istanbul":"^0.4.0","babel-cli":"^6.26.0","coveralls":"^3.0.0","babel-core":"^6.26.3","proxyquire":"^2.0.1","chai-string":"^1.1.2","promise-tools":"^1.1.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","chai-as-promised":"^7.1.1","semantic-release":"^15.9.6","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^4.1.6","eslint-config-benbria":"^3.0.2","eslint-plugin-promise":"^4.0.0","@semantic-release/changelog":"^3.0.0","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.1.2_1536806950108_0.48522787080874585","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"amqp-connection-manager","version":"2.3.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.3.0","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"bb6650479cb5df9952b365a8f55fa93e32d7edd6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.3.0.tgz","fileCount":20,"integrity":"sha512-DvebklFknBkareuf3wxE9X1Eo7l0UK1MgeO9m4B2T/h0OvzLRYsXTtQ8OrkXfgkg98FgKRRR9Nyz9+86aJFEaQ==","signatures":[{"sig":"MEUCIQC4GfpV4/1Cs/yV9AwXyN79xttfwxPeXc2HdL6J5QlFtgIgUgnkBabHd9vqVxI2HqNvn4t1KI2VZbgjWL5K/2TcgAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9CqvCRA9TVsSAnZWagAA0VsQAIaWXP1dDKQ/w7egkxbi\ny+YXPpCaL66Ffmcjf8T0u+2AxkpboYQ+cxn3dCKAFV3qal9F/YHTIU1FEgkw\n/9l5SxklAl75q1aQQgu3qQjFl/9TvaxC9JVcRPlkLMEsFyjH+uHrwbgueNRz\nwwTw8eyhKn/amzdyRd7tWzwg6wAm0Xoe3AgkUtMvDiMrtHOet7ATwZW28kbz\nFNcBS/Yku4VDenB7PzzohrcQNuW1TjVzuOTRKzlQWhQ9/LzQWMqfUE73h2hL\ndUJvOxTQje9rAVc/v2TNjdLYMCfk3JTgzwaLm1tLawN44ivHI5Fe9qUDa65a\nzLF9tUW0HsbL4/BNDt5TFlql04Vlyj190XEeL3t/eF6UNcac0GWQX82Qij3n\nKV/ngosWAYbKETBWR4rkb8541IbeCxpAOlH54jPZJdQG15WzH8yuG1+GOw5w\niIWxELVpAmbQ5XEAHgu8YVBWi9qIimT/H3xVvnvFh664nsmys6cZlZe9ZH7Y\nvctz9aEjDbyC4GSpvpovrzf6oWK4JAsZcj/f3itYH6UKrY2ZqgN9o8sl1ika\nwaw5dCvNIaqpVC3UNPMyhdLthiRuNK6zlhAOVEFdGpCfIt39rYceDXyKNULR\n3Sivsjbhi/wAdKmnXH0S06LvBD9lg0rWy1XrT8qBbwWqcLfMfHBfP49ld4BN\na4mq\r\n=P5DY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"5f4df2cb1062999d217cdf8c77a444624fecb15d","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"NODE_ENV=test nyc mocha test","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"BABEL_DISABLE_CACHE=1 NODE_ENV=test nyc mocha test --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"10.13.0","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.1","chai":"^4.1.2","husky":"^1.0.0-rc.2","mocha":"^5.1.1","sinon":"^6.0.1","eslint":"^5.0.0","amqplib":"^0.5.1","istanbul":"^0.4.0","babel-cli":"^6.26.0","coveralls":"^3.0.0","babel-core":"^6.26.3","proxyquire":"^2.0.1","chai-string":"^1.1.2","promise-tools":"^2.0.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","chai-as-promised":"^7.1.1","semantic-release":"^15.9.6","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^4.1.6","eslint-config-benbria":"^4.0.0","eslint-plugin-promise":"^4.0.0","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.3.0_1542728366689_0.16798587995797631","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"amqp-connection-manager","version":"1.1.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.1.2","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"13cdb1c16e123491186b2851f36dac6a87ebebc4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.1.2.tgz","integrity":"sha512-f+KC2MZOoFkgPBiOSLCz/Ex7ansklFAN3jiOO64WMUpxnRYY0edOf90SU4N9t28Ev9DEbB79syLIft5T8rfMlg==","signatures":[{"sig":"MEUCIEWTyGO4QR9Fi3OT+j3IVNtr+V0+YxfQCGpe2/AI4/2WAiEAhKNjVk1rqdnWF2MRE7j57S9q5EV5admsVMm5nRi/5Wk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"13cdb1c16e123491186b2851f36dac6a87ebebc4","gitHead":"3b1129a83cc0cd86ec0de04519f3357632c5e213","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"https://github.com/benbria/node-amqp-connection-manager","type":"git"},"_npmVersion":"1.4.23","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.3.18","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"1.3.0":{"name":"amqp-connection-manager","version":"1.3.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"460e0365969bca76d8af3122b9db220a306b9a96","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.0.tgz","integrity":"sha512-qeDiQsQ5B6/X7bMSgRvZvap+ijk2g3S/MgYXaebwrC28+iXDCzXd4MyKPHPr4rfnUm1SCcudvt41cHUxiMmhRQ==","signatures":[{"sig":"MEYCIQCf8vqLZ+R7UZQBKyzwbWMPlIdPCyMUzE6KdPra4Lw+JwIhAJa9FN9Nd1tOvEsbNUgMJtVLGHNeVdoA2ZgRul44bVHT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"460e0365969bca76d8af3122b9db220a306b9a96","gitHead":"92ceec66090f44f355deda38bb33926680df3df3","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"2.14.7","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"1.3.1":{"name":"amqp-connection-manager","version":"1.3.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"24cd973d39ae5683247cb94293b2f7db70c22932","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.1.tgz","integrity":"sha512-lM8eYZGJTUVuJwXVDC9qzAJXPEW5jCM930S0A073A5Mg6wWhYTmn4e4XbXVe8Khf6ZO7mtJ0GASp09k5kLkSuw==","signatures":[{"sig":"MEUCIAGy1ZLYjv6hqTGzltBRmF+Mc77Ont7/MPxK0W0a3L0sAiEAi4POEur7yZdYQYRbge///pQ0IugLvSoeykBgixy6k40=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"24cd973d39ae5683247cb94293b2f7db70c22932","gitHead":"b02f85ff6c555f41897682af0554ae1a14bbf0ce","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"2.14.7","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"1.3.2":{"name":"amqp-connection-manager","version":"1.3.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.2","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"bd4645d9dac7e1259bb5f7193d4d618663b9c9a2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.2.tgz","integrity":"sha512-Sf6iz7rw8SY/I+0jnfMmuRbs8cB33310Z9AHFtXfOKPUcrhUpQ31osoAP0M/l1kx38zlOGI7EjLebXzhl/Gnxw==","signatures":[{"sig":"MEUCIQCSmzUg6e34VlznkMplgeJwICV3gmlkVKQBpYWIHUmo+QIgF3fHve/b3vtsTWilNpemSHJhFEJRF6Q1EPbBMLxxB60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"bd4645d9dac7e1259bb5f7193d4d618663b9c9a2","gitHead":"15088f14f1f97bad6c353536d7e6e36357891503","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"2.14.7","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^1.0.1","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager-1.3.2.tgz_1472133606592_0.931497961981222","host":"packages-16-east.internal.npmjs.com"}},"1.3.3":{"name":"amqp-connection-manager","version":"1.3.3","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.3","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"df55d2bc36d8bec245822ae1e10da3369d306119","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.3.tgz","integrity":"sha512-DYbgi8eqnznHTfXI7rbzh0ZxsK1GQC8Knm+6o1it0KpARZq0ydq6L4tcqQQZOsjl1u2mjZRG9cfPh83ydiSfQA==","signatures":[{"sig":"MEYCIQDGU3typzka3Uxg2j32mq76CKVr3HOcS72tmFuVEkmhJwIhAJINE6rovn4+gRPJcgwJb52korcR7khs6HCm4or0iyTT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"df55d2bc36d8bec245822ae1e10da3369d306119","gitHead":"391ed65dd7b48321fc87c57ac785216895ba5d57","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"3.10.6","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^1.0.1","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager-1.3.3.tgz_1472157134855_0.7158576175570488","host":"packages-12-west.internal.npmjs.com"}},"1.3.4":{"name":"amqp-connection-manager","version":"1.3.4","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.4","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"e0105325fabc278567c3d5dcc59c3a1f57903b2c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.4.tgz","integrity":"sha512-3CXNQYQYhBPIUsI6CBjmTl7tWUs1tfGa1HVEtBZCS/DkEVmhT95W9AHjS+nTVGUAeyB21ogFjs3R002yy0CP/A==","signatures":[{"sig":"MEQCIFlXNEC0KNpE8q2CDrfa7p0gOJPX37CGkLRiIZ3JS3LyAiAYX40uXThsxH1C/+P8gX+epFw2el/gvVht1I7Mi14PUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"e0105325fabc278567c3d5dcc59c3a1f57903b2c","gitHead":"b9f7a51359348265f7d498fbea95df707539b36b","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"3.10.6","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^1.0.1","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager-1.3.4.tgz_1472655895583_0.04251034162007272","host":"packages-12-west.internal.npmjs.com"}},"1.3.5":{"name":"amqp-connection-manager","version":"1.3.5","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.5","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"4b4725fe96485ca0ad2aca8790e6d38800776449","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.5.tgz","integrity":"sha512-yr18/MLYMKdH/q87p/ks5lCNMze3CEYBoQY+9MowjSXD7AcOPGt2WvqqlvbUPi95/pyQkPHPn6+7J8OFFcSEiQ==","signatures":[{"sig":"MEQCIB/6OzRjlWsvnGuWI0hVr5PpFiCUwMXw5jfLqs9SgGJNAiBsBko1Kt59RxHGKe/4lXQP/kb/VUQmgqBslx2YhGH5fQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"4b4725fe96485ca0ad2aca8790e6d38800776449","gitHead":"043efe38ce10c0f1043bac5d5ad7b2e0caf51d3e","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"3.10.9","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"when":"^3.7.3","lodash":"^4.15.0","es6-promise":"^3.0.2","promise-breaker":"^3.0.0"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^1.0.1","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager-1.3.5.tgz_1477604954571_0.47631058166734874","host":"packages-18-east.internal.npmjs.com"}},"1.3.6":{"name":"amqp-connection-manager","version":"1.3.6","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.6","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"npapayiannakis","email":"npapayiannakis@benbria.ca"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"bb540d2f535ba1497b1b194b72a8c1fb2afcaa05","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.6.tgz","integrity":"sha512-VdbRHdIXMdl3aTs9eT9VU0CRXF9JUD0I+f9mpHeKcZRzT9ADGFevHg6Cy5kG7QlHNuyNRmZWY9hv+0H4RtABvw==","signatures":[{"sig":"MEUCIBoKMyBw/zsADb6+TOaD1pXJVlKvhO1yn6ryH9qBJRFRAiEA+IR/F05n9PGcMSEkYfAGA0YOr8go9eLnYQHqlc8ELQw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"bb540d2f535ba1497b1b194b72a8c1fb2afcaa05","gitHead":"6c32916e3ed8508353ae6199a3d48f042a3986e4","scripts":{"test":"mocha \"test/**/*.{js,coffee}\" && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"3.10.10","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"6.10.0","dependencies":{"when":"^3.7.3","lodash":"^4.15.0","es6-promise":"^4.1.1","promise-breaker":"^4.1.2"},"devDependencies":{"chai":"^4.1.2","mocha":"^4.0.1","sinon":"^4.0.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^2.0.1","chai-as-promised":"^7.1.1"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager-1.3.6.tgz_1508773773503_0.3537829793058336","host":"s3://npm-registry-packages"}},"1.3.7":{"name":"amqp-connection-manager","version":"1.3.7","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.3.7","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"npapayiannakis","email":"npapayiannakis@benbria.ca"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"ba6838cbddcea59dc2ea0bd3674368ab08c94b61","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.3.7.tgz","integrity":"sha512-hilI0rr2QiWnxoWKgQ9wKq5b3qrf1rH+fqwg7rioKge4tEKwtoZoksT9hOHQ5XcgJqi3ShlhVz4KUyR+RjCpRg==","signatures":[{"sig":"MEUCIQD/eU+IQ1ZBnS//poY3PNZEQAoKPBbViDHden1iALJ62QIgNPE46gW7ehgrze0uxcVlKwCNIMa8kQJbomGXUV6fE58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","gitHead":"11dcd0ea984b80d91fb11dbb22ca5976a65f013d","scripts":{"test":"mocha \"test/**/*.{js,coffee}\" && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"5.5.1","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.1.1","dependencies":{"when":"^3.7.3","lodash":"^4.15.0","es6-promise":"^4.1.1","promise-breaker":"^4.1.2"},"devDependencies":{"chai":"^4.1.2","mocha":"^4.0.1","sinon":"^4.0.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^2.0.1","chai-as-promised":"^7.1.1"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager-1.3.7.tgz_1509205588429_0.3048303087707609","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"amqp-connection-manager","version":"5.0.0","description":"Auto-reconnect and round robin support for amqplib.","module":"./dist/esm/index.js","main":"./dist/cjs/index.js","types":"./dist/types/index.d.ts","exports":{".":{"types":"./dist/types/index.d.ts","import":"./dist/esm/index.js","require":"./dist/cjs/index.js","default":"./dist/cjs/index.js"}},"dependencies":{"promise-breaker":"^6.0.0"},"peerDependencies":{"amqplib":"*"},"devDependencies":{"@jwalton/semantic-release-config":"^1.0.0","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@types/amqplib":"^0.10.0","@types/chai":"^4.2.21","@types/chai-as-promised":"^7.1.4","@types/chai-string":"^1.4.2","@types/jest":"^29.2.0","@types/node":"^22.18.6","@types/whatwg-url":"^11.0.0","@typescript-eslint/eslint-plugin":"^5.9.0","@typescript-eslint/parser":"^5.9.0","amqplib":"^0.10.3","chai":"^4.1.2","chai-as-promised":"^7.1.1","chai-jest":"^1.0.2","chai-string":"^1.1.2","cross-env":"^7.0.2","eslint":"^8.6.0","eslint-config-prettier":"^8.3.0","eslint-plugin-promise":"^6.0.0","greenkeeper-lockfile":"^1.14.0","husky":"^8.0.1","istanbul":"^0.4.0","jest":"^29.2.1","jest-ts-webcompat-resolver":"^1.0.0","lint-staged":"^13.0.3","prettier":"^2.3.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","semantic-release":"^21.0.2","ts-jest":"^29.0.3","ts-node":"^10.2.1","typescript":"^5.0.3"},"engines":{"node":">=10.0.0","npm":">5.0.0"},"scripts":{"prepare":"husky install && npm run build","prepublishOnly":"npm run build","build":"tsc && tsc -p tsconfig.cjs.json && tsc -p tsconfig.types.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","test":"npm run test:lint && npm run test:unittest","test:unittest":"tsc -p test && jest --coverage","test:lint":"eslint --ext .ts src test","semantic-release":"semantic-release"},"repository":{"type":"git","url":"git+https://github.com/jwalton/node-amqp-connection-manager.git"},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"name":"Jason Walton","email":"dev@lucid.thedreaming.org","url":"https://github.com/jwalton"},"license":"MIT","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"homepage":"https://github.com/jwalton/node-amqp-connection-manager","_id":"amqp-connection-manager@5.0.0","gitHead":"cea75b0a4d246c51933a82cbc4055dcb3203e356","_nodeVersion":"22.19.0","_npmVersion":"9.9.4","dist":{"integrity":"sha512-88yQzqa5RSBgnLl504XjvCQJ7d+osskdwvg35Lwm1LRbfLjNU9p7SQUMSP82BB7mseiq9tIUPJ3HE3eXQbpjEw==","shasum":"3bf72f76e1e041768080227fffab1f9baea70baa","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-5.0.0.tgz","fileCount":20,"unpackedSize":147673,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCFWflNZv2FPKAHz4FodjKjhqICykr9h849Nq+u1zBhXwIgPEU3L6ImA8QFIt4b5tEWj83uRpG39DgQf5a/cUTfwIY="}]},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"directories":{},"maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/amqp-connection-manager_5.0.0_1759158556824_0.7936776246168553"},"_hasShrinkwrap":false},"1.1.0":{"name":"amqp-connection-manager","version":"1.1.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.1.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"cba9cceb0e6134d6fdd5b2c9dd923a8aab8ea9f1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.1.0.tgz","integrity":"sha512-s2ywKVlFT8323E+Gq5+D5JAchVS1HNESnu4v6gOjIA5PUhUk042zzT3M9t3hw8GT0Rs/JLFruTXZZ/X56Xm3xw==","signatures":[{"sig":"MEQCIG+CyhuUif+h/PCaCkTG2+mp6Ti9zfOBd1qrydR4t/PDAiBA6pTMe9W4Pv/tWTry9PffiJdGOAKOLmpoVjuTGhDvNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"cba9cceb0e6134d6fdd5b2c9dd923a8aab8ea9f1","gitHead":"cd78ad3667cf22196c7e2f9ce98ecce3678158b1","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"https://github.com/benbria/node-amqp-connection-manager","type":"git"},"_npmVersion":"1.4.23","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.3.18","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"1.1.1":{"name":"amqp-connection-manager","version":"1.1.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.1.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"04f59842353f9aa40ec1d23708394262864b7aab","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.1.1.tgz","integrity":"sha512-cKy8cLXv4uRv2xfv0oojFNy1K1Hre8e0mMKRbMTVqw5LyPeElZyMHmjYB9hQHcyGkZGIJwYvfdSw9OS9Q1f2FA==","signatures":[{"sig":"MEQCIE/9B5JKLJssDtQ1B55cnFIBqfx/oBxjs1ePaAktBr6oAiBseYPlQCNK4yJU1U9H8MsTswesNj2vjNAuXPiFT6FTqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"04f59842353f9aa40ec1d23708394262864b7aab","gitHead":"08475222dd86092fb536eddda2b4a5063c1a5d7c","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"https://github.com/benbria/node-amqp-connection-manager","type":"git"},"_npmVersion":"1.4.23","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.3.18","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"4.0.0":{"name":"amqp-connection-manager","version":"4.0.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.0.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"ef318ff694694ada49a6e23a5acf09a2ddb02aed","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.0.0.tgz","fileCount":20,"integrity":"sha512-qG/ooVZ40RUvUzZYDAZrEJO1T1+YvOMWq5SK1DHrJXjM7qSrGEKhrGtAiijhJomyvBBlPku2wLsc4lNobIVdSw==","signatures":[{"sig":"MEYCIQDVUoIa6xg7Xzj/8O+DP3Ik4/4WDS/CndhejUl+7jRS5wIhAP1BEF6j8kTAIQHqhXO3m1eI14F/iqZ9iIPDH6IoJNyo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138259,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2IejCRA9TVsSAnZWagAAQL0P/i4Y4pcHjZzSMJgYnD8K\n5xxjpY8LKC/m/myS1PiV6yNc8OQHygt+tmvk07PQ7HuU+Bz5+exotgEbhMDv\nwDNO53jmbY5l5y5qi4JsWIxB159sDxHfupjHQvD4Xvwn7jbfmQbjl++bz3GP\nu42bETKNYI+sidywroP9d8MDfoS3ayxTVTDL1FxYyEk30wVAmz0X73dFuJ2j\nX9bNzbr7liXcfrx/IGf0cV6D5ROJ5I6WjdmHctP5wFPONA+7aNm7L11D+qNt\nGj7vbtFnaqgiHVVzNVmXr9D16YNv4CcFk3KI/Guqk2PZIwWiCkC90yPrBIjM\nURyHaHDAEVvYLHyS8xHYcbWpa4Rq7CX/kLaFzDOn0icWX2Vjy6zxSywsvNVW\nsSLsnnSYC+2akokXBbDpJ+DSS+xjl5vhECQpEyNMfELI3EfMU9xkl/VkEVVc\n4KutSjzkXQ7fznwk9Axuy7Sf78JFBPRjuh0fshQi0N9aMkgzN5QLVQqXaM6h\nqEGhjiymG5wYf2trUWmT5MKyXFoX9S3cuw8BYXSU0YBt/EwW2FqsDH9HnEAA\n3y7jY/xc0byS1G3x4A/1IACOnXJY/1Wwp1HDU1JR2LLSBh3eEmOBCuzQER36\nd10DXERbLmnsOyNQw7z6ggCN9ks+dvrLLwR8DCPEM4LuH7cd+IWp1UC+Nqjk\nCZqR\r\n=hEez\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"1c29fea58d83f9b2f81c7ec796f1c8971d686ca9","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.24.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.13.1","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.0.0_1641580451325_0.32155952530883813","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"amqp-connection-manager","version":"4.0.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.0.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"5080aa471ac1832b4ed4100d4c5855313171e9f2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.0.1.tgz","fileCount":20,"integrity":"sha512-3PSpV0gzTzSe4myVZ1RPQ0g0mR5UWr4QUihCgkNoZBEFflCVdeidZxL9x8/9A3H6A3TH5YQPPpfqOtBrohwqSw==","signatures":[{"sig":"MEUCICyniPh7pYMGWoKB1mf/xw3c38XbjzRAYmHWKrY6U2mIAiEAzKLfA67VsSmZjCVhFfs6jYD03i62Ks8OKyGAFVCyno0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6fw6CRA9TVsSAnZWagAA7NoP/RmLs4Iv6vYHiWcvHwAT\nEDd9FqUboW7uYZfQvstsJBgcF/7tZBWteE1GC5dHcJ+FgDTFUkcK3R2vmXgo\nMBg7yFRnNVU/Eh+XdvYq0Zmm5Lt9DvN+OCUlCdIqj4tF97IS+QtDc3S7cZSw\ntCOd8mIIPO95Tb+X50ZOROh636gAurFTzMYeE7AEsEczR26FLFfO9ScGfH5o\naOtAoINGAJBNuwymQvmZjxoIe0baPopw3Vtp1ZDALxxhv9gNYrfCvSF5Kfxe\n2kK+xudLcdSSppJ65LaQxlIgg/c92BWkZFNJA9gOBAasrruQYEfjO5DALR9w\ntN3q6I35llvRSB5cWBsWn2EBNnwIQ8isT9NAIHG9ueNydkB5h8UUcOdsjuOn\n+P8iPMATYWtVFOgzmX+ixr17WiOZ4mVCwLpyDlm+bK0QZ8bcfTEjZF0QvoK/\nMYuYU1LUz8eGI+TnaT90tPhCDEXfS8QF15/y3QrSTqrkrRUfXx4/kBM/i8Su\nrAtDjvCMabOIfQkIPK8U/xETgjevk6DDZsLHi2Q1+dVoJO6HTEB6OIfZ8uct\n9T8SVTB+qggZHfQ/zIN/Tst7JogrgCvUodifNugEG9v/BpLKqoSgFMvMWN1h\nr82C/XY62NqM9UPmR2pefcMpOUGuq6/YvfIibsF+I3Rbj7o+ohIX874p2ubG\nh97K\r\n=+3PG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"bf7b60149d608d3a692edbd58b75832ae758c56e","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.24.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.13.2","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^17.0.8","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^18.0.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.0.1_1642724410225_0.4343482901482565","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"amqp-connection-manager","version":"3.0.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.0.0","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"9e273c616122033ca802f962b4d0e48895a5ff9a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.0.0.tgz","fileCount":25,"integrity":"sha512-a5MsUDsG+CqMjwk/WNFSTE0H4pAaWJXw7L24QFa3MeaB+KA05PXoBsppYlIzaIqc1XLWZwjO9J42AFHNrDsVFQ==","signatures":[{"sig":"MEUCIQCF09yiXOCh2BNJcfH+TxS6ELVMfHzNGzMVM7yj7eS+kwIgH+RiX40LpAY4uxg22uH+u6QdM1odglmdPAVL8uEkG0E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":168664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHf9KCRA9TVsSAnZWagAAOW0P/AssZ5LMJiEM8prdZv9z\ncHFMHolOfyV5J4YQQHhrhZ+83/D7ccgeB5KKv2boZrpaAbtRRnnbWg1R8E/J\nVYy0moZzVtLbllUhbrgsjxkVtThlc7HPZKKQPZlMNwaBkHaNKdo63w9MLXYM\nmimGyjqGbjVXHr/EIJaQP/RORAkOb4/nM/WB64rRGoUYr379Vu5bE0fP4w11\n8bt8aajQVPKe5y/ZtxtSoiC1cFmv5kksG2CdbJO91Vo3a6CFaWG/SwXjW0B0\nOPjc4oT66moklV4tLJJjGciDpz7nqZPO//gOlXxBk2S6qZYd8H163c/tvwRW\nVUDgmnskeOGGK5cVZ7QvS8UnOlPE6NPqYKh5DPqJsCYv6E66FE+PcvMgKGFU\nMPgQdP/u+Zs8kJ1KZuldcgyE6ZsVXsM06MsaYRaNT/ZjB3cPgWBPzyQlltA1\nNOfV33pZbI6nRWGv/WPKXbGjf1Jv9LDdCowUtoogW5lE3KKRNcAGlFH28EO5\n5rYzUeyBVDqwztS5mo3MDwoV7Oxr9RhZ3h6I5PsYsn5VNKCBxKJeMoarh20o\n4taWLdFRsqnYOs3YSJGeLjkS9dMCalo/1xouQCu8uq7+6JA3F54TlQYkzG6d\n+R/+cRkAyrGau0vbaAcsuJI08ZJIRUns+vMH37bEgRpa9V1OGlaGAuuDU7R6\nAeYO\r\n=6xTr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"cff958a8e88b898f17d1ea448a59c18c4f0ce571","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.10.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","chai":"^4.1.2","husky":"^3.0.0","mocha":"^6.1.4","sinon":"^7.3.2","eslint":"^6.0.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","cross-env":"^5.2.0","@babel/cli":"^7.2.3","proxyquire":"^2.0.1","@babel/core":"^7.3.3","chai-string":"^1.1.2","promise-tools":"^2.0.0","@babel/register":"^7.0.0","chai-as-promised":"^7.1.1","semantic-release":"^15.13.18","@babel/preset-env":"^7.3.1","eslint-plugin-import":"^2.18.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^5.1.1","eslint-config-benbria":"^4.0.2","eslint-plugin-promise":"^4.2.1","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.0.0_1562246985660_0.5302695518605485","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"amqp-connection-manager","version":"3.2.3","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.2.3","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"a2aee3f64ba6e0465d462e27164abd5cc7f68b56","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.2.3.tgz","fileCount":27,"integrity":"sha512-PPhjj3LlBnJBn4kYis93EgpQCx9g3REGin5eDg1+zaAPUGguVQg+UHZVdVS6PPF/yV4Zi8WR2WbxaTri4SN5uQ==","signatures":[{"sig":"MEUCIFKHk9ft3j/is1ECjgEfT7LOWGgCrk14FlfBrFLzo7v6AiEA7Jibb5C9mbHEHkqwpfz1RXUqcfljXZ7b5MymwN9rQaE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":204991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIR5pCRA9TVsSAnZWagAAW9UP/0XEf8RPNpJG6jo1Oh4q\nbufcuLJbIH4eJ5WpeJ0cvOH4BtAX1IwagTfZww6MUyUT3MjnjUvHjXidU+pU\nDNzLNakc5iym75wxBG0zCghOvCPbfYEY1cgRldJh2F6uQ2nTysmf7PLtsHUL\nfxrNZ1lPUtCy0tg4Mdl/0dmXtq+WhwmuptOJtOJ7qJi3HMd30l4c80N77Z8r\nimEWAlbUoqZJ5z8mm0zBmYGAwIOJmDQ28w4huiB84+ALblIsAHz6gUBb2rtU\nN0TAegPBEzpFCznivXNi8mnVYpIXN3TORAd5CtG7tY/HmC1rJXaB4f/U6cNn\nkqcElmnGKjI7MFh2D6ls4p3/zB2fj8qaXZ3o70TChOdziAxWVV6nCzh2dP4p\nR6jnIJBljohJZLlX1A7WYuvfV4hbGydEIjHw1VLueNAZGq1AO8yxVfMwIUsS\nZ5+31XNB+P1W1AbYLVP3Tr7kKdU0Y1IYx6KaWNXDfhlQ2ru1BtDbLP+fSqp+\n0FHuEr/0DMG2OzHJT52HXRqJB72pZQeHyQarmtwJNm8dBc5FsYhV8vWvGwJl\noIgKxhq2omv/XOC4SpYN6FGFdsVnLQoiuNcBrLA9U46C0iOrND067KlFSym5\nfwU/HCVTCqgUbtevNdI5EoiMw8L7CmURYJc+5dmLgkMdzXwbteTrxj5eStUb\naBZr\r\n=Mt5n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"285a5264fe879ef54548c84daf3a9462944da176","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"husky install && npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.js":["eslint"]},"_nodeVersion":"14.17.5","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.1.2","husky":"^7.0.1","mocha":"^9.0.1","sinon":"^11.0.0","eslint":"^7.8.1","amqplib":"^0.8.0","istanbul":"^0.4.0","prettier":"^2.3.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@babel/cli":"^7.11.6","proxyquire":"^2.1.3","@babel/core":"^7.11.6","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@babel/register":"^7.11.5","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","eslint-plugin-import":"^2.22.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","babel-plugin-istanbul":"^6.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.2.3_1629560425702_0.2162063994233112","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"amqp-connection-manager","version":"3.4.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.4.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"aaef5ef5139dd4c36b3740685471156ee3134fbf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.4.1.tgz","fileCount":20,"integrity":"sha512-jvMfnb75U0uKtp64QT2HpBm+H6qd9YUfogAaovFtu45AMi+kj96rLqd+22M1EaYOmPV2zYT5GOxD/PnVzR5RLQ==","signatures":[{"sig":"MEUCIQCVecQrpIQVRLgjUxWVAkckf3LyPxGNrqhug1RWaqcZAAIgJd4A66D7uMX71Nzd2cIh+mkroB9ni54qi83kgKVSpRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJZ0QCRA9TVsSAnZWagAAa1EP/2g8Nqbzmzpp66RV8EkI\n/KUA0CPFM7OI+i+cYbXI1/bKdeNBZl0Li9qY2yY3dVomg+Bu/aXTt6ovj2gy\nHqidSqKl46mwOg/j4EBeg8A6gSrWxYk6Fd7ewTh0Fvp8kvIyoobd7y5IFfVq\nS/9UP4yMkD3zVIj+7oxIn25/7F0A3/0s0A4wdlu8M/dzjw3vZvgZLqowi8IB\nDrtQXIDc2G1UvZy2yuiah7oowIWNo2pSD0sObVHHHFTi0V9vGHgyRsPQ7Cms\nCvjDgNl50eQ2sXbj3CWhSVEP3vvw0mmt4DA6FjDU+8Lr68ZBGP7/UwXQcTa8\neT9GtUQvO5FrJMkW5WHudtH/1XUKRFqKXy/kSfL7T49htxnn8h1QTOEL3vJS\nmPE2UJ8rfkhHzY1iVPeQrVtm9cMLcqMy5BSY5O1ByA4RF2EqnVdzrzGbzGwC\nhQGVZEDaqhGmBQyvlGys12fchkFa4EV3nA780VG2c76oSW70BqBvyQGgtm6m\n7Cy7AttblU068cJFLUoB/w1C23EDFnr5mr0FA7IGVdDSCmYwVfFD5rWvo4N/\nwRnWyW6ZTgBxYANRqX7HNnvE6pZ9PoknCtMuKfAWd7wZWjFvvjd1lay0904Y\nOFF32VsBKAC8b0hHUWuX+lFmJ/r0paMDk0FNsMT7U1W5OWc6MG5NerxvmDBD\n7Bld\r\n=+nx6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"fa69409415abf1f046d3df279796b2ba89cec4e8","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build && npm test","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","sinon":"^11.1.2","eslint":"^7.8.1","amqplib":"^0.8.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","sinon-chai":"^3.7.0","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","@types/sinon":"^10.0.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/sinon-chai":"^3.2.5","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.4.1_1629854992476_0.16373249331929873","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"amqp-connection-manager","version":"3.2.4","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.2.4","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"12c65b0e22e24f1971d7ac7e184579edcd02e42b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.2.4.tgz","fileCount":26,"integrity":"sha512-W/7JVPud2y+X75OgaAwNrPbDWnTdBuxwHgjETxNKlrgkxqAGPR+Rwas2080UkMgmrcx8BNCuGAyz+AdWgMG4WA==","signatures":[{"sig":"MEUCIQCtrb+I6Onn1uxVRfmBzhA/0V4iD9RC4UEdQhyD2Ud2MQIgUa+U7OW7uOfyu08rtWkkSsW7IqrxIXT87LyGBfMTxZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":205763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhI8R5CRA9TVsSAnZWagAAgpoP/RTfXIfpyKeziosJPPb1\nhfLHZHuIoP9nGn0POLTiv5dvnefRg3edrspGiO7h183/jVyafKIzJozn1emN\nXcjDDgDD9P0ldmAvpANakvYcLd1aO9RkwImwNltlZD+hjJl7MgyUoBdTCTMP\nZ4fLd6q5/p34aJViL5fcDSoYG1s5gz1DQct6kVpswerglWCgTg3OGwuq4IlL\nX23nEflfGWZEm1qgxwf4S2y+ego4v3zdPt7f28guJmyCgAyQgHNP6uPF3u4x\nKj1KmYLKUQji5qGliQ8uocR1Otxr95WXkOLMBgXXAoBQ8fDY5onpSbvW3ky9\nGfpLepQBV8ilOwWK5ggxi9xEoezysHfvULLFo3vUisn7V3zhmX6aWVRX4Q1A\nmic6Mn+n4w2thgk5VsnlyW+MQWBqxTAFPKG+cFC18/lDJCVTzjqDS3XWGalt\nQgkkbTuZx7FnW2ZglBIHISVi6uX2MCOxE8qGQfDEV26HIp3spZZeWAByJgsw\nXF8Mi8ev2Qg7OmiJS4U9gmfgOYjCjho5DzDFQSPsjvN2+r2MG8csPCKxVTPX\n3tHQh/BQzC2yeoEiKSxXlvRTBXoz1NrEFilULyUy2EcE7FJI07H1iE3ZpopW\n709Z8lc0fO6L5BZjIyQyGkNrAeTcpfSzLCWefJQfMCk9SZALOQRNgJ+MtFFd\ns6mh\r\n=pPrz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"ef5effef0d02b0deb65d8d1887bdeff9fdbe3977","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"husky install && npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.js":["eslint"]},"_nodeVersion":"14.17.5","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.1.2","husky":"^7.0.1","mocha":"^9.0.1","sinon":"^11.0.0","eslint":"^7.8.1","amqplib":"^0.8.0","istanbul":"^0.4.0","prettier":"^2.3.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@babel/cli":"^7.11.6","proxyquire":"^2.1.3","@babel/core":"^7.11.6","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@babel/register":"^7.11.5","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","eslint-plugin-import":"^2.22.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","babel-plugin-istanbul":"^6.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.2.4_1629734009347_0.5461116329477622","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"amqp-connection-manager","version":"3.4.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.4.2","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"e919a99302ca99f1e57bbb6961b501f6aeaa10dd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.4.2.tgz","fileCount":20,"integrity":"sha512-gYFmYzumWNYbW3rvzscypD/uJ345MWRp4AuAQZeRvyV0mJmUafHz8KIVO+VYgD6qLLuCtcohqi11cGLVOfwjdg==","signatures":[{"sig":"MEUCIQCMb45iQOzPRphlyWS8omspTd7kIeLzUV+GLPU2FZvorgIgVFEdUea6/ABwRhhVX4rsMhw2e27eoKWcbnnIZMZZ5pI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":108735,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJbu1CRA9TVsSAnZWagAAvfUP/2iojkk3PmvgJDmQy6jH\nVyUJd32tx42iLyn1vuz3Z9nb1MapyAnve3YCd1lOIsh6JBvDGr2HfyKHrteA\nYHExTcLdQNnrZ2ci6b+e40mUqDo+2Ptdft1DJMtT+nt2IWsXelVstUJBG88j\nvw9l6Z2aCwPZGzDmc6skMb+GPIyPawHY/IcIeb9VwQO1LEAJEWGq+Mi+zwc1\nBkZMnCFgUYIuFxdaPn9tAMcwQ8rNViBEuK3/4mfT/m4BRSi8BgF3CftSvTRp\ndIBBSodLO3v8Resrgu6IOABH3H+M/iOG2v4nuzxIPmsZL/VYkY8nQfg2BKB6\nF22ldKM6wQw+68uOvdhsqgPz9/UNirWAeiSURaCas7RguMRsgAj6DaIxEToC\nh+KuhU8HcqtJAtKKA805P5tziAqnJGDDt+On8Ibmv5PsOWaOVZJV6vDA6iXQ\nXgVeedYKX/7Xutbd1rALGJ8a70e+sgtptmO6YUDzMrmy5cBFN/TFqLS/65wd\nkrME3//iQ3IxCVqJJTCY3k6gb2ROCq3KfKaXUOgx1cInS4XKmdYVOwduulN0\nlHjULEQ1PDhF+lRuE6CgfNoZHZIHydS02BRMdhZdemwNsdVfHhn9WfL6d3O1\n9mWpii4jQlReW8wRuqdoChjvO4Ul30Cse4870wn07mpcuaUBEMsA3hFGCNCy\nr0PY\r\n=0zoE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"239fa02a05ddb104c05a1baa73fc7ef3ef6c761b","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build && npm test","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.4.2_1629862837211_0.7847961837826918","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"amqp-connection-manager","version":"3.6.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.6.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"41d4317d1b5a7c555f2ade344e0f1a7b9e6f98ec","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.6.0.tgz","fileCount":20,"integrity":"sha512-oa1OAIgdJLiyltknBhwdM0IlET9i1lpnhv6GVan43o3p2LrwG/ogOoixoTN7ZUxlaH9+E8NktcP9kEtgfLSklg==","signatures":[{"sig":"MEUCIQDA7mEk2nS0NKhu/DJRoexJCG7gWlbDTSHt/SHtYrX/6wIgCON6AgUGNOuoxOfpDdd2nniVwMebghoLM9DggiAQ2g0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":120643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKP0YCRA9TVsSAnZWagAAiE0QAKON2fegsLpOhLyBd4mO\nk4tFSTh4fUvRRJ0kTewPMpw3FNKXBQBegkJ35aFfSqPvkSxYtYsTyEW15Zwh\nRSN9fBUMbD5E1GFEIwtvbnt56aKQDf3ja1SgSTl3drHQ5IGibIVKBgw2tZ2H\nAYWc+Sn3FReFzJz1ztFGWEr3zqT8Gn+iirvnjClMz44yOGrJAqLmZxjz8s0W\nf4Zo+qJ4UR4igAENYeDqSQKTqcaLRpa7o13oxkP75cHFXWoR8SRUfXQt07Af\nJ7INb2SgNOAItgu4rTKJly6b0VYGohMrqLSy5QOw73nwIgKxXL/oKGT9VBRV\nzVvGqCob6bY4KaWifnWfZ2hJLyOvpZ3Z/RyxT9OB7HdjwcMwb7t0IZ+dyRJv\nCPhPfe44o2tnP44AOzrmyGf/kklv23jNRsuPS2Lv3loUASyFNjAg/NDzcrp/\n7QTFFdbvvWbyFNqgidMCh5pRSHqaTE1Rv9xPy9wi6UgCNwkym/kduVUBriTO\nMBWIoMC4ZNGiLgwz7lF7qtxQCdVLeTch+tHjmy+JEWAjNkR2XqPZCCjDkG5P\n/41mYb16+pv2yebIGtAAWSDy5C1Hh5Le7zKzz+nmwyDxewtvNT3DFtT641iX\nxNobjeX54MM/SlNeLjHdaq02Q2mtP9WqLrAf+OHBK5LE0os7SIFTHR/Tb/Mv\nFuPo\r\n=4Te2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"36f234bca6b969226cbeeb0072dda2d3595deb35","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.1","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.6.0_1630076184690_0.46884895324715803","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"amqp-connection-manager","version":"3.4.3","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.4.3","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"6fe40964d0cd98f3f120aa14a82265b826f49190","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.4.3.tgz","fileCount":20,"integrity":"sha512-iGBLmKpKhhvqHrfsViDqFtvU1olqgCFNbrJVdQZKLZOVJQJZnj3TfH4xfgTo++yI1A7ouWDBRKyEGD97DwzCEA==","signatures":[{"sig":"MEQCICT3V7//j5eQDNtim0ddDLuy58Y1Vc1cEnl3SmQnifB6AiBPbxOVg1abmjDTZEyC8rYtXGKkkg8ABIT2FKa90oMBVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJlnBCRA9TVsSAnZWagAAfRMP/ikPE9IvjnK3dAuiEMlJ\n4qp7t6UGe3oVaIm1zqOax2dD28pHV/S5Nzwda5nyN8IU95f3CEbo5HhUXkop\nPSCwbVt8HPLBhWNr1R8PX/CaQh7+jg0V1kcc1ZTW5SZh3gjz74OHb75FMHj1\nDyN2J76LLtlc6A0/e9E37p+ekbWBXBWOyjvthJPy2+mUXUdD6sJObxV0DUxl\nLmXAPc4BFkpvkNMoHHfNc8h/c3IR2YOFJbwRgXpzMZbXiRrBLTwI9AJgQcHR\nai9+02+80rb/0vVGcPpGj+NCL18JELJjDzxgtz0AcujlRH43n8vo8HIWaXHq\nhzStAI3WDm9MlP/h13kG8bV/3l2RE+gay47MIE3D95nqyNrmxY/7ppbIXxp8\nnNUHBpUaS4hffbXyZLIXNqHhC4XEY4Wx625U6ZNLWDM2MiPpam3eqc04u2Vj\n4pfCHoN81lhgONxa7QySd/lFbaYVITADwkgh5EjriE8HKo+EUaPZX+t0o+9n\nLUCLFb2rxHMBjAZHt/7dHu8/oUdgDfcSl4srrjtCaSdZu3FCYcc4cMBdr40B\nwjfYNsOqCRtFRQScdfbzqSQr1KsfUAY5vFJ6uFm1ZHVBpTEeCdeCu/e/Chgm\nf1h2tV+Q9BcI1ChbfXzam5+h8aIEnXiCRtDEiCvmkBMdTwLB5ojz7bBM0M7u\nQ9W2\r\n=hws/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"c27cfd4948bda2bb8371c70e02095c6aa4e0669f","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build && npm test","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.4.3_1629903297179_0.2149361672187311","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"amqp-connection-manager","version":"3.4.4","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.4.4","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"ce117e0909ee3d53124048b11ab4c3d06c2f8c8b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.4.4.tgz","fileCount":20,"integrity":"sha512-iEgeCkwMNvEdUChadteseASPYQ+e3tZmSuQy4ad3HtMMFrNSdgSwscqEXdNmm10nGI9dhnVhLX4EH37T2v4MJg==","signatures":[{"sig":"MEYCIQC838C0Ym+dp80zqKWPJYUkIeEgqyrdif9PL1hdoXaK4gIhAN7nrljoSmbRGIAFy1VLzEbMtsvCLdo1oXsQnuFEGMVA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109093,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJumnCRA9TVsSAnZWagAAyUkP/3OEVVnRRimDYdRrJqeD\nSnbBhKOJqJnrSNjkMfrX7ZXrjiXe5vGq4UYjhqfMwBBNG0ZiZCyRzM2mL7WS\nRnzS86Dd8g8e1qKchYGRIVjlfX4eX3lKEbrZR13eX7/w1CkKQfxqxmerhhIB\npLPC9R0L6VU7P29BsD+WWzb0FbJ1H7KI2zRi44ntbJliYURaMKZQtQPYxSas\nApCuQTFK+udRW+jxp6Ao2UdwVJfogcr4AfIIMFBo6Ao0s8GuXKyluKEFwtdo\nRbZtffGcqh/BIWo+r5LMgi0HHyNjUAngioueU4yeHmc69QeNxY7Kbl5bNdCu\nPBPVklfIqEO7deVuQEFw3h7WO2oXvMMJh2UsAvFS95YU/F74LZahpS2lhTdO\nb9gfKuYgggz0ZcxBPAsaP7PsquXUi4RxlbJfVnL7yDCAthZxBUDAw3rvCd2X\nhrCkTWxKc1RSQbd/n3WO5yqnkDcHcXBzeM96MAYeTx2GGM9n4zkfd6RsP6l3\no+XcjG6kciqSUeZikcwAmlPUiZGpXnRoA+R0ohHnpxLZy1JTjuzj7sXym4jR\n858kaEyLprN0yaEOAqriV44PZCqInoGHvK0a86jLiDjHZUbayI3cc1MTi9JG\notFmd5CRNHGSZ9xDJ8rNAdf0zymttHgp0Ut9xrXQMLabORlEmZ8CJ/YgxxUL\nyvLJ\r\n=ElCd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"1c47f6f4b2a747426b407c2b0cdd89e420d2ee4d","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.4.4_1629940135129_0.7473618812007954","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"amqp-connection-manager","version":"3.8.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.8.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"540ab52c6431ebda994a049e3eee217f8749108f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.8.0.tgz","fileCount":20,"integrity":"sha512-ej9Lfkf57/9a94eRJsuEN91CzNt0RP5V3bArlxHSlJKoIpj1klhIJg0SuFIk5NHSGGS7icJfXg2ups8ti5UUTw==","signatures":[{"sig":"MEUCIGREg0AJ7bw0U0lo1K9yMqoCXYBqafFkjxc4tFg4xaJsAiEAqDI/hJPSPGs+JLZkJRBD/o8pSWgxR3EwRCwPPEO/xME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzANbCRA9TVsSAnZWagAAguUP/173uwJhywuCuJWGN0W8\n9O7t+tCgzABoReT2xgBNXSjTZCVJnin5753ID2uEn3bA5BY/kIC/MlJktRvO\nl9DaEeQfevPushetHM7fPFOpO3Qnt0oQVS1EPozDXYgHhml77zXmLLC4OkIZ\n/hv7PlPWI7XZIPMjHVm+PzwjscWztVY+8kTKz3BJ2f9Gz02ovfCJg/KoyMhO\n71E66mtjnoCQ/Njj1KKWrQV08+oolaWf3U63LuVZyyXv3hUmm1ll45jvzE8w\n3E2pLRDUoeXil/sTqSRkHYhp7VedLG5LHADYiPMup+N4vkh7+PQ25Hrb94vo\nK7YwTY8NY6gY6c9XKiecvj4oT/NWeYfJD668rI01gfUYyMVIu3vqXcNVlF0U\ndhZ5LtqPah9hD7+A4Wne3YhIAPg3SYDGIMvYfLjavh5RJoL2g9SPOwNEDQOG\nL5HqgL+pmYYNeigqVMBXNw2YsX2BDtmcB6bkM8w0WTlyxoiU5psQN2kxp6eC\nziFXTq9GHuaulkARvdVrHZCGaYHJiAOSjwH6Sz44bqpSqt+9xbYHWyjJDQQG\nO69+BAU3VkIR5doJKEmUIbeUEFzjXkg8O2zknosUFNgLygUoQcZ2YO3oDV05\nCn9al5Sw/MOSJU5RGIjrSL3wAEZwSnUrS3J7zeNhW8FbOibFvnLXKo25kviS\nmG1+\r\n=I/rT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"4d60664ed5e1ddaec071b681fdf1483c0fca4f37","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.24.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.18.2","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.8.0_1640760155513_0.8324694347838619","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"amqp-connection-manager","version":"3.2.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.2.0","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"83534360533a48183113f8213af0d230c7b8d461","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.2.0.tgz","fileCount":25,"integrity":"sha512-CnxBqUXd6ft4DbGs8YXNp0hDZgWiDQAghxG6JRJuxGbGEQdAjsb4oRR9PWBqO5V/Gssp7lDKigXX+DtSczID2w==","signatures":[{"sig":"MEYCIQDfpvSblICkAjps2ZUjXpTuyjpyXhsCzkYJjIrEAqCCAQIhAJeUgcj4adbr3bWPHtAhLHbqIzO9RiS0/1RjaWWb07AP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":180208,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeJi4oCRA9TVsSAnZWagAA11sP/2V/oSA5qFG0mdqIeM2t\nIfnn2wcWqm4ZWCz35ZNgeMCLcWrqpOjwihqLdeXCb2vOcsMm9WoimfkZGWcL\nK+SA2cJPLMnKZHS+ur3PuprPG6PdNkio4eLZ1ptEVqrLXaU75uZ9ZV4NWLF4\nh8GZml0ZffUBuEmrkayCFjtTDXLGoLvNgcEtsrLUMvSP0x7of5EhZswUoYhW\nzuGSr9mNNnvenv2BCQEuXdW3suayjb+fj8EKbVWybViUwnQaGi5mHSdmATYN\nf4P0U67183eihuOl6wLUbjucYFUyWwOH0564S2tPgn7atMHsKemMvARQxMkP\nPxETCDCdh0H/UKlpETAltdJQePDe4zHV019gWqsfNolMBM6/kMfb2lb4brOk\nPGtY6OWpNC57BBtrcoGSEfU9gy0v5O05dKOlYm8DZDGuRhFn9p4lnM/7Bz9Y\ntV39JQJgWv+9KDHNBQSa+MCj2Z6daq90R+8oon1ylBBcqAh8hWr3l4iOXAGK\nTbAGbsQ1cwPL0/42GASFV2eL5/eL48eUNs98hCvwon/Nf5y7P3uGM/umB5SR\nJ85dfFmRh8wVTT4E5X6+vqVtzUw3rctoKPKZBnPNCs9OPpM+Rs/82A4p66l8\nTC+eEh+Sss4c415ZQE8SWmHwJ4AF0fMbdpIUjAh38/wliHVptCrVqzjb8GSv\nWx5v\r\n=pgAb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"ecaf3e82f67b4fb923dd964d910c945b6fe81159","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.10.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"12.14.1","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","chai":"^4.1.2","husky":"^4.0.2","mocha":"^6.1.4","sinon":"^8.1.0","eslint":"^6.5.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","cross-env":"^6.0.0","@babel/cli":"^7.2.3","proxyquire":"^2.0.1","@babel/core":"^7.3.3","chai-string":"^1.1.2","promise-tools":"^2.0.0","@babel/register":"^7.0.0","chai-as-promised":"^7.1.1","semantic-release":"^15.13.18","@babel/preset-env":"^7.3.1","eslint-plugin-import":"^2.18.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^5.1.1","eslint-config-benbria":"^4.0.2","eslint-plugin-promise":"^4.2.1","@semantic-release/changelog":"^3.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.2.0_1579560488035_0.03788551954686592","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"amqp-connection-manager","version":"3.2.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.2.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"ac33ddb3effb577f2f8e45f6714be5dbdd5b2b1d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.2.1.tgz","fileCount":23,"integrity":"sha512-dDs2hg8MEtuYlXMzIqWwFx4N5Fjm8vXAQNyukDavyrYsgnQVt+rtJ+oosMP7eOXukSdquCoVqOaWr/Ih6txwTA==","signatures":[{"sig":"MEUCIQCHyE0plovx0Kq6/fhiQr0Sa9jz0GPEp48WEUNlreckoAIgVv5CYamCpPuipLc8PgHF7JIB3U7oWTDWQfCaKNu5Z3o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":192654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXNt6CRA9TVsSAnZWagAAkcgP/1y2++wC+hO2oyFTd5Zn\nlHFVuCgB6vLS6EbPd82ds1QMcD0YnB6TZG1wsWgQOxDxTO16wghzBoRVjlKJ\nDst6DTsP5ZcVPZCBRfux1YudZJ2lmYQFMjGpOswiIm7czYgOuR8pXn5mLL/M\nMIWoqxwpoaJr5O/GSoe+CK7nF5SgKQdTfISMbzqkkNFgJyC7CthNNx9XSvHd\nrCzXOzLgy39ZXvg/JvX5tTGohVknmVctFrF72IV2OSOUmWPlxRQ6Sy1+98HN\n04rh0JkLtsKg5Qa/K5SW1J/FKQWpX+xiMrlODOCGRgL45OK50gyi2ACrNZj2\ngne5RRpO6IeCRofwvMHDBP7pnErSuPTmHPWSMLZkOt6NrM2TJuvRVj0WOXau\nGxVnqRNBU80bDhysLUR0TvI1nihoNf6VmBFNf31q8Tvh0g++rP5r+Sooo5YW\nD9O2qs83o4ot1HbzWgLwmf2Xp8W0NQkIN1aHpgFrrqnU+b59Rw94A5Y935Qe\nM4sLnUKeYQdYsskucZNXAEfjCiyQFV7GQ7KqW1ItGjuEyfz75U3chhAHfLAG\nITgk66V9JFyI43QDOkN2sWEX+JCOY5BlgPvJscXjACT/cU4Hfay5a1FoAISV\nrvfBXhpyNFFXtD9meARJopzq2ACBw+Gk4ZEmWaqGF/1yEPsc4mEH4ZDXWvgb\n4bR4\r\n=aWQL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"06ac550347c654b7fe43fb10dd92fb54cb824e0c","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.14.8","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"14.9.0","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.1.2","husky":"^4.3.0","mocha":"^8.1.3","sinon":"^9.0.3","eslint":"^7.8.1","amqplib":"^0.6.0","istanbul":"^0.4.0","coveralls":"^3.1.0","cross-env":"^7.0.2","@babel/cli":"^7.11.6","proxyquire":"^2.1.3","@babel/core":"^7.11.6","chai-string":"^1.1.2","promise-tools":"^2.1.0","@babel/register":"^7.11.5","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","eslint-plugin-import":"^2.22.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","babel-plugin-istanbul":"^6.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^4.2.1","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.2.1_1599921017747_0.10388789323133074","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"amqp-connection-manager","version":"3.2.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.2.2","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"73c820b6ed440b451de24c1eb9cf3541a10635d9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.2.2.tgz","fileCount":24,"integrity":"sha512-o+6Kb4p+xFYwU8MuFxnrPQzhefCE2dcCd8dnevWLTRgQCtOTVC9AQ434hQyjB+Bpq6Vl9cDMWTOZT11ajB6ZSg==","signatures":[{"sig":"MEUCIHftP9bbxreEvNXVaoILaNC7veFaBOoIgZtWMNwt2bHNAiEArBxpyZ+oQvZ6hn4ek1xeryg2e2vN2RP+cB551Ofqq/o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgImBdCRA9TVsSAnZWagAA3nMP/i3DTc1U0o87j2aR2Hdg\nMRB9YJeKXWrbG9aXqdQfS8nyYn0rKen5SnNWBMdmAmgi/ziUMfXoO96BptnX\njBUkKzQ/dxxJUkH/GXn4YUgPZ2aFXoqYlO2xtMJdGz1m7fxb+TfIX/Y6gi8p\nWmlQB+nhERzjmYt0zULmdtB+qZiVzCzj9iHRBP76kPivgFTIDWXyvI6DD8K9\na+cbUWSpp3LJSUheGh/FVoNLBO8/tLOY2Oj2ItgcmapdOWnZemr/7SUq3y3T\nE2YxpSB3aymsvh8Ed9mV/0HI6ZWS6cdTjBxXc2mcFdFTQEMD92xeT6sytu2L\nHalMwMS57RwLM/e4vTfelbYuMQr78FUcqAr94VM7uq9MkZTEPgKt0QuJFW07\n9uH9K+0uZB3Y6AWrgClFlYNCJBBz38AOk7Mx6P5HTaXSNbAPXip7Xfnc2zKD\n/hTBs1ju2YyGmPtMJDY2wfUnFnQ7N76jFOzRF286nniQV86fh2Dz4ACx7ltB\nZB4ayg6CGFfq0eKbkGZwpjExC7Za8+/fQOTL5x/uX3QQeBr7sGfJ3lrhnWXp\nTD+M0VD/MiZxl91MWQXD9JTLMcCqkBSAJLsjO+gGvaIYcAi+KtfE3bSkS3nS\nRyLt0aTNHpxRYDSHJZXYeJq+wtqW01pgU76RFTCjPOJPf0TrI68LwmqsBvKy\nzoZp\r\n=ZSWa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"befa2417fed963f8eed6fd10cd91afce90efedcc","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"cross-env NODE_ENV=test nyc mocha","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"cross-env BABEL_DISABLE_CACHE=1 cross-env NODE_ENV=test nyc mocha --reporter progress"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.14.11","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"14.15.4","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.1.2","husky":"^5.0.9","mocha":"^8.1.3","sinon":"^9.0.3","eslint":"^7.8.1","amqplib":"^0.6.0","istanbul":"^0.4.0","coveralls":"^3.1.0","cross-env":"^7.0.2","@babel/cli":"^7.11.6","proxyquire":"^2.1.3","@babel/core":"^7.11.6","chai-string":"^1.1.2","promise-tools":"^2.1.0","@babel/register":"^7.11.5","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","eslint-plugin-import":"^2.22.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","babel-plugin-istanbul":"^6.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^4.2.1","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.2.2_1612865628751_0.5159540070274713","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"amqp-connection-manager","version":"3.4.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.4.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"5041192807df8888c028140564a39e48e5c33093","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.4.0.tgz","fileCount":20,"integrity":"sha512-UfB9cS25LZLvVUb3bCnQN6BgK6zJtwoePq89vuK/6IL5UpDJ74Hx10Fu2bDBwAlVhfhqlendaPuhfOoONjKixg==","signatures":[{"sig":"MEQCIE10gDzHO52Yi8JYPc4WWVCAadY6dhcaEBG9NCFjPeYbAiAVCH/ehf2z3eLlvfg253JwI7iztUfnkdiMbYw3ehCj8g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":109206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJZubCRA9TVsSAnZWagAAgVwP/3wsefRdmDGlyQ2V0ezM\nuKyMKJWm7hSZ/G1A5ddofg8jNkQeaShX8aZjH7YAL9inaHCny4esnoUMAkjk\n4iuqYaOU/F4aeW7F+HHbVe57pa+wVpMB5zCf8Jf60G8jhpir/pXrzfoHrbYh\nJtwJcg7LUlWpyrhVGy2r5cFNzbdUlnUBflYonknsFqm10jipKmSDJQiRagGj\nKmSCjZqX2M0kF8YgDBsFTKoY2knthiD9i7aS35gojfSssSj9KRCWVkntjjY5\nw1mDkZ6OOTfrihO7tfUXMJfKTAieknrOyKNa9TKA7NfdlGyiyxjC2vTMnvxV\nQDE9Gyg6eN+fH8PKyWybChPFOqECCTCah1v4RYi1gmVALJdLQq3ZbaIP8vM0\nrKNUh2Sc5lIiuaXpWzdnRvZjxi4QkKY6rjYyvR0PsrRKNX9MdB7Ycs9gdG5F\nX9g/aMKjlgb21oe4oNN8gS9qa4dAVDQQBNlwRFwJd/5Kch0TIuByJ5/VzTaS\nv1ipYb9TqYNzE4hhNBXytY6p/cx+be5QLrUnouZ5BbUVb9WKsWYjKpQTG06G\nIw3/Ou6Rlwo621osBjt9BXEAXY2cY4dwuvi2+9lAhKpJ9sFnbw2X4SnJoiXy\nOZINmZWarqL3E7//mlTsBoYAUqi+JxZNx1vfW3LJYjApAlVwTuN5W2QygkVQ\nReeM\r\n=Iokz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"8e36f4ab1f4888861f06598e7927515a8cb79732","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build && npm test","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.21.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.17.5","dependencies":{"ts-node":"^10.2.1","typescript":"^4.3.5","promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","sinon":"^11.1.2","eslint":"^7.8.1","amqplib":"^0.8.0","ts-jest":"^27.0.5","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","sinon-chai":"^3.7.0","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","@types/sinon":"^10.0.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/sinon-chai":"^3.2.5","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-config-benbria":"^4.0.3","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.4.0_1629854619200_0.3771885875612653","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"amqp-connection-manager","version":"2.0.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.0.0","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"npapayiannakis","email":"npapayiannakis@benbria.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"7a73a41f754b32588c0da4fedfba42dfa3d9e720","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.0.0.tgz","fileCount":20,"integrity":"sha512-jMS/vXy7epI4u1wdRaYaaqlX5zHNKD2GOhudC9tIuBFlO98MsHdMtID8jqvmGxJMr6Tbv34q83ykTXXh0IyjDA==","signatures":[{"sig":"MEYCIQDBsx4OojrKkTKaKy5TmGtS2k52mNHdJRFIEvef5T6kMQIhAMcmoqvuMRmLeItdUHv4f57lTJkQiTryP3P5+a+zy/H4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":154349,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7UHsCRA9TVsSAnZWagAAYCYQAKRCIqxIDEaahpDW3kIb\nJjT+tWYhlfQqI7mmJdamcrECMCY1Hp6n26aqAKq5InyjPjqyjcAfsMgRJy9S\nn21BPa0NHDgL06WId2DqTkKTmDo9bAI5f8SKUKiFztSdirw/gwARoN7YPk2H\nMLIBbPEbS4uZI8L5oWmXX3HjVpR/ObakFyTFkErmHQTIUjT6BRx+li36HHBL\nZNV5dITHFyww13f2BVpUhcalNaZ1tweZJGdZln/3wLGYH2n+M11ioHvibcKT\nz0kb5Df+ZI+eaPyaD6Fa3ljk+HGxuiapdKt5Kb/6UXmpYC0HLS/RFmgzptLj\nV930h+u8GyrLvAT5qAMMSoiJwDeVLTf7QbrGrBGxMk4x/K4zYm77SSZp0cZY\nEMorKTcLvhETfyAKNQglwtjWPnKLynm1R6YP1xolGNsuXgs1oh6naKMLbK++\npRnRFIl1PTZjhuSHo8DpPuLJPcExQEVqET4qJiVWZQnScFstxYPjJD7NxArA\n/AQUOlGo1G0+BPj93DQpbs4iq3WrBqeF7GtZQ0aU6mSM/wyFjfkPRNyKIK5g\npjBPuPnKWyYJU4F2kZor9PXq/A86NK9sB9PXE5L+Lv3rFd+9OoXDrwnBRiZM\ng7T1iaqkSZuw3mEEVCMfq17gu8ZjZJdF1sX55z9JN9nw+U3Oekmj8UCJbE+d\nIEUf\r\n=xYgE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"commit-msg":"commitlint -e $GIT_PARAMS","pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"239e395567d1f068a4b511f9d39d370b77f5743d","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"NODE_ENV=test nyc mocha test","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"NODE_ENV=test nyc mocha test --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.0.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.7.1","chai":"^4.1.2","husky":"^1.0.0-rc.2","mocha":"^5.1.1","sinon":"^5.0.1","eslint":"^4.19.1","amqplib":"^0.5.1","istanbul":"^0.4.0","babel-cli":"^6.26.0","babel-env":"^2.4.1","coveralls":"^3.0.0","babel-core":"^6.26.3","commitlint":"^6.2.0","proxyquire":"^2.0.1","chai-string":"^1.1.2","promise-tools":"^1.1.0","babel-register":"^6.26.0","chai-as-promised":"^7.1.1","semantic-release":"^15.2.0","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^4.0.3","babel-plugin-istanbul":"^4.1.6","eslint-config-benbria":"^3.0.2","eslint-plugin-promise":"^3.7.0","@semantic-release/changelog":"^2.0.2"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.0.0_1525498347706_0.8523378811716813","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"amqp-connection-manager","version":"3.9.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@3.9.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"aebebfebd506449b0831e2669d5f89005534392e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-3.9.0.tgz","fileCount":20,"integrity":"sha512-ZKw9ckJKz40Lc2pC7DY0NVocpzPalMaCgv0sBn+N4er2QFAJul9pIiMOm/FsPHeCzB+FulV7PckOpmZvWvewGQ==","signatures":[{"sig":"MEYCIQDIguhPYsU9RzFs1NAriB3tqwBqDm6Yz2MEf7HaCwJWQQIhANzp/Ak0PmYq64IVzkCZR4EdbfPd2z4Td9AQaVdpJtsu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":139171,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1EY8CRA9TVsSAnZWagAAHLYP/2Mxp7PqsNGR7WprYI5e\n34LvivJTHLK5UdQR1QRXVa6LFIvlxoCHJE4H0zTk8NzgXTNxwk0gWXZYKFNz\n7PGJQvYNxmqNQW1zHgIpa5bEFmhe/dKW+AgUHx/nPASxLGRixbSFELEKoQBR\nDOY51U0PQnFjQcjVHVFwTmLV9HE68ifyL/KYfcK0xMCJaGJlfWc8liSpLHth\nFD4g+fEI8UI/iwzPCFrP/i+SraEJiMf1s6XUhxYLHlu0QjAXdDGp/jON6oQ8\nSiVLNXYgOFgh481jM+GK3LRy8jmtJsPHJTwX3tx5dYjYBF/yiubk9H5/f0zE\n6GrJm4ElHDIrqjAZAdMLnoxISlarcxRSbuIY1dueNc9oLWJ2OJGLjCYNCmMC\nxaJi2NSHeQEX4NeBPmf2z03YRVRVw1D1J1aXWMmpX7t0hfjVDtTEqhasxOSL\nHofcYxecVH/xrDkyjhUdj+UAJKz/LgMnGYE4pUslL7TAsh6V9AwoFFBhF4h2\ng4Ck4xBNDUyryTqVbVhv3dA8dx34qLTYHdUdEWzVMbQ98JwmpDu2CMUchyTB\nFwbhBCHhI+fE7Yi2MA9vxWeIHU4Bu5wosZ/k2Jg14yJpn3tSsA7ZMR+iZ9MJ\ndarCyHC+6H2Np1TNeXjE5U1kEqFK17xod6Sxz+L9TTY+QnRcINNvKObpJfYz\nL8bX\r\n=MCPR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"8d181f9a211862a2a6b4f0ec97746426197b661e","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"7.24.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"14.18.2","dependencies":{"promise-breaker":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^7.8.1","amqplib":"^0.8.0","p-event":"^4.2.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^16.7.1","chai-string":"^1.1.2","lint-staged":"^11.1.2","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^17.1.1","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","eslint-plugin-import":"^2.24.1","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^9.0.0","eslint-plugin-promise":"^5.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^4.29.3","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^5.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^4.29.3"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_3.9.0_1641301564612_0.1339259482262618","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"amqp-connection-manager","version":"2.2.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@2.2.0","maintainers":[{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"6871f36fc2d4c4ce95409e7b9633897b6a4f69bf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-2.2.0.tgz","fileCount":20,"integrity":"sha512-wR7t4Gkq532yR+vjTSksKGVA9vVlFkXvXcKdw0/QIJaH/piL3pqJWlCbUI2srFArOb/wdTe7BZ5VViwOYEdihA==","signatures":[{"sig":"MEQCIDXEpuOpQM4/aP2qF5ptCc/jzZnMsPSfu3m2MVU59shiAiBltv3doB1w3JKNy73ZUax+okE+ACfI89pUo3HAMdQ06A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":117297,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqkWnCRA9TVsSAnZWagAA2iMP/3+sdaDbdL5sDPR89dSJ\nIfOLIBPVPTsOsYiLwcq7/gb+nqVROs9xgElplkn8vsTFxejeCymruNUDaxwk\nJNknBs98nYh0l4EcmYusB/kBurfSJadnolZ9+sHQgfxsJis6NS+sstozHtaM\nxlKs+4mMugpQAT6CnUXNPsrBTYNBmZ6jlzZexF/yTihd/irKSjLayT/abh45\nsI5mEDZJepPGe39rIw0uqt3kNJ1Fmi1rtIWa3axwkRNv0HcOyGEWF1vOtZB4\nBFrWjkuH3Gv1b9Li2r9aLKBPzQasKnLMKHrid5X6hFm9CTm4Je+HYoapjh7l\nr/9qXyBJtV8unbwfolUGGQHDITlaTBNnjZxHjotNLe78VmP1ZsNt3MDFrx8G\n4lFFgDrI/IzSHtcrWwQ1jU8Sh7RUV73iIVA+eJ2eUnBm4THYQEKHbeotIZml\npRqsfuYJjYXBNEChWGLq3KllOVsZuLlHe2lGqCjgs/FlBsF0gEWFDKq52Eo+\nLgGwwmg09nc4Qn+9IHPF4usNNM7RX7DKBhZFKP85iquY137zKna4IvticeNs\nB2ZvmDDggAF+juZSSW8UPhRNIiPbWABrw1KYHM5OaaAlkhVBAliLT5zDKt9z\nxXlsjJAtzFA46kgefw2A5GJn0mCcCHtUCc5HpzyVQ1z/8cUPU1eODtOP0Y/R\n8tcG\r\n=8x3z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"npm run test:lint && npm run precommit:unittest"}},"engines":{"npm":">5.0.0","node":">=6.0.0"},"gitHead":"d2f912adab759f397b480c533901cec947347725","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"babel -s -d lib src","clean":"rm -rf lib coverage","prepare":"npm run build","test:lint":"eslint src test","test:unittest":"NODE_ENV=test nyc mocha test","prepublishOnly":"npm test","semantic-release":"semantic-release","precommit:unittest":"BABEL_DISABLE_CACHE=1 NODE_ENV=test nyc mocha test --reporter progress"},"_npmUser":{"name":"benbriadeploy","email":"jwalton+npm@benbria.ca"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"6.3.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.12.0","dependencies":{"promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.1","chai":"^4.1.2","husky":"^1.0.0-rc.2","mocha":"^5.1.1","sinon":"^6.0.1","eslint":"^5.0.0","amqplib":"^0.5.1","istanbul":"^0.4.0","babel-cli":"^6.26.0","coveralls":"^3.0.0","babel-core":"^6.26.3","proxyquire":"^2.0.1","chai-string":"^1.1.2","promise-tools":"^1.1.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.1","chai-as-promised":"^7.1.1","semantic-release":"^15.9.6","eslint-plugin-import":"^2.11.0","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^7.0.1","babel-plugin-istanbul":"^4.1.6","eslint-config-benbria":"^3.0.2","eslint-plugin-promise":"^4.0.0","@semantic-release/changelog":"^3.0.0","@jwalton/semantic-release-config":"^1.0.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_2.2.0_1537885606326_0.7236536239732636","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"amqp-connection-manager","version":"1.2.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.2.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"a1ba55b526a59691704f127b66d2d3ccc73f3b7d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.2.1.tgz","integrity":"sha512-5C4+A9dhYyt+sIdGRM4FaXQQOuiQXrlFFovL9d/s9iQtwQsv/z02qjoULuYh+d0zGAjcVPHuRJCKihs8sxeHLw==","signatures":[{"sig":"MEQCIEJAwVJeAKyxEk0o8AYvxh6jyP6ybVfCI6FxvHfniqytAiBi4SwmWUUHsJRO2LzZ5bCvPqCMgtEjnbpWj9t6HeTqJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"a1ba55b526a59691704f127b66d2d3ccc73f3b7d","gitHead":"ea79aaf4abc98fc1127b53f6cab7230a373ccbee","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"https://github.com/benbria/node-amqp-connection-manager","type":"git"},"_npmVersion":"1.4.23","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"4.1.9":{"name":"amqp-connection-manager","version":"4.1.9","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.9","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"410e5a8ef2cd848ea625a151e63be7e3e5989746","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.9.tgz","fileCount":20,"integrity":"sha512-FvV6xfdytmGZdOEAwOWPXgxDBGXytJorN5s8OmS9MlmDrF829bGeo3DphgZZNtY6c1xLccLCKiRjMKt9xfDnFA==","signatures":[{"sig":"MEUCIH5t44d5Px9cbjUHOc9L1yv8Q3dLSie8seqUhGSOPRuvAiEA7Pq8MaZW9gGEUHQapBi5U+yutvzq2XkIbV+eEAZzqN0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVugDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqINxAAls0Gge0VfGbO3e5hsClurLZNDS6XQa4j3e8B71dDgcRQ1wl+\r\ngNSL2LHZjz3pheEhVntNfR85tNSH6ZK+cf5Edox6uJnYpYRWR4D9YKacs7YD\r\nZSHtyTIqJKrWo3dQtNroXMppsrS44M3TZKRGusj7e9Fa/jRg9JzLrl4ujWZz\r\nXesubCA1bNA0y2EBmTfPnULeiLBF2vCyzeELh6EUaq2UTHF/3pQu3HDQJUeJ\r\n7DqROhTC0mw+VJJixHsuBItO6PXfLaV8drGxnWWk6XvkZ+0/4SbrJ3lnQONM\r\nvGyEmXGJIFzAdk6A+kAh7WKnNDjLx/npwsytYB2IyrO1+AL0tGADJcdN3djA\r\nxs4hRxurUPZ4G3CSu2WEjoBYls4wXZqdUUeAstpgH0vB/YVkmU4ZQIj1CemR\r\n3pRher1XhWudMf+dHXh48UawByQGmVG9V2P41FaQhp5Hyj25hWN6r982gUwx\r\nfew6UGdT+k+iVRl7vGY/nF2/84A1mN99KKvH9Tar87zdzaw5VEfqztJxHeC/\r\nYSwkhNpcJLz7kv2jg4GIJG9uWkfftKIFTIAFFWWjAZ9kUrAWouGGZLMkyvOl\r\nBWnNN6fA4hUn6fyRGlQkMaBlfS0QHVAwgOtiSkZMfhGuMMiaZXVsSbupj2Uj\r\noaXBw+faVRfrzRNEJvhOf/F9Aw7BcwBc080=\r\n=6ut0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"fccc4a6cb77bc77786d5eb18940d55f898240e89","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.19.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.17.1","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^29.2.1","husky":"^8.0.1","eslint":"^8.6.0","amqplib":"^0.10.3","ts-jest":"^29.0.3","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^29.2.0","@types/node":"^18.7.23","chai-string":"^1.1.2","lint-staged":"^13.0.3","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^11.0.0","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.9_1666639874770_0.12239730748287259","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"amqp-connection-manager","version":"1.4.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.4.0","maintainers":[{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"npapayiannakis","email":"npapayiannakis@benbria.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"304e5a8173c6afa05c3cc7878e47ade0f1ea908f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.4.0.tgz","fileCount":8,"integrity":"sha512-X1j1dkm46t2rmoKbe6rAPAJM6TM/RYm9ZYoiFheFs04uS8omFilQ2m5HA8OHuHV4JcPODnJ7wr9L9UZVMUl2ww==","signatures":[{"sig":"MEQCIARTvhe42w7oNrA6IibNzNfq/Vb2OYmQq9e68MNE8eGfAiAz6TdtK2JtjazYEzmVhg4159ImqBGsQgQgsJYZkiACEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27456},"main":"lib/index.js","gitHead":"e53098fd936cfea3a1dd37336c835d914cefa286","scripts":{"test":"mocha \"test/**/*.{js,coffee}\" && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"5.7.1","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.10.0","dependencies":{"when":"^3.7.3","lodash":"^4.15.0","es6-promise":"^4.1.1","promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^4.0.1","sinon":"^4.0.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^2.0.1","chai-as-promised":"^7.1.1"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_1.4.0_1521550406081_0.010024274444953685","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"amqp-connection-manager","version":"1.4.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.4.1","maintainers":[{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"npapayiannakis","email":"npapayiannakis@benbria.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"1f0062fac588e4482947ea23dd834bdfa156854d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.4.1.tgz","fileCount":8,"integrity":"sha512-w5CrDEFjiWevR+TxY11OTlJ3CbHadcZQSoqd8g+v5cx4F+hTMSg98pVq8T/l/ZIgz7zqEdCPLdh1nX4LDB69JA==","signatures":[{"sig":"MEYCIQD0SA82KwXELBQXvTdn1KdWuJ0DzKnEHffj4+Z1neLWGwIhALQKpfnZmjoyhXINddI9CXz4OZIMLVDo+tft+luMwHcg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32161,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5IESCRA9TVsSAnZWagAAPGgP/1zzwUVOrJ0+mBxaR3X/\noi1en4TGx42YFfkFaBSjoUTtCCuf2uqMiou2IX5QXrdhRVGbdEncWe1F1ewe\nS3UAr83EYr5yuqmMlR9MadYD4Jxms5+HK72GyMJL5HNsfQ4O74NkIJlXpg/G\njjwaxV36wTCEFx8DjDlANkOI183ADTPt/Kka0ITeh/703o5CwwKk5KNUI1BI\ngSEHuikdKi16P+lfQOUvFseWvxE9t7M6HB42+M0I3xdtrNoQOG8PcFk8Od29\nMZuck/MJ9IG5gqusMjd791XPk5WMX4uiYWSkka7ePdzkiB39ImD+jEkJlVHC\nt9gzkt7RyhR58xeaLfdGxS0tYU7Ujw+mXI0pW/Y3Y3lOoQ+/76g5KZCzsonQ\n043Yj/Im+x6q0PlFINfu0QmhCuv/mJMuH0yoduSBv06zeCwJrQ0IfPnCAuXe\nj9MWs5AChVFdrS+QQtR1IFjcvuwUIUwJncy6RVZBnlmfIiJQjF19BTgldjs5\nvgoF+jqvbaZjykEXampJU1o4P5kx2Xmow4js7p1nwXHofVZeD1CD0dhGME6p\n49OIpt7WzftlnzzBZSJ97afkzKWogKUyYs2AYXSw+/2lGSe4AuZnlCiF51pR\nX51U+/RU/NL2CQD1s9E8+BBJeY765P/kaMI9ulv2sTervgQT8eCENOqUl9Fj\nBBwg\r\n=whYF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"c5f9b1d49dfa61e54cd90fc30abe6bd1c6388147","scripts":{"test":"mocha \"test/**/*.{js,coffee}\" && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"5.8.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"when":"^3.7.3","lodash":"^4.15.0","es6-promise":"^4.1.1","promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^5.1.1","sinon":"^4.0.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","proxyquire":"^2.0.1","chai-string":"^1.1.2","coffeescript":"^2.2.4","coffee-coverage":"^3.0.0","chai-as-promised":"^7.1.1","greenkeeper-lockfile":"^1.14.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_1.4.1_1524924689225_0.6609837162707048","host":"s3://npm-registry-packages"}},"4.1.7":{"name":"amqp-connection-manager","version":"4.1.7","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.7","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"8dcd0858a45a3845537a7ca1ae7c5c12032d9b96","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.7.tgz","fileCount":20,"integrity":"sha512-CbNev3Nr8rIzngwrpfWlgUqgJzSwA2cUNe6vMfNTzeKfShpkr4ZsUDadKY4nzbBrZC0s+lravXmlNg6eEzP7EQ==","signatures":[{"sig":"MEQCIEoKiZ67I59EJFmUxfxdxkGSmeKAo5CEC3jsK3ujdC3OAiAHOJW1kCEGu1BSCDyeUrO3SPxmv9QZxNofSvSnFsPEMQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNuwNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpI0Q/+IwEuPd0ihcbpvdXB/3io1C/JlenlcI+/WWKgWTcJvDzA4/GP\r\nvYKJ1u9seUvWlOA5+oUPmQgf/ySg1q/5JsD0fH3PP0EBWq4Wt8BRqtXiuwjh\r\nMw/vrXvupL81escErNBik9T353UAzRy2JnKrTMLruEbo9nVZlOGC5l3Ok/Rl\r\nj43zN71hOYmrxzuHiPA1RoKvrzh1g1O2XAcfx95MANzXxllHVh9JifCsPHjc\r\nYFUlPz7VtVs76nh3TsqA7POYsDKvk8hMkCkwtrQqQbcCAf6Fngw1JkGeGX9s\r\nK2BSwqMgkUVTJOyfckh9HUOLe0WuZ1Vv4sRQcnKwjsRCIponBEVO6biebhVt\r\nnMO8p03vlNYu4POIZxdrQzFFyKZJ7po85SmdXH2c9SgBduHhrhSYVnU39/3E\r\nmUtlaJq8Sor5fQhPeDr+jtXEDPi68Q50mTo0X3c+lFsYRrINh9mwMD4P5vmo\r\nYWyWkvfPZZSLOqeWkTSVFDh5RWKQYfhlKJGUeh9l2GWRb1YTZEc0ovEZTgsQ\r\nuTSluXBX69zshIPbF8eccnV8ZDzti0d7svG8F/jSL7w54MA/f2BQLDaq9CWc\r\nE9J+XZ72MwRqCi3wjMZYl/trgobmGEqBfXiAjShhuYw0y8Et/PAe8cSBmBwx\r\njzA15SQg6mtXe3VzBTA3xKm/e0wvK+p6cCs=\r\n=L50H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"c28566997b66f34683b8d1beb68eb3aa9d2dcab9","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.19.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.17.0","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^18.7.23","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.7_1664543757488_0.3186264847230915","host":"s3://npm-registry-packages"}},"1.4.2":{"name":"amqp-connection-manager","version":"1.4.2","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.4.2","maintainers":[{"name":"bradleytaunt","email":"bradleytaunt@gmail.com"},{"name":"danule","email":"dle@benbria.ca"},{"name":"erichaberkorn","email":"erichaberkorn@gmail.com"},{"name":"iestaa","email":"rom1guyot@gmail.com"},{"name":"jwalton","email":"npm@lucid.thedreaming.org"},{"name":"kreisys","email":"shaybergmann@gmail.com"},{"name":"macpham","email":"macpham@gmail.com"},{"name":"mdu","email":"masondu@gmail.com"},{"name":"metelyk","email":"dbronnykova@benbria.ca"},{"name":"michaelreiter","email":"michaelreiter@live.ca"},{"name":"npapayiannakis","email":"npapayiannakis@benbria.ca"},{"name":"oguzbilgener","email":"oguzbilgener@gmail.com"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"5344ed48e6ebb8f1d6fefbf770bb0e2380daa211","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.4.2.tgz","fileCount":8,"integrity":"sha512-K1fOBXbwSRbwfFWktWmYJM619tdHQGR0Fko9idqdh3UxxpShEJMDKI2MjR/270yEBs9rfgukR2v2eOXMinuu0w==","signatures":[{"sig":"MEUCIQClgCG12FSCJ8xHnD0Vu36BlZZ3kKdW6T3ROQ5SczAn9wIgRAmR/8wGZ7TOfj26EVe/gmhM5JC2kLN3COMSc/0MB5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5yLTCRA9TVsSAnZWagAAaoEP/1cnuaUK/8G0KXxyxFx1\n6XVIJ4okdysscPK4Pf9SmhBEneyKikEDoKuVyJqvyRXydsZ5NXdYV/zaVHK/\nHFd+VyAzDoFIwQyyBrgLwOhmXlmnD+z78EpFf2GFIBMdwbcDqTm/jm+hrcdM\nr5aVtWLO3ex7sqCKFRE8jWWZfYiPbbPX/x2y243a6R/1olZawfvG111lyw6Q\nJUueLJu9vWzJk2h9CditUZDsddULT9k2C8LhEyZn4QrTj1jHMc3jgGmb4DT7\nVw0bci+oDhrWJXbyv/+sOL99H7XB3M16LEY/NqwsT6jl5pMb0ye82SS33oap\nEn/WLaU6W0vwwt3yDB7pCJQK+HuOiZimwuw6fTbYt7xh9T6dJ4LqfS/oRXA4\naMswVWIb4EHKK2/SL0w7yWtNEaf0MPTdH30rYAKh6OYwbTCgJ+gSVu5pIg7/\n4QwmyKsFh9JUh6TnqI2LOLUvQcgKvdjsBgMeV8V44q9rzJHXwsy1/RFJ/Uvp\nUTBqu1bByazK9ZVCoiE07usxgmQnCNJ8eYE+gUAXKzbvhbxQ1Op3s+0AeaX4\n19rJi/S6PgbYOq3zbgqyqxoJKlxD9vjysAfr/+f+k0C+uHQsHe2DM3wjalP/\noCXOz39LBcGLeCH68WQtz0VTapb4RGuZNPAmW3/aV1PA24GuiKWq28fUrqhL\nvDsN\r\n=+6EJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","gitHead":"5b6183a14f9782b038c5a964a59bd06a2ec59925","scripts":{"test":"mocha \"test/**/*.{js,coffee}\" && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/benbria/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"5.8.0","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"when":"^3.7.3","lodash":"^4.15.0","es6-promise":"^4.1.1","promise-breaker":"^4.1.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^5.1.1","sinon":"^5.0.1","amqplib":"^0.5.1","istanbul":"^0.4.0","coveralls":"^3.0.0","proxyquire":"^2.0.1","chai-string":"^1.1.2","coffeescript":"^2.2.4","coffee-coverage":"^3.0.0","chai-as-promised":"^7.1.1","greenkeeper-lockfile":"^1.14.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_1.4.2_1525097169723_0.5474413809306526","host":"s3://npm-registry-packages"}},"4.1.8":{"name":"amqp-connection-manager","version":"4.1.8","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@4.1.8","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/jwalton/node-amqp-connection-manager","bugs":{"url":"https://github.com/jwalton/node-amqp-connection-manager/issues"},"dist":{"shasum":"2217a1aa798aacc5ad43de43689331ee3b41aaf6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-4.1.8.tgz","fileCount":20,"integrity":"sha512-/osn1RfFmFzGaiL1himZ1RgdEtyrkPCm6Jl9KxIA0bf2y8KoUzLjagD3KNVqpaSF2oYkbh+RB5B8oJSkhmRXWQ==","signatures":[{"sig":"MEUCIQD5WdI1cKcmmuvibqu2GwRFyaF/2a25JfePfYT8Oxa+kgIgRQdo7vhg00yFHZllf2xlahBIvFdJqGFKUVxRe7GOou4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144312,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVpbmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiCxAApEL13NzRELjryDTnmP/iCNVI5XsZHlIJ0mFqSOFuD3iElJdZ\r\nYKVI6dJ5a4oWwNqvEhFCs75i9Z7M38gUoyuGZUbnv1Ypndubs2jt6rkPffqd\r\ncU2w4cPZfp0bAEmowQDO3x6hsqgK/SS2/exGTI5HAPyhKJzqsJLm9Ub02hzb\r\nQLY4GK9MYOnfjzpRclhEtlS2mmlofiZ5lPonwAOxzAOGMBqJ6Xp6TQBVXvcE\r\nGNiZwWWDJ6wTUmMgjMYFDwb6BzRseP9pvDPlK0N8Tvio63Zu0Xw4maJiUfk4\r\nM+9zuf3Z+Nv2ouhZm+vSYu8mXxatxN8LfjnjMsTCAVIKMjyBJPsgMyJwzDpQ\r\npCQT0/3jU4WgISAXadoB1OgMASZfMYDV6F69z2c/02SGvxbbS5W80y1P9M5o\r\nqEuP9K+50TZnTHbfMo5KipodmCcG77xkSK1o9D07AQ3zf5LX2nd7fg45n1jP\r\nzcHOikR7yuVA0vpObEoifSgsX1bSraQd00xECFZF2fd2zwra7t8CSKcotz7k\r\nDtNwQYWpIzfSmsDVwq//Q54+r0R20/7mxUiTcGdOFr26ZIW2IsGDINv7z13t\r\nYdZW5g6VyGH6wd3xbotEyUfMgEvKx/L3COj7UHQnJ4fu1nqA7sUa6flM3oSg\r\nFL7JbMEzsSnDOLwmP9NbtmTVSoJb6mgF120=\r\n=w72j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","types":"./dist/esm/index.d.ts","module":"./dist/esm/index.js","engines":{"npm":">5.0.0","node":">=10.0.0"},"exports":{".":{"import":"./dist/esm/index.js","default":"./dist/cjs/index.js","require":"./dist/cjs/index.js"}},"gitHead":"b61d3ae338eed10fb127dfd8f88958fb4d9e457b","scripts":{"test":"npm run test:lint && npm run test:unittest","build":"tsc && tsc -p tsconfig.cjs.json && ./bin/build-types.sh","clean":"rm -rf dist types coverage","prepare":"husky install && npm run build","test:lint":"eslint --ext .ts src test","test:unittest":"tsc -p test && jest --coverage","prepublishOnly":"npm run build","semantic-release":"semantic-release"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"git+https://github.com/jwalton/node-amqp-connection-manager.git","type":"git"},"_npmVersion":"8.19.2","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"lint-staged":{"**/*.ts":["eslint --ext .ts"]},"_nodeVersion":"16.17.1","dependencies":{"promise-breaker":"^6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","jest":"^27.0.6","husky":"^7.0.1","eslint":"^8.6.0","amqplib":"^0.8.0","ts-jest":"^27.0.5","ts-node":"^10.2.1","istanbul":"^0.4.0","prettier":"^2.3.2","chai-jest":"^1.0.2","coveralls":"^3.1.0","cross-env":"^7.0.2","typescript":"^4.3.5","@types/chai":"^4.2.21","@types/jest":"^27.0.1","@types/node":"^18.7.23","chai-string":"^1.1.2","lint-staged":"^12.1.7","pretty-quick":"^3.1.1","promise-tools":"^2.1.0","@types/amqplib":"^0.8.2","chai-as-promised":"^7.1.1","semantic-release":"^19.0.2","@types/whatwg-url":"^8.2.1","@types/chai-string":"^1.4.2","greenkeeper-lockfile":"^1.14.0","@semantic-release/git":"^10.0.1","eslint-plugin-promise":"^6.0.0","eslint-config-prettier":"^8.3.0","@types/chai-as-promised":"^7.1.4","@typescript-eslint/parser":"^5.9.0","jest-ts-webcompat-resolver":"^1.0.0","@semantic-release/changelog":"^6.0.1","@jwalton/semantic-release-config":"^1.0.0","@typescript-eslint/eslint-plugin":"^5.9.0"},"peerDependencies":{"amqplib":"*"},"_npmOperationalInternal":{"tmp":"tmp/amqp-connection-manager_4.1.8_1666619109843_0.17985475894313518","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"amqp-connection-manager","version":"1.0.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.0.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"a8e4999e3789e0896d129d4e566a9767f2f28d60","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.0.0.tgz","integrity":"sha512-F8u4aBmvtwn6ZGiM+dC3g5jvxyJLXTgOu/Y3DCrieHd9P5cbTI88tkM/7/YKj72EtAyvlkThjxuC1Hk6YENvgQ==","signatures":[{"sig":"MEUCICBM5nurRqsgmLulZree+E4zIY0M2KgWIpR+KTW3rekAAiEA3lFztQhGEf4g2bAnA5HfjTsS0yrmusWRESAk3ZDtPsY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"a8e4999e3789e0896d129d4e566a9767f2f28d60","gitHead":"2a6d8858e69b134db9e09b94482fcbb075e7a734","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"https://github.com/benbria/node-amqp-connection-manager","type":"git"},"_npmVersion":"1.4.23","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"sinon":"^1.16.1","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"1.0.1":{"name":"amqp-connection-manager","version":"1.0.1","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.0.1","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"e34dab4e6c380d7eda404011286c2af000ddcadf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.0.1.tgz","integrity":"sha512-OSVG2q75/FU/glAYnOcnKUZF/1/Yg9b2Jt/MDj08r92eyYVEyfoITpQ+Wj/WpAKU6Fp6jCSiDnVvoleXJHD3sQ==","signatures":[{"sig":"MEUCIEFnBschYXs2tq6M/AynTQ7EwhpkpBygodzlct8IZizKAiEA48j93qNsd6llmByV6b1lwwi0En/aMxWhxjhbOmbE7vQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"e34dab4e6c380d7eda404011286c2af000ddcadf","gitHead":"014e0dd1fa661335e8d1a526b263b45186a0d13b","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"https://github.com/benbria/node-amqp-connection-manager","type":"git"},"_npmVersion":"1.4.23","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.3.18","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}},"1.2.0":{"name":"amqp-connection-manager","version":"1.2.0","keywords":["amqp","rabbitmq","cluster","amqplib"],"author":{"url":"https://github.com/jwalton","name":"Jason Walton","email":"dev@lucid.thedreaming.org"},"license":"MIT","_id":"amqp-connection-manager@1.2.0","maintainers":[{"name":"jwalton","email":"npm@lucid.thedreaming.org"}],"homepage":"https://github.com/benbria/node-amqp-connection-manager","bugs":{"url":"https://github.com/benbria/node-amqp-connection-manager/issues"},"dist":{"shasum":"8e37abadc6bccb7b66d17befa4da4dfa9dbe75ee","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqp-connection-manager/-/amqp-connection-manager-1.2.0.tgz","integrity":"sha512-k9KvAqtnQ8B4NC+bx5VzsZ30Ymo1u1GpfY0ZmOA35/G1aLKao9GrrVTTcG7MKIZYHeDAez5q54W39gmsArLZpQ==","signatures":[{"sig":"MEUCIQC3137lt/XAzLJCcVr8FR/qBhCasEtCRrAGjXcZDpGENgIgXiqd6CleLqeUoQOD6YU+ThegRYH6cvlp9He1e+qbjIc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"8e37abadc6bccb7b66d17befa4da4dfa9dbe75ee","gitHead":"9dbf4eda32c59160344d874f40fe4bb197aa336f","scripts":{"test":"mocha && istanbul report text-summary lcov","build":"coffee -c -o lib src","clean":"rm -rf lib coverage","distclean":"npm run clean && rm -rf node_modules","prepublish":"npm run build && npm test"},"_npmUser":{"name":"jwalton","email":"npm@lucid.thedreaming.org"},"repository":{"url":"https://github.com/benbria/node-amqp-connection-manager","type":"git"},"_npmVersion":"1.4.23","description":"Auto-reconnect and round robin support for amqplib.","directories":{},"dependencies":{"when":"^3.7.3","lodash":"^3.10.1","es6-promise":"^3.0.2","promise-breaker":"^2.0.3"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.16.1","istanbul":"^0.4.0","coveralls":"^2.11.4","proxyquire":"^1.7.0","chai-string":"^1.1.2","coffee-script":"^1.9.3","coffee-coverage":"^0.6.3","chai-as-promised":"^5.1.0"},"peerDependencies":{"amqplib":"*"}}},"name":"amqp-connection-manager","time":{"4.1.1":"2022-02-05T19:22:33.276Z","4.1.2":"2022-04-13T15:23:56.837Z","4.1.0":"2022-02-01T19:24:50.927Z","4.1.5":"2022-08-09T13:49:11.306Z","4.1.6":"2022-08-11T20:27:30.190Z","4.1.3":"2022-05-04T07:28:58.520Z","4.1.4":"2022-08-05T18:04:56.074Z","3.5.0":"2021-08-26T12:12:29.949Z","modified":"2025-10-30T08:28:42.214Z","3.5.1":"2021-08-26T14:16:05.712Z","3.5.2":"2021-08-26T16:20:35.726Z","3.7.0":"2021-09-21T13:55:27.085Z","3.1.0":"2019-12-06T16:20:04.637Z","3.1.1":"2020-01-06T18:54:42.577Z","3.3.0":"2021-08-24T17:17:11.884Z","4.1.15":"2025-09-29T15:03:52.626Z","2.1.0":"2018-08-09T21:13:05.718Z","4.1.14":"2023-07-27T15:17:58.301Z","4.1.13":"2023-05-02T13:38:33.159Z","4.1.12":"2023-04-03T12:33:49.255Z","3.4.5":"2021-08-26T12:07:36.394Z","3.8.1":"2021-12-29T08:18:43.133Z","created":"2015-08-21T22:24:57.257Z","2.3.3":"2019-06-25T19:57:15.545Z","2.3.1":"2019-04-01T19:53:50.124Z","4.1.11":"2023-02-24T17:24:42.185Z","2.3.2":"2019-05-21T19:00:35.015Z","4.1.10":"2022-12-31T23:32:05.430Z","2.1.1":"2018-09-05T14:37:33.213Z","2.1.2":"2018-09-13T02:49:10.245Z","2.3.0":"2018-11-20T15:39:26.819Z","1.1.2":"2015-10-15T01:25:35.652Z","1.3.0":"2016-01-05T15:48:53.130Z","1.3.1":"2016-01-25T21:08:51.496Z","1.3.2":"2016-08-25T14:00:09.681Z","1.3.3":"2016-08-25T20:32:16.708Z","1.3.4":"2016-08-31T15:04:57.665Z","1.3.5":"2016-10-27T21:49:17.172Z","1.3.6":"2017-10-23T15:49:34.485Z","1.3.7":"2017-10-28T15:46:29.448Z","5.0.0":"2025-09-29T15:09:17.032Z","1.1.0":"2015-09-23T16:02:25.111Z","1.1.1":"2015-10-06T19:41:21.159Z","4.0.0":"2022-01-07T18:34:11.461Z","4.0.1":"2022-01-21T00:20:10.434Z","3.0.0":"2019-07-04T13:29:45.757Z","3.2.3":"2021-08-21T15:40:25.865Z","3.4.1":"2021-08-25T01:29:52.656Z","3.2.4":"2021-08-23T15:53:29.476Z","3.4.2":"2021-08-25T03:40:37.371Z","3.6.0":"2021-08-27T14:56:24.844Z","3.4.3":"2021-08-25T14:54:57.345Z","3.4.4":"2021-08-26T01:08:55.287Z","3.8.0":"2021-12-29T06:42:35.669Z","3.2.0":"2020-01-20T22:48:08.189Z","3.2.1":"2020-09-12T14:30:17.862Z","3.2.2":"2021-02-09T10:13:49.126Z","3.4.0":"2021-08-25T01:23:39.410Z","2.0.0":"2018-05-05T05:32:27.821Z","3.9.0":"2022-01-04T13:06:04.777Z","2.2.0":"2018-09-25T14:26:46.599Z","1.2.1":"2015-11-02T19:23:40.557Z","4.1.9":"2022-10-24T19:31:15.067Z","1.4.0":"2018-03-20T12:53:26.140Z","1.4.1":"2018-04-28T14:11:29.293Z","4.1.7":"2022-09-30T13:15:57.684Z","1.4.2":"2018-04-30T14:06:09.847Z","4.1.8":"2022-10-24T13:45:10.001Z","1.0.0":"2015-08-21T22:24:57.257Z","1.0.1":"2015-09-23T15:55:16.470Z","1.2.0":"2015-10-30T20:43:38.527Z"},"readmeFilename":"README.md","homepage":"https://github.com/jwalton/node-amqp-connection-manager"}