{"_id":"amqplib","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"dist-tags":{"latest":"1.0.3"},"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","readme":"# AMQP 0-9-1 library and client for Node.JS\n\n[![NPM version](https://img.shields.io/npm/v/amqplib.svg?style=flat-square)](https://www.npmjs.com/package/amqplib)\n[![NPM downloads](https://img.shields.io/npm/dm/amqplib.svg?style=flat-square)](https://www.npmjs.com/package/amqplib)\n[![Node.js CI](https://github.com/amqp-node/amqplib/workflows/Node.js%20CI/badge.svg)](https://github.com/amqp-node/amqplib/actions?query=workflow%3A%22Node.js+CI%22)\n[![amqplib](https://snyk.io/advisor/npm-package/amqplib/badge.svg)](https://snyk.io/advisor/npm-package/amqplib)\n\nA library for making AMQP 0-9-1 clients for Node.JS, and an AMQP 0-9-1 client for Node.JS v10+. This library does not implement [AMQP1.0](https://github.com/amqp-node/amqplib/issues/63) or [AMQP0-10](https://github.com/amqp-node/amqplib/issues/94).\n\n    npm install amqplib\n\n## RabbitMQ Compatibility\n\nOnly `0.10.7` and later versions of this library are compatible with RabbitMQ 4.1.0 (and later releases).\n\n## Links\n * [Change log][changelog]\n * [GitHub pages][gh-pages]\n * [API reference][gh-pages-apiref]\n * [Troubleshooting][gh-pages-trouble]\n * [Examples from RabbitMQ tutorials][tutes]\n\n## Project status\n\n - Expected to work\n - Complete high-level and low-level APIs (i.e., all bits of the protocol)\n - Stable APIs\n - A fair few tests\n - Measured test coverage\n - Ports of the [RabbitMQ tutorials][rabbitmq-tutes] as [examples][tutes]\n - Used in production\n\nStill working on:\n\n - Getting to 100% (or very close to 100%) test coverage\n\n## Callback API example\n\n```javascript\nconst amqplib = require('amqplib/callback_api');\nconst queue = 'tasks';\n\namqplib.connect('amqp://localhost', (err, conn) => {\n  if (err) throw err;\n\n  // Listener\n  conn.createChannel((err, ch2) => {\n    if (err) throw err;\n\n    ch2.assertQueue(queue);\n\n    ch2.consume(queue, (msg) => {\n      if (msg !== null) {\n        console.log(msg.content.toString());\n        ch2.ack(msg);\n      } else {\n        console.log('Consumer cancelled by server');\n      }\n    });\n  });\n\n  // Sender\n  conn.createChannel((err, ch1) => {\n    if (err) throw err;\n\n    ch1.assertQueue(queue);\n\n    setInterval(() => {\n      ch1.sendToQueue(queue, Buffer.from('something to do'));\n    }, 1000);\n  });\n});\n```\n\n## Promise/Async API example\n\n```javascript\nconst amqplib = require('amqplib');\n\n(async () => {\n  const queue = 'tasks';\n  const conn = await amqplib.connect('amqp://localhost');\n\n  const ch1 = await conn.createChannel();\n  await ch1.assertQueue(queue);\n\n  // Listener\n  ch1.consume(queue, (msg) => {\n    if (msg !== null) {\n      console.log('Received:', msg.content.toString());\n      ch1.ack(msg);\n    } else {\n      console.log('Consumer cancelled by server');\n    }\n  });\n\n  // Sender\n  const ch2 = await conn.createChannel();\n\n  setInterval(() => {\n    ch2.sendToQueue(queue, Buffer.from('something to do'));\n  }, 1000);\n})();\n\n```\n\n## Running tests\n\n    npm test\n\nTo run the tests RabbitMQ is required. Either install it with your package\nmanager, or use [docker][] to run a RabbitMQ instance.\n\n    docker run -d --name amqp.test -p 5672:5672 rabbitmq\n\nIf prefer not to run RabbitMQ locally it is also possible to use a\ninstance of RabbitMQ hosted elsewhere. Use the `URL` environment\nvariable to configure a different amqp host to connect to. You may\nalso need to do this if docker is not on localhost; e.g., if it's\nrunning in docker-machine.\n\nOne public host is dev.rabbitmq.com:\n\n    URL=amqp://dev.rabbitmq.com npm test\n\n**NB** You may experience test failures due to timeouts if using the\ndev.rabbitmq.com instance.\n\nYou can run it under different versions of Node.JS using [nave][]:\n\n    nave use 10 npm test\n\nor run the tests on all supported versions of Node.JS in one go:\n\n    make test-all-nodejs\n\n(which also needs `nave` installed, of course).\n\nLastly, setting the environment variable `LOG_ERRORS` will cause the\ntests to output error messages encountered, to the console; this is\nreally only useful for checking the kind and formatting of the errors.\n\n    LOG_ERRORS=true npm test\n\n## Test coverage\n\n    make coverage\n    open file://`pwd`/coverage/lcov-report/index.html\n\n[gh-pages]: https://amqp-node.github.io/amqplib/\n[gh-pages-apiref]: https://amqp-node.github.io/amqplib/channel_api.html\n[gh-pages-trouble]: https://amqp-node.github.io/amqplib/#troubleshooting\n[nave]: https://github.com/isaacs/nave\n[tutes]: https://github.com/amqp-node/amqplib/tree/main/examples/tutorials\n[rabbitmq-tutes]: http://www.rabbitmq.com/getstarted.html\n[changelog]: https://github.com/amqp-node/amqplib/blob/main/CHANGELOG.md\n[docker]: https://www.docker.com/\n","repository":{"type":"git","url":"git+https://github.com/amqp-node/amqplib.git"},"users":{"nicknaso":true,"goliatone":true,"moskalenko":true,"dannluciano":true,"serge-nikitin":true,"jonathas":true,"456wyc":true,"kistoryg":true,"waleedmkasem":true,"djensen47":true,"algonzo":true,"sunggun":true,"kulyk404":true,"santihbc":true,"mofier":true,"htzhao200744":true,"shanewholloway":true,"programmer.severson":true,"matteo.collina":true,"magomogo":true,"rhyslbw":true,"dmdnkv":true,"lgh06":true,"beh01der":true,"olamedia":true,"segen":true,"zaxnode":true,"undertuga":true,"mdrobny":true,"jbpionnier":true,"selenasong":true,"jonasfj":true,"ultimatik":true,"nekinie":true,"mikroacse":true,"drdanryan":true,"stevepsharpe":true,"antixrist":true,"hintss":true,"strongwray":true,"fmoliveira":true,"coolhanddev":true,"spiros.politis":true,"kkk123321":true,"icerainnuaa":true,"danielpavelic":true,"nuwaio":true,"sachacr":true,"gurunate":true,"mfarid":true,"sherrman":true,"bilalkaplan":true,"bojand":true,"kkho595":true,"pantheraleo":true,"itonyyo":true,"qard":true,"oleg_tsyba":true,"jamesbedont":true,"ma-ha":true,"koslun":true,"pihizi":true},"bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"license":"MIT","versions":{"0.4.2":{"name":"amqplib","version":"0.4.2","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.4.2","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"5e4a2a914ccb3125f9cb91f6da07c97aa4cb13a6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.4.2.tgz","integrity":"sha512-B8iSyozIqKcR72wFeS+VrCYmzqyCIRKDnDr8nnz2FBsnpKjia4pqby2/r4FluhyaIzBqKGaldYWy95g0OKPHUA==","signatures":[{"sig":"MEYCIQDH7Fygz6sonnnJ7+fZTFLm6L5fwEdsTAt9QtkPNZptYwIhAKa1v4WE2HtSYXBN8z32XfjXVY42dKLve8PMI8BDyflx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"5e4a2a914ccb3125f9cb91f6da07c97aa4cb13a6","engines":{"node":">=0.8 <6 || ^6"},"gitHead":"46d14f8f0916d49a2e9fa7e8596ddc68b0ab5007","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"3.9.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"6.2.1","dependencies":{"when":"~3.6.2","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib-0.4.2.tgz_1465287074710_0.32056331844069064","host":"packages-12-west.internal.npmjs.com"}},"0.5.1":{"name":"amqplib","version":"0.5.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.5.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"7cccfebabe56c2e984ea7a2243f7cefe6fbfc6cf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.5.1.tgz","integrity":"sha512-iU0AyY65MOsV3rrb4V+24yrXcjeG2ycbHn8UYSIagHALLNHd7ETLYVns2hswzFbMCeCiixrc9hlS72HSZZldJQ==","signatures":[{"sig":"MEUCIQDSYb1/injlP0Fqj9O3/Lud8ow5AvTpsFNYK6ikz6xZowIgSUqCewfP1xcK9zDrIZSy+ifxbZp64Lfl47HkXVCxmXQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"7cccfebabe56c2e984ea7a2243f7cefe6fbfc6cf","engines":{"node":">=0.8 <6 || ^6"},"gitHead":"b21133d708fbb9677267428dd74ddb7fe7f1f80e","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"3.3.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"0.10.25","dependencies":{"bluebird":"^3.4.6","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib-0.5.1.tgz_1478962016225_0.675085368566215","host":"packages-12-west.internal.npmjs.com"}},"0.6.0":{"name":"amqplib","version":"0.6.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.6.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"87857c7c95d56d22438ced4cf1f7e5f0dc43b309","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.6.0.tgz","fileCount":68,"integrity":"sha512-zXCh4jQ77TBZe1YtvZ1n7sUxnTjnNagpy8MVi2yc1ive239pS3iLwm4e4d5o4XZGx1BdTKQ/U0ZmaDU3c8MxYQ==","signatures":[{"sig":"MEUCIFU5INZfJ+kmsF0/BNwHSP8Vs909pd1q2hTqoim3ds4NAiEA4edPLYQrF3nadc2tRUzMYjKE63vZiXjLZH2Y2kpawsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":420918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDrrFCRA9TVsSAnZWagAASSsQAJSUi1juFlP72+kL6QXY\nUseHaDxvah11CzZNBVT7TlmSxtWpsN13JiHD2V6qn0oRjtFtvrOO0uqys0QG\n3hnJjxBqCPvUSpAlySW7dhvBasWjz2OZ4/V3btGZ/svmcr0zwPJqKP0zTTWg\nN4hmipSI5ec3MGnxy1Ik4PIEUW/pC215cm7kNURXdQ/othTGr/rhxU1Q1/Ru\nAAXSSrVauj4gSu3QhJ52FCLNxtml3iTISjqSfwGGjVLTC13pl4BadL9uj905\n7WL5xsAiiOZRz7h6gInW6Yav7qtmdo+HQ0MmEGNmk/p2XGEs4hTo3/MYZozJ\nzuGQFLdEz7FaO9HdY+eH38lkJRP3o3RLByc4dyxN6Gd+kLxF59jYXNsezhne\ng4kvB67q4dIqq28BwY2IpuJ9sgco/RuUF9HGIMoKj+35Glq6fzV1jpQ3EU95\nu0jcjbuIlBDvMBnA5YXtN3OCUDq8XCHV/99qW3LbbOXkIo4sK88P7xOJ9Oox\n8Ue65SVn4ISQxQI6diq3ytNY8OxvkrENDiEKCJ/AbOJvRpvYqZONKdQLd8A4\nQCOEszlAeMzmnAUb0Q9O55yaaodnRvdvYBuOQ/YsatyAQVJQf4ipizEd3r91\n0D8Sy70aO2XLG0lG+dWG6h+UMancMMHYvJrLITr3ZNeZpvouKCCHSIqg8s7m\nCCKp\r\n=Lps0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","_from":".","_shasum":"87857c7c95d56d22438ced4cf1f7e5f0dc43b309","engines":{"node":">=0.8 <=14"},"gitHead":"e3e10167d3f498f632a5a50dc7fac62b314400c8","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"2.15.12","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"bluebird":"^3.5.2","bitsyntax":"~0.1.0","url-parse":"~1.4.3","safe-buffer":"~5.1.2","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.6.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.6.0_1594800837012_0.43470777612224554","host":"s3://npm-registry-packages"}},"0.5.2":{"name":"amqplib","version":"0.5.2","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.5.2","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"d2d7313c7ffaa4d10bcf1e6252de4591b6cc7b63","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.5.2.tgz","integrity":"sha512-l9mCs6LbydtHqRniRwYkKdqxVa6XMz3Vw1fh+2gJaaVgTM6Jk3o8RccAKWKtlhT1US5sWrFh+KKxsVUALURSIA==","signatures":[{"sig":"MEUCIQC+PfwueSw2vmgpbSI1i+bTihcGXz+6PZKYQt+I6M1dbgIgGeggkusJieUNrU6yNLTSjIklyBPfIgmxIEtj3kVzB2Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","engines":{"node":">=0.8 <=9"},"gitHead":"be11b7d8bdfdc9875dc2c50ec39138497e9dc5bd","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"5.5.1","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"8.9.1","dependencies":{"bluebird":"^3.4.6","bitsyntax":"~0.0.4","safe-buffer":"^5.0.1","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib-0.5.2.tgz_1510442097876_0.672039186116308","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"amqplib","version":"0.7.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.7.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"83ae81d5bce3406bc8c75a90b9c4789cbbd1e6c4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.7.0.tgz","fileCount":68,"integrity":"sha512-WIH+AV/p2UU7YUaP35m0uDlG871YFLm4pz5MKVVNz11OSWUYfWvbsPMklbSDTAbXscvbUB+QO4Z8HsgkfaqNeQ==","signatures":[{"sig":"MEUCIQC2aYMhfnt9BWrDeEJ25hBml6inhDzJePKXVMTL2dJjSQIgNJHShtKYqwVY6WjxmLO/IRqzbBTri7k8WsgcZUWQ7o0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":449454,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgM8AuCRA9TVsSAnZWagAAiCYQAIEx6IfyZhu0TGky90l7\nfsTDMKdGmVCPHO1VGmJVB2E8IFwmFvMEJsfH1hEDlxKQ/oy1UT3u5SgyFt+D\nXfY2oeAw9eB2zvC/92y4rpuzKu67ePYzb6i1bCco6Fim8OSSWZwBStbTzrTM\npr+SvPNezjPvi+FdRLd8y+TQ8vu9GdfDtjfcADMQ3SF8gDK+Tq/kvTxrjxCj\nYMgb2q1BeHLReDn/1rOWZ9FvYwwF+OvdItR0vF+N6H+N9mxg97KbA7FDGlFM\n8MHoNdk6Xrxtmjoeja7Y8yX9UAkMKAZTzGZnoNEW/ZIdFM2j+U0ZQ+EPZTI+\n8Ogh5M981xYTLgNa/EnYBPAOa/8IQ3oQgb09J2Ac0aoL/EnuwR8Zv2t3x0rk\nidmlMgtwY0llxPxyw/uyUHiRiAvOn8htvXNUM25wkRcpyf9gem4GlsqWXWSf\nNHvLUk8uFLk7hNsuegRMrjdBD5n7NsY2VsfmyP59LUAZT5M22xhH6eC9xtOV\nDigePC1O8xEHuHZ4JtGpjazevM6BveN6qrtoUcpZiooYETIjjtGitfPmPwO0\nAnTWknW9Kb4JRm+SoFIJzDWhK6mnmez7vwGPZEuMzyAX2mEzKhE4sd/jrsi6\n08+PWrbv0hNGQG/1wHFnPiIPRLd6FfW3ftwfd9GKMijDlsVzO0qCrsTAh17e\nQ0/u\r\n=eFfu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","_from":".","_shasum":"83ae81d5bce3406bc8c75a90b9c4789cbbd1e6c4","engines":{"node":">=0.8 <=15"},"gitHead":"99a854f9fccac0517ed58696058f9ccd8e356b2e","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"2.15.12","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"bluebird":"^3.5.2","bitsyntax":"~0.1.0","url-parse":"~1.4.3","safe-buffer":"~5.1.2","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.6.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.7.0_1614004270013_0.097458798472281","host":"s3://npm-registry-packages"}},"0.1.3":{"name":"amqplib","version":"0.1.3","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.1.3","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"200c174af83226815a21aa621d55fe99eb130a6a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.1.3.tgz","integrity":"sha512-zlRuH13zYJCHrgz4tnIGUq2l4GKseaAp8wJcV6Sd3zmhFLY5wfSn3QfcavXiqcuR8ckwWTCPrPI78K6hBE8Omw==","signatures":[{"sig":"MEUCIQD3bt3bnjsxkAttFoqsYc+iVa8jG1Nl4y8ruymHSw+LqwIgZqegdL3Ut7n/dtou+A6Lo3kz1Y5YJEk3vH4mFoJPiiQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11"},"scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.3.24","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~2.1","bitsyntax":"0.0.3","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.3.1":{"name":"amqplib","version":"0.3.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.3.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"cee1b86fa4516a2963a61e134258ef9da9d38781","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.3.1.tgz","integrity":"sha512-FY2HsBePLoUyjQ27QvJt2XSgytWhENO0ZOfGaYucFW8J+yVBFzgJFLkZF1iorb/a+04lKQzR5NnzjT2zNRhLcA==","signatures":[{"sig":"MEUCIQDPG+xxj+tjjOOOXMQY5jY+TxM4UfzQzubik7lB8A39dgIgSCkyHeLtSdOPlHdUoPzx+0IeHHgti0zVz+5hgYiU2BI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"cee1b86fa4516a2963a61e134258ef9da9d38781","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11 || 0.12 || 1.0 || 1.1"},"gitHead":"0eb65a369749c0f5e0b7a3923d8c9923801f8b60","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.4.13","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~3.6.2","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.4.0":{"name":"amqplib","version":"0.4.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.4.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"9efe7656dda85a7359f664a2726e8e85229e124c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.4.0.tgz","integrity":"sha512-1ogAyQ7FDSVuMUuYKXg6jrghIByYjA1qfbjxQR0F/4e8iDfy//kNgBpjVCRlBAxHV4Bmfu3MYdHRpaikUZWddQ==","signatures":[{"sig":"MEYCIQDf2t0NyPGqKgJ9qeDNVjiHBmravY2NwiWbnZIUmKNW/gIhAOLgwxvZmTDWtn2C39VPHw1iiE78LlVOwdQWh1ofBDt3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"9efe7656dda85a7359f664a2726e8e85229e124c","engines":{"node":">=0.8 <4 || ^4"},"gitHead":"105b73c266ed16f377a54072a5ab68bdb6a2c2f0","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.4.13","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~3.6.2","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.3.2":{"name":"amqplib","version":"0.3.2","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.3.2","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"e77d8fb3842ebcae78cf1c930c490d1e954f4297","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.3.2.tgz","integrity":"sha512-WgInY2jfpTbRyJ9s9Iwy5pAfdr7z81ZqIzVwQ/2OY1Ui3xtLfXrIXyXvuwAKQqBvPqVy723Ngu6V2h4EGDTX6w==","signatures":[{"sig":"MEUCIAh9PnA5QIBx2GHQj5E7OL8kkmJhg6IXnn9kxpRYL+7GAiEAmuBDlyXZ7ZCLNtcw/Tsk/A9oDa+fmzEtUqlq2TJC+RI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"e77d8fb3842ebcae78cf1c930c490d1e954f4297","engines":{"node":">=0.8 <0.13 || ^1"},"gitHead":"93fde0fe29e3fca2b91743b1a63a81ce291effc9","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.4.13","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~3.6.2","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.4.1":{"name":"amqplib","version":"0.4.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.4.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"988e5c65eb992b2df8486d52ef2f6bbbc8fdbd0e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.4.1.tgz","integrity":"sha512-MJ1r6ep/6TRj+ncMO5UKss6TOd+Z/Kf13LvPBNKVdMYQsUkoxYJU7vAplXjPH3/idePRJDVLR3+ZDxv4rlHr8A==","signatures":[{"sig":"MEUCIQD9ngX1RcQFsMTJ66a11aMkqLBiIOD4yGi4cTBbgKW4dwIgH9sZ5MwVgrs83khMNsgkNyXaZVRwW6Qk7kBx1f+ZfsU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"988e5c65eb992b2df8486d52ef2f6bbbc8fdbd0e","engines":{"node":">=0.8 <5 || ^5"},"gitHead":"e6e52d94ef308ece88188b3a89c4a68b5d70863f","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"3.3.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"0.10.25","dependencies":{"when":"~3.6.2","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib-0.4.1.tgz_1454652521626_0.6085246792063117","host":"packages-5-east.internal.npmjs.com"}},"0.5.0":{"name":"amqplib","version":"0.5.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.5.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"426da5e40dd455245bb626c8a0be9a109cb743b2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.5.0.tgz","integrity":"sha512-JLWU5+B/4W7U2m8azjD4+sX0jwRCD/D+K3gEFgMydg7JK1HHawT3oC+KyHHoSQNbwoc9gPBNgYdOwEiLxEGOjQ==","signatures":[{"sig":"MEYCIQDFrVYjD7QO3ItXQgpp9fly8jtLG3jUDhCrvKD2SE8iqQIhAPbFRFhEiRaSSw017D8Bi8ORfbQhblqHgfutInhAshfO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"426da5e40dd455245bb626c8a0be9a109cb743b2","engines":{"node":">=0.8 <6 || ^6"},"gitHead":"e5c19d4da864954ba907daa00f0dd3910f239715","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"3.10.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"bluebird":"^3.4.6","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib-0.5.0.tgz_1478041443784_0.8355621297378093","host":"packages-12-west.internal.npmjs.com"}},"0.5.5":{"name":"amqplib","version":"0.5.5","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.5.5","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"698f0cb577e0591954a90572fcb3b8998a76fd40","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.5.5.tgz","fileCount":68,"integrity":"sha512-sWx1hbfHbyKMw6bXOK2k6+lHL8TESWxjAx5hG8fBtT7wcxoXNIsFxZMnFyBjxt3yL14vn7WqBDe5U6BGOadtLg==","signatures":[{"sig":"MEUCIBsPf/IrbBiXSJxpsv24Ps0J2ESlL3XdjuXNGZDAG3eQAiEAr01JaAIaBs/5ne1fJG0SuD2SzBzG96mppoOijpTkJ78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":419882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdP/jNCRA9TVsSAnZWagAApxwP/0KYLAtgmM2LtYA7q5Sk\nQW54gy4BoZRNfe2ZFdpba9rSIQYPyo5wLg9DFURu/S108lVnh6v1b1DhT8qF\nA7J6SALc9rIfvUMHIAkawuTwlUXlfEbsdOjj7ts3eHthc8nS4hiUbRG7yAeS\nqb3VtAV4za5hh/uzhEi/Blxu7RNLOSuUQh1imvlrC0IZTbsD2VMnEmwaK3LA\nClMz0wtkdCWpybo7E6hDEQ4ga7Le3gBUyO51K0A0Yb42uqBhkdmoiUdLTo9G\nDxodCgfyIDm4UVf7JtvmgE2nJZ1fUCjydzHeGw+EK4cdasCphdZPMC+WpKag\n6IyzJQ1iA8eUjRd3FWhySj9zemECx9WigsBDuUwEyaQP3vk4/8cT6ugeoctB\npUOd+8G3NaN7/hdTqxoEf/5PaFzdvQpGKJhhJu0sTJlgRRf4ZElRHobP3nUU\nqi8VII3R9fy7cnVv6LpLtj+x2/d4MROUcuzryoqTh2Rg2dMj/1oS6ta9EWvw\n/sOEp6Zh6wndxVniggdNvz4J+th9JmoXxPq0UE7cn6SfhUpXHcHvms11Bdyq\nbUQRRBve3GmQiTKBkK22YIpTcx5wT949EvkbMeQFjjGV8cmIXCKV3HFnDZrH\nluCbe3Tk/UKmNEUfgqk4tQJ8Y4HQSILx5avPMNp2gK1KMsu53aYGsuA0RjIF\np4La\r\n=FZqF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","_from":".","_shasum":"698f0cb577e0591954a90572fcb3b8998a76fd40","engines":{"node":">=0.8 <=12"},"gitHead":"df4f807c9dd5276b7d280f8b988e5117996becd2","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"2.15.12","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"bluebird":"^3.5.2","bitsyntax":"~0.1.0","url-parse":"~1.4.3","safe-buffer":"~5.1.2","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.6.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.5.5_1564473549268_0.26824015975247884","host":"s3://npm-registry-packages"}},"0.9.1":{"name":"amqplib","version":"0.9.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.9.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"f2ad6e518a148a761e102bf791314fbe4cb94346","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.9.1.tgz","fileCount":67,"integrity":"sha512-a1DP0H1LcLSMKPAnhUN2AKbVyEPqEUrUf7O+odhKGxaO+Tf0nWtuD7Zq5P9uZwZteu56OfW9EQozSCTKsAEk5w==","signatures":[{"sig":"MEQCIE0OMou6tZDip/kworCKQTmhA2YVFUDau8kpU6PsWLJ7AiBccSkZQrOxxWUB4m7OkokMSyKFbIhqG6Y6ud52PjeflA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":400892,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiib4VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoMPw/+JoH5VgB40c03SMKw3d9ldVhw9T2Xyjyen2FBnsLsbciLjaGd\r\nTcr0+QdUessmY2vrzryY1iiCZuGUapi2P+eAEFPIvjagtwJ8Vag3hbwLLqJF\r\nC8KvjZwQBMRK6RAxbGLsn/5G9md3OXukIOOF4/jAgVS0yZQ3ge8lZ9ewB6Cy\r\nH7xx3/CVRI6Nh18E0/XK4rtUm59KCoxF435JFRYJyJSohOJyGN2VL7QlM8cb\r\nZC19ZnDeniaTE/JXtnVGSlAzWOmuLxgny33zbxTmeyT5w/XID0+aIGJuu/wA\r\nfnW56V/YnZi2rB2LWG8k2FpU3+9nb21iQQWkjAT3Q7i7l6v2Rz3bjC+QzXVH\r\nZhFFdvdBFdax8DNslNOMXXCOOFZrJ2pvLEIUkbBxPaJmChC8EHoIRxGe5YaE\r\nA6THNTeelVnViiRiUAvy+ZO/MiKcu9nOSYOATdbc/plRx62lywqGqWFDJvga\r\nRWPC0L+0e0glgJyuZG8NGh2+5LAwllowkBPNYiS+s1qrqKbPxj0/Bec0g4bM\r\nimR47l+TEM/0nuWhhHaEQCCTw0kmddm7sDtiS9l4H3kyhEIlTY6jHXcbRSAR\r\ng/9Pt2VjOkiu1xEN6CEzxzXxZDYNTG+rmnB9sDka0vpH1ZgWnTCGLMhOiRaE\r\n9EWVs9vBLKzU3B+2PTmYofUuibmvNqG0KV4=\r\n=sA1o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"8f5f328e0df5af18941db1e966e1f9a66c2629b0","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"7.6.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"10.23.1","dependencies":{"bluebird":"^3.7.2","bitsyntax":"~0.1.0","url-parse":"~1.5.10","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.9.1_1653194261438_0.9134120604769147","host":"s3://npm-registry-packages"}},"0.5.6":{"name":"amqplib","version":"0.5.6","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.5.6","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"86a7850f4f39c568eaa0dd0300ef374e17941cf4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.5.6.tgz","fileCount":68,"integrity":"sha512-J4TR0WAMPBHN+tgTuhNsSObfM9eTVTZm/FNw0LyaGfbiLsBxqSameDNYpChUFXW4bnTKHDXy0ab+nuLhumnRrQ==","signatures":[{"sig":"MEUCIQCkNEYlyXa/1yZo+5l191Z8MbTCYnFi9SnMMorQ4vthnQIgC2BF7uaA9f7Q8GK1+cIuU4kmlLqtlodpPkgYQF8sqAU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":420357,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevO9iCRA9TVsSAnZWagAAKPkP/RCjRColaZcnqrcMY8BA\n6f7pTwU4rdI56wUbXMTOF0sZqt4izXoNkZStOxmQGu8iO5b7wOaT7+T84ffu\nZMlMcdCkeh4V6F7dV5kI7NSTZp6dRyP+rfxiNyoMk3B5qtGBCxhN3d4GpGg4\nTDsjb03P+Jz5pR/mTjAmg4hu/Go9Rj/sWX4GqiLz88AxrJOcUZegOsFahVnv\n7FeOKnOFmJUObfsvQ2OYwBbDIqmE5CRpjG8qKAQUH+TC0mbFxZjbUvQ8hGIW\n1Dut448s//5yUiDhd8XO4UObaYv6KqQ+xPJzRQfIcu7QXWpuNHC7xehwjVmE\nQGL4/8E/ZtabSw0mBN0ZDEkP1F+Rl3a9xsMfqhE2yPg///STQj9BiVgpC3Os\nJqDr502LrOy57D1N9tqlVVPum9QAaiYt3l4F8Jy02VSGIKnvngoJ8/FvinIR\nGgj67iEb7CBu1vNM3ho+FeRTlh+ljK0MQWoXdGTlMibFbsSDzvl2CNYL0dJC\nKV0TgAvctTvOJYQHYpE2yabesvq6zrosANN0lQa3LzSDreVi88oyyQHRqkIB\n2CaVrPaEicO4kpZ0OazaQJjR5ammqtosjfiEXoo5fsWLRyOStOkKhgQgPAbo\nJPzQSJDjJCBauoRmvFzXDVztDK1q2v35hZAPz9Qvbtabm2Ym2COw6AO54SYK\nWNO4\r\n=AQK3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","_from":".","_shasum":"86a7850f4f39c568eaa0dd0300ef374e17941cf4","engines":{"node":">=0.8 <=12"},"gitHead":"6c266c8ffc708697931844034954e5401060e53b","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"2.15.12","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"bluebird":"^3.5.2","bitsyntax":"~0.1.0","url-parse":"~1.4.3","safe-buffer":"~5.1.2","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.6.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.5.6_1589440354483_0.7381409694522896","host":"s3://npm-registry-packages"}},"0.5.3":{"name":"amqplib","version":"0.5.3","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.5.3","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"7ccfc85d12ee7cd3c6dc861bb07f0648ec3d7193","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.5.3.tgz","fileCount":65,"integrity":"sha512-ZOdUhMxcF+u62rPI+hMtU1NBXSDFQ3eCJJrenamtdQ7YYwh7RZJHOIM1gonVbZ5PyVdYH4xqBPje9OYqk7fnqw==","signatures":[{"sig":"MEYCIQCnRu/k3Fta/Xg47knT/Vi79e0NW95ckndDpNx9upmDYwIhANTCToJyV2eT/MNxEOf0LKxn1EXqUX1j8dtxkoMrRNCz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":374004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBE6gCRA9TVsSAnZWagAAaskP/iiwYildFRfmyxBWDSm0\nnOGqfTLp7yuYbSFzTPaqwtcx8bAFuCyA7M/0TlVyrLwI5Qm7lkbyDR2EFrW2\ntndeR5ZYSb9RuoPi7zlxS1Ob9QPc65hK5JXuVC0gwq5dN1aIre6E6wsGn5PN\nRHRMZsgOJBsY+WN4Wfj/aVRlGWcGYdOQaoCSTDEfXDdtbzxW4/3WCnHKWcg4\nLPRnPAR/Ac7wUmiccP9SBL7PcN3nvZRxZVKghlVvz0LUrS27p0ptGnet5Uyo\nvUyLeN/dzeczjOgFzkeFZ5njERiT3jozhgxHh6etFT5qsSF8bXtnMmC5TWOU\nBWQrPOxdZswWNLnvAPtmOY9yLU0pYQ9uY2OGH/6AChPxqSaABLtQ5QcMhRra\ngKA0tq/CuD2f6DlHAAIVhyrGheau9MRWZJ+SpbxynLMEEEzkHiMT9fdumNUn\nB5uJeQnzr0skg9w0HQ5UYzKWB8aXqcv7Ml+ob49b69I7i3e9M/WZK3hnop1x\nW/gSvfCGxakJASfn2lviNUbXLJj1myP3EZTdZIRCcKk+KcFlu+cC94wyh375\n/o5+lQ8Klk1cpOphmV4zhytcII4NLGcDT4Yr9qFKtKVapnQz/uesf6XGSuih\ngIAYxqA/EI4quLsFfn1xSWXYrIGzRBuvFrLBpQZyYlqn7xvKxTjZlooPKLUb\nkUqK\r\n=RQeS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","engines":{"node":">=0.8 <=9"},"gitHead":"c28c176dd74565c73957eebf00932a892d2aa840","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"6.4.1","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"8.9.1","dependencies":{"bluebird":"^3.5.2","bitsyntax":"~0.1.0","url-parse":"~1.4.3","safe-buffer":"~5.1.2","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.6.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.5.3_1543786143313_0.24922878211377086","host":"s3://npm-registry-packages"}},"0.7.1":{"name":"amqplib","version":"0.7.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.7.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"1ac60934cbddb445bdc9c648310a0d232a53b3af","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.7.1.tgz","fileCount":68,"integrity":"sha512-KePK3tTOLGU4emTo+PwSDMbc123jrxo13FpRpim1LzJoSlQrIBB2/kMeCC40jK/Zb0olHGaABjLqXDsdK46iLA==","signatures":[{"sig":"MEYCIQDbrERWTz/wjXN5dl3UwoUzlR7/z9Zn3H8fp0zoJOBoNwIhAMpJ8eMuDATO/VXvFrPk4K8TBQMwcdusfo8lCP9GgNp5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":449192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgRdsoCRA9TVsSAnZWagAA+MgP/AigaN5KcFUsBxufNEL5\nm7n0NkY9D6HNT3B7Mv8SNPfloAlLB6oXVXjEtXSCJzexJXaOt0+3szSkg62e\nWHxkBBmL75U88vwYQuQ37B4EmNwf102MnUyYrFiAIPFhs8Yo07/py7nNqRWR\nSZThTGnY30ouvix0zEcqjrek0ZbCF0IZTj9H7Ru9fEGvsPDhrbL7wGBg7cCY\ngmTxdQu+ysbtioCrXi+zNyWvsXpE7Kfj79gYU4iuVV6aJylMs/5zStHq0K5b\noghPiAaJNHvv0fjIevBDdNBkykMNJOMEJzj7VGBgz/YKBnwuk6fqBshYBDTs\nEUbCMsxUTiJUyEKWX7gbAPf5LWAnkWrmF73CEZslBDzK5PqaYGdRarAuN9Qs\nf1QCET5K/iQSZMu+hxZwqrMk+ilOLsXzFi4NuhVqnHT00gTyUyr1bjbM9nsO\nOVmeQput5kLxLNx16FX4w3P7SSV6hqSTTW7BSY5j4Fn0BTH+5qFS9fBOKddC\nmdJ9EloaClw2jlwkqscZTHjv5/yDhUb6XuOZZ3Zg4AMV2fq1RFDaT9MOFf3X\n9JLHiYvUDcZg+v7ueNGx90U1FTtj1K1mX9gm1teuA1qjk8Achdvq40TPObIw\nX1ITjvh4Y6Q0TN7KLIZIZTpCK3zxOpOO7HF7/AjlUJt0HlCTHQ+wlnByQDD9\nLekq\r\n=BWxZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","_from":".","_shasum":"1ac60934cbddb445bdc9c648310a0d232a53b3af","engines":{"node":">=0.8 <=15"},"gitHead":"32aa2025a20200d0df861d5520bb263ba7b10523","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"2.15.12","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"bluebird":"^3.7.2","bitsyntax":"~0.1.0","url-parse":"~1.5.1","safe-buffer":"~5.2.1","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.7.1_1615190823512_0.14578457256946886","host":"s3://npm-registry-packages"}},"0.8.0":{"name":"amqplib","version":"0.8.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.8.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"088d10bc61cc5ac5a49ac72033c7ac66c23aeb61","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.8.0.tgz","fileCount":68,"integrity":"sha512-icU+a4kkq4Y1PS4NNi+YPDMwdlbFcZ1EZTQT2nigW3fvOb6AOgUQ9+Mk4ue0Zu5cBg/XpDzB40oH10ysrk2dmA==","signatures":[{"sig":"MEUCICiMkCTS2yW5w20EeqeQbwiYsKKsOCaKSiFNBT9t7z9lAiEApafnagHLQg2JRnSM4vboNcwlPTa3bgrkCs/+mh97YH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":449555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpNPnCRA9TVsSAnZWagAAdMkQAIfFAg1v3u/YePj/+Jwo\nhEs8cFVxE1Z/faAwFC6ataui1T5/lQZQpg/UL9m9WPngxk+sEkUIhA/qD8p0\nXFDtb5g7WCB65XJoavZrdXtApyT4LT/yi8uMM+EEnNS+S+kmKqjTztK7gDJA\n7jXTB1lMH1bKypX1dUBWkF9xHprypP82guAGlQKd2G6I3R+GOO1sN6yT5QnQ\nS+sARIsnVdscthMB9YsXkUGvwNpDGD5G8OsDGBjsngVyPDqEDjEKvcTj0rUA\nbva6PgbssbGBbqVKm2cqZs5p1NdkeEF4uSG6CUaK6XanoWicyuhpILUp4lWq\nV/oUh8lju1nJG+yPMo9wWAix+aSzeBnCGp2f8ml1mdde1NB3elfLQf3Q1WWL\n6Vd9PNJQKwqWbFVVhZqAnUeFf3PJhOzkRy/TKdWo13cWZU7/re7PiPxoe+D/\nxSe7zWusqhAzSzVJWM28LHWaeDXwSYy+Dri+CSiTP8ymHSgxe1YoEvzf8mpt\ncwXnYAxcIfJouZsIeqKR8s/dv5z+UzlLm2Ns13qSwntFjveykKHrLBkojVCA\nwxLBrD+XXtNArQeCP1691AiXdrkf8K8jC7jtI23R68Xea5mOfMXgYG/H3NBE\nsGV/Ps9WKtJ/64TpuW5WZRebTzVUeXLN1nuP182hsNL0TJJ7OnN7ckL3OPaq\nKKuu\r\n=Anae\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","_from":".","_shasum":"088d10bc61cc5ac5a49ac72033c7ac66c23aeb61","engines":{"node":">=10"},"gitHead":"1b327eba45df6f417e598715aa9010f76407fc29","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"2.15.12","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"bluebird":"^3.7.2","bitsyntax":"~0.1.0","url-parse":"~1.5.1","safe-buffer":"~5.2.1","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.8.0_1621414887345_0.8294181736828181","host":"s3://npm-registry-packages"}},"0.5.4":{"name":"amqplib","version":"0.5.4","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.5.4","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"3fa9f1ec569f7da97caa579d51187ee75758ea51","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.5.4.tgz","fileCount":67,"integrity":"sha512-kl7tAGUV57f67pUcSZ12NbfbzaeejQxab0antU3U7gMG3/LCqzM5bqpzYKEsgwfHRDjDyY98Wmyk2dU4qQhffg==","signatures":[{"sig":"MEYCIQDxy/hB3dNAvYR7516wwSOGDJW9BrPEnXPsirMvAbb68AIhAOhDapNTVp2USPVWGnAbzUO8C/5++SpC4lf1+6XBWA3O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":284113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdP0P9CRA9TVsSAnZWagAAHHsP/jtfsVi+q4059aFDGoyK\nwdmZUN5UIbUEvzJwu07q9Qo1XCwWpJP+glcmQA72X3x5xxPB8xJtTb9aVXrV\nMtFKzFOcEh/8RdUDuintB6+/TJAojwPdjeQd5XdAsAwidakUoaQvhrlcNafQ\nKaOz8jnwoHo39bWjCVbvXrG1xG5ArQxLmP4vlXs5TQ1j9rcCuL2jZK/UdrhK\nss2YTnh2kfXhBFV0fuF+xlCyfggteeJX2GOn7jp93eE4NkC404IguF/6Dkq2\nAnm96XkpMxwODexjvzA+MXw612pVZoUa0DasCoFANMncY9PE/edQVHB6O94K\nBUL4ytDW6wdNuSk1TM4fCBrycbGOq6TtWTQgEF4MyDCQTLlv1JNUImdMVU0r\n//3RbP6z9FlDvto4PIDwfP9NENgL0SrUzZn9loRBN1sXlobqBsJbEZgvJX2v\nUNxm2pfdJNEz0waB1kbuU0kIaPne09qfUqDvbNwRkkAANDDBcfB3Ba+YNHbp\nN1KZgvkHyBJgpLWIEfITbDt5gYWh413S2pKo64sMhOsSOo5knfkuCPdqASbo\nu+SZhxWIS/lJxjBVP6TEIIjyJvFNHmWtvIaqfxPc9M3mSEQ0q8M38iuiopec\nGUyGVgVs0RVvlyWeKso9v8WNTJmIisYQ6F5TV/QnWp1b9/3MZyAkYGp9UQOt\nv7gk\r\n=0qiw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","_from":".","_shasum":"3fa9f1ec569f7da97caa579d51187ee75758ea51","engines":{"node":">=0.8 <=12"},"gitHead":"524e707042fbbfd34ae29a559326945546463b92","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"deprecated":"See github.com/squaremo/amqp.node/issues/534","repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"2.15.12","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"11.1.0","dependencies":{"bluebird":"^3.5.2","bitsyntax":"~0.1.0","url-parse":"~1.4.3","safe-buffer":"~5.1.2","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^3.5.3","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.6.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.5.4_1564427260983_0.3743646858867635","host":"s3://npm-registry-packages"}},"0.9.0":{"name":"amqplib","version":"0.9.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.9.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"b2b8705bf8ca3579caef244f01a30a568512f0fd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.9.0.tgz","fileCount":67,"integrity":"sha512-emwSdJElmSp52JIKehjLNimKqbZcGUBGdcqST9fll+C/Uss8fWoGyyWlwt20f5lD+SDdozoc4WhF3uDCUOL2ww==","signatures":[{"sig":"MEUCICExu4NMJSpb3AUjQYJHYEbgZmoYoH28QCObjygr+DbjAiEAlpyG7lSeZmHO5Cic6yAXwKWbh+AKeRCs2IlkGvZr1kw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":399915,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieXsfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrMcg/9Gz6TmKe2JjMKEMdxG1dJ3ve9bAJwHJm51pthtK/spm7njLCf\r\n6cO0145b3QRRKmLTikXuNDp6Usq8NIVf9UwXWJ4UYhavx/oReWJaxUmTCZUI\r\n+9aYGv0VG5a3nffYI/sXNNaBrnV6dc/mpsfJsOM1UwzIPBwW+Pe1sCfdVFPx\r\nBMEzTkGRX/TxJCdQBZ+XimCl4FuqaYc1PT0cmZJ2JRYb3wbqqVwY9FD2jRR8\r\n5JzqNhnucZZwPth3j/TvRupu4X2vILy156Pe7aoUXfJSSUQ7doMXcjCgQAYz\r\n0maL+jqwo1vTJ2hPBrVcTjc9jfGEmVYCPonFMVPTNSES09qJrRHgrpvCfpr2\r\nWTu9PRg3xkuiIhH7O5w2WuDek8XR3vnHXdqezn0CooYaCxNt2W4XeIfGYFNu\r\nAXhboANZb1ZCtmTwlAmEj28oHeXFZWDw/fATd36Z1tA/GZt/mgnJwLKWqfii\r\nZSoiYSApxDosN8LrIi+SMxyihp4tj46iqhgB8ly8ZW0jj7s1lQUOeGr5O8H1\r\nR/3NkxLv28esdOvrx0q4FWrj5Mmo6z0HRYgt0gwApTBvHY/Jrl+xxinIJO1z\r\n1Y7Hn4a81yf9K9r0HHZQ8Y5A7aVqd17YR4m0MecZzzspPRG/+61hzTQklly8\r\nLKnItoTtT+OyyVr3qUXUuW248hUkXvfJvtQ=\r\n=i/wW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"544bb5eaf463506921f7d114c08f4580817c3b4b","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"7.6.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"10.23.1","dependencies":{"bluebird":"^3.7.2","bitsyntax":"~0.1.0","url-parse":"~1.5.10","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.9.0_1652128543578_0.25290300915560304","host":"s3://npm-registry-packages"}},"0.0.2":{"name":"amqplib","version":"0.0.2","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.0.2","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"b2053fdfb6abe941cabd00d2f5d630eea803f70d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.0.2.tgz","integrity":"sha512-psEofaGS1DAutrryuxbT9nJmoivX63q82s7hfvKbYDQdSwW4DJ0b/tgP6Z8lLbNPXsNk4ig4LZcHlsNDWDVfqQ==","signatures":[{"sig":"MEYCIQCvtcVMi/ofrvaVVX3GK/3aLMP3nkLenBc8sSsAC+nHKQIhAKc9PhQHKSKE9zI97oyevKbm5dCNR06HvYbsJrC3bh+r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/channel_api.js","_from":".","engines":{"node":"0.8 || 0.10"},"scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.3.1","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~2.1","bitsyntax":"0.0.2","readable-stream":"1.x >=1.0.2","buffer-more-ints":"0.0.1"},"devDependencies":{"mocha":"~1","claire":"0.4.1"}},"0.1.1":{"name":"amqplib","version":"0.1.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.1.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"9a90cb239a3153a0bd3f67b29199951604432481","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.1.1.tgz","integrity":"sha512-J7iv2RXbueswwgqtmrWa+/+NHGc85kvPmfG5doLAdFupu4h8QzqiUrtFWr0bQPnaD3bh6cnT4IlocOGY+0D0oQ==","signatures":[{"sig":"MEUCID5l9jTBaoM4AXHCFXrQspZ7VTdRrBwnYUqXxfv5HRNiAiEA3l3TXGicuMF/On1cgkbL866vUlM3S9IUqTBjQZdCIRY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11"},"scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.3.11","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~2.1","bitsyntax":"0.0.3","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.2.0":{"name":"amqplib","version":"0.2.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.2.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"664281952c4f1fd9748510fcfb2a5564baaaf5be","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.2.0.tgz","integrity":"sha512-sPQRjwKKqjZJPNKyeP+G29ftMA0HomcYMEguS8CEAzT120EL1hxMYDK0Pi/SToyazQvwpnHeV+m6HBor4bPb/w==","signatures":[{"sig":"MEUCIQCJw6eeP5/3F4Xpwbk/I1JSc3kma7JBlcFlpmndTAhtSQIgHvt8so0rlLIAyIqDZIbIf4LycXp3yb5iE3+7XPXLgwo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11"},"scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.3.24","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~2.1","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.1.2":{"name":"amqplib","version":"0.1.2","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.1.2","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"4f796dd9524eb36dfad37c1f698626b097a64d97","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.1.2.tgz","integrity":"sha512-VXHcKMnkuNn1OQL586iabr9LmNMJQTVan9ny5mo0r6U6lYz++sWKq8pZ/8fkCwynBeqhldmrFr99kT/O5KBRjg==","signatures":[{"sig":"MEUCIGrFzgD7yLBMkCtQuoPWdVP9NcC3whB2iMqTm2+I5ZBIAiEAyzETkjU+a9Y8G39kGbVAje5eUIVA73u5I/xkt9xDfgQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11"},"scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.3.24","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~2.1","bitsyntax":"0.0.3","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.2.1":{"name":"amqplib","version":"0.2.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.2.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"576267a01302a75763600750767fc1565fe46e8a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.2.1.tgz","integrity":"sha512-G28J13FLT/5mzLl7GmbYlsJjfOFAentQ24Bza+J3pKXtdq4rCPuirG5J0/Kyr6fDOxEPqr3CKtNLAmyt8ByJTw==","signatures":[{"sig":"MEQCIEsRl8Apv8qgpvMFs4O4TBzmsyCe38pxZvLRYFWPvLaMAiBKX74rgo4M7VIpYshjxlTEHV1Q1PygB24ffNraROK3PQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"576267a01302a75763600750767fc1565fe46e8a","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11"},"gitHead":"0c5fc5cd2dd15568ef3983f743af258655e1045a","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.4.13","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~3.2.3","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.3.0":{"name":"amqplib","version":"0.3.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.3.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"1b5dafebac66b36e4afd9dc815766bd2dd400b3d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.3.0.tgz","integrity":"sha512-vdwyORJsIxT145mXt2+xRkoF/X+QAg4b3y+B8G1aUQAyV3Iktb67fr91V8+fy6EalqsTZ3J7Qk9VcmXeA1Sy9Q==","signatures":[{"sig":"MEUCIQDeUura49duMDPdOCTJXA/DhVGxFUkq6rYrDS2BjrDE9wIgDnczB5g69olGpnb6GP32SRKBA7ntVswkPnE1nSeVg8w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","_shasum":"1b5dafebac66b36e4afd9dc815766bd2dd400b3d","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11"},"gitHead":"21922d55a548d54b70667e3d0c6c933266edfb94","scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.4.13","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~3.2.3","bitsyntax":"~0.0.4","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.0.1":{"name":"amqplib","version":"0.0.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MPL 2.0","_id":"amqplib@0.0.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","dist":{"shasum":"cfcc77fefb668555594677c98836fefa491c30de","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.0.1.tgz","integrity":"sha512-K5u39TJ/wfurcZyo6gnisG7kAW15V5Ol5+X7Yjkarq9G44HJ8169bxu/9J4989HENKOlI2Ju/tmV7TSGmSL6mw==","signatures":[{"sig":"MEYCIQDgjKCLL7r89JlWvOuuNAoXGWBh5M/eqxRYvLpqsLr9BwIhAKwC07z9DRLY66YilcaZxVW6ljRyophX0s4lP/F0DJYP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/channel_api.js","_from":".","engines":{"node":"0.8 || 0.10"},"scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.2.18","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~2.1","bitsyntax":"0.0.2","readable-stream":"1.x >=1.0.2","buffer-more-ints":"0.0.1"},"devDependencies":{"mocha":"~1","claire":"0.4.1"}},"0.1.0":{"name":"amqplib","version":"0.1.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.1.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"}],"homepage":"http://squaremo.github.io/amqp.node/","bugs":{"url":"https://github.com/squaremo/amqp.node/issues"},"dist":{"shasum":"a60a1c137c1e5224e9d147019b3909a7b0e8ef05","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.1.0.tgz","integrity":"sha512-sT8Y3ygucd/LBAq+2yr7xmCkVmJJvwAHh3qzEaWqpL7ZsOEXVZ2p5WsHHavIDjGE7CEEg/37hf1qaA9FYatMiA==","signatures":[{"sig":"MEUCIH4Zv5+Y89KauhOz2V77uBcJH2qvoV9q6mEWbfdfqvKcAiEAvb7ZEMO+tDw7zGdZt88PiKykK3BeG9C6exnrMIzYtQE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./channel_api.js","_from":".","engines":{"node":"0.8 || 0.9 || 0.10 || 0.11"},"scripts":{"test":"make test","prepublish":"make"},"_npmUser":{"name":"squaremo","email":"mikeb@squaremobius.net"},"repository":{"url":"https://github.com/squaremo/amqp.node.git","type":"git"},"_npmVersion":"1.3.1","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"dependencies":{"when":"~2.1","bitsyntax":"0.0.3","readable-stream":"1.x >=1.1.9","buffer-more-ints":"0.0.2"},"devDependencies":{"mocha":"~1","claire":"0.4.1","istanbul":"0.1.x","uglify-js":"2.4.x"}},"0.10.0":{"name":"amqplib","version":"0.10.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"766d696f8ceae097ee9eb73e6796999e5d40a1db","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.0.tgz","fileCount":67,"integrity":"sha512-UueEnRGY6upiSvGsSYM22Woa1SeSukqYtqgYW4Gj8gHvbf5BRhhYRqf3kQ8aSUYYffTOZi6SeOVW2eOXt0hpPA==","signatures":[{"sig":"MEYCIQDhOfHnJit/ha0UJ9rivKPnug+eL1qt8unbKdwB9K1apgIhAISPbEfwGfLUhvFOaO7Od4TO6NwC9WIX+dlEOeQ177rQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":400986,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimLg+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpG1g//XnNNuZ0h5cf/nXa4XTCwhFLpH3NQrq9omMrOLj88kKYdyW57\r\nEOOYB2wjp5AVrtubphZBvVYGwm9YYXxb0aBqPlvY58CKjJ3KOsrChMtZYlTd\r\nh6L+Ek8Q8Q06BT4y+wfwLaT4gZWxm191xb4Xy5kvnRcC53kLBXKOPQTofqJy\r\nHftYEsKv9AMS/AWW8nw+B/iGlW1zkXpcHGnKTnrXY5n3U6w5g2+JT9ZoRCwW\r\nOA6LS9JCdSoW6I/tIZexXKjxuNj7+qh2JD0SEkpugMtwu/aZy0yXR3heARwt\r\na7aTikcyxM0X3jHJVK2AROnVMoNuzkvGEkXBeURNDlEzAHRWTiQhobSI7CE4\r\ngUvM+WhV7S+h3XhfoKFC3+r1X8kFG6XAA4tKWCCuUpKbzGayGSVroERVnjYE\r\nE/miN7KWw+6pWtShEv+5DEAeumq26POjCd9KJaf9t9G5Np17AoEaokbo3M2T\r\nXirnG9L8I5z0glj5LCqvFz4PdYTVriblxDNj40R6BbUcT0rZH40kAuOGFMvs\r\n6Xde4i3Nh2R4A1r9sVSnvQXoaCrLx1AVgyyVLhj58dzQFgdMkYy/A6uGTLXF\r\n+WH9Be9Wno+FHWLBgQ4cDDWc9Hn5VNLP+hhWOrOkcf72tgfBqAZ+7v9OUS++\r\nzEUl+YfP4NeaW5/BqQDQW/n20Fp0lTr9nGY=\r\n=b7z7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"fd93de3b048e976b1231b42e11b1dba7f1c3a4a8","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"6.14.16","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"14.19.0","dependencies":{"bitsyntax":"~0.1.0","url-parse":"~1.5.10","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.0_1654175806407_0.8299247152962492","host":"s3://npm-registry-packages"}},"0.10.8":{"name":"amqplib","version":"0.10.8","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.8","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"87f5173df65f17008ad5dd0736174724b8211b11","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.8.tgz","fileCount":76,"integrity":"sha512-Tfn1O9sFgAP8DqeMEpt2IacsVTENBpblB3SqLdn0jK2AeX8iyCvbptBc8lyATT9bQ31MsjVwUSQ1g8f4jHOUfw==","signatures":[{"sig":"MEUCIE1+JHKln1ugRq09N7PVPS7bsJYzYLB2Y62Anc835iGUAiEA18amDs55uuseE9nBIXOJ7EOUMWsIfB0nV0PcFw4MAIw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":452706},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"28f1fd02170cc981dd69666dcc9f901c47a54ef2","scripts":{"test":"make test"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"10.2.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.19.0","dependencies":{"url-parse":"~1.5.10","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.8_1746359922021_0.09337141270322902","host":"s3://npm-registry-packages-npm-production"}},"0.10.7":{"name":"amqplib","version":"0.10.7","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.7","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"d28586805169bedb03a2efe6e09a3e43148eaa0f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.7.tgz","fileCount":76,"integrity":"sha512-7xPSYKSX2kj/bT6iHZ3MlctzxdCW1Ds9xyN0EmuRi2DZxHztwwoG1YkZrgmLyuPNjfxlRiMdWJPQscmoa3Vgdg==","signatures":[{"sig":"MEUCIDTg0/9aw41ZXqCc+2/09+RG11WLJwGusUBXCYqFAi5qAiEAzaViC5jCtyM3SIUH8XJ+h1vFFW1tqRDkDiyo8t7oQNo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":451871},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"46e95a36d62fd3c83ea1591e1410e94bea060284","scripts":{"test":"make test"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"10.2.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.19.0","dependencies":{"url-parse":"~1.5.10","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.7_1743271160353_0.8492657892399083","host":"s3://npm-registry-packages-npm-production"}},"0.10.6":{"name":"amqplib","version":"0.10.6","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.6","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"b96f0e06e0c1357eba7da91c0f08ce6ee1a4ad95","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.6.tgz","fileCount":76,"integrity":"sha512-TGZJ/Q6PO0ns/a72zw/d3FI0ywqY7oMqTbRzji2/AsoA/1frIhIOuVoqZMapDt6XFppbbdT0NEzd9dYwmKI0rQ==","signatures":[{"sig":"MEUCICGFvBwB8HzKo0BELJLT8Ze/qCNLSYm/3X4OjQRWEWqEAiEAuxbi8Droo+G7rsCjGaS9ZXEAEy9gci7tJpwLcxzyMiY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":450800},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"dd56742d8a8a200213720bcef7d9a74590f1e5a2","scripts":{"test":"make test"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"10.2.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.19.0","dependencies":{"url-parse":"~1.5.10","buffer-more-ints":"~1.0.0","@acuminous/bitsyntax":"^0.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.6_1743268691121_0.19365475978033242","host":"s3://npm-registry-packages-npm-production"}},"0.10.5":{"name":"amqplib","version":"0.10.5","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.5","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"2b217a3c56f2935ee2e36206bfd7e25ee866491f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.5.tgz","fileCount":76,"integrity":"sha512-Dx5zmy0Ur+Q7LPPdhz+jx5IzmJBoHd15tOeAfQ8SuvEtyPJ20hBemhOBA4b1WeORCRa0ENM/kHCzmem1w/zHvQ==","signatures":[{"sig":"MEYCIQDOJqiAPK/iM4ZVzJhGaQ3ofJbuutfYlmqHfPeubysuWAIhAPmv580kKv/at0UEI0idyCXOv6NFm+IG8PwI6q55w8Uy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":448506},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"d2af467b307d4c5547712c314e616a1197321a48","scripts":{"test":"make test"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"10.2.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"20.10.0","dependencies":{"url-parse":"~1.5.10","buffer-more-ints":"~1.0.0","@acuminous/bitsyntax":"^0.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.5_1732448426897_0.5949655317797864","host":"s3://npm-registry-packages"}},"0.10.4":{"name":"amqplib","version":"0.10.4","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.4","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"4058c775830c908267dc198969015e0e8d280e70","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.4.tgz","fileCount":74,"integrity":"sha512-DMZ4eCEjAVdX1II2TfIUpJhfKAuoCeDIo/YyETbfAqehHTXxxs7WOOd+N1Xxr4cKhx12y23zk8/os98FxlZHrw==","signatures":[{"sig":"MEYCIQCsWFTrvyIQ8LIQ06zStsgPS+f/3i4MznKawn1KzsdybwIhAJRIRQtRnmt+Yno/Y0aNWvu/PNzceMURZSRTB1clJdT5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":417196},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"d93663a76957af4a91633ffda197486b7d54025f","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"10.2.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.19.0","dependencies":{"url-parse":"~1.5.10","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0","@acuminous/bitsyntax":"^0.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.4_1712859454637_0.4628063017056079","host":"s3://npm-registry-packages"}},"0.10.3":{"name":"amqplib","version":"0.10.3","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.3","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"e186a2f74521eb55ec54db6d25ae82c29c1f911a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.3.tgz","fileCount":68,"integrity":"sha512-UHmuSa7n8vVW/a5HGh2nFPqAEr8+cD4dEZ6u9GjP91nHfr1a54RyAKyra7Sb5NH7NBKOUlyQSMXIp0qAixKexw==","signatures":[{"sig":"MEQCIDZQQ1gGKbNWalXs7jcuP57P2NCQRXpWxvahZvAfCO7EAiA7k+Tx4orbUhqQvKMFvdZcOlHur+ttO65Qfuc+l7Ea0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEFTpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrGsQ/+IQ9+ZDPgFr38Q3QmccP1ErM8yKUa0SAhnRyFFVJ5Fm+7N6UB\r\nVYaRiKJhMEBzZXmqnJhioiIrp8cz5fdQzPgTi7TtYNytyTx1ib4CY7uCcYjq\r\nNJxFtnDB7z7wuN/TtB29ug5t84FNtlphXBKL6t36mM0zHjWHuRvOQxS87E3O\r\n6OlmCOP4P9+ET4BdhEKBYMBldrAsfoLlSbCgRSSR39X7RHBznPC+lMBGa+Mf\r\nPMC8XNfJ5aKqOt87E59DnyznRWDvDnGb8Cl4+n8MLRJQYkhGE+cWOY3rmHbv\r\nZ7Kzx/za/0amhKxv2AW8UgOS/JWT0XjtOf8m70DFvkiwOyaZ2ln3a3+Okomv\r\nUrx+WJvCcMu/B3QD48TC83m1LmR2UuoPxv4aj7oHIxugvUIWf07awjmJ+f4x\r\npMf40CKbWhDkVgz0nUBEaLHlD8P6TcFDFdCRnFFX+rU1kHWZGsGSlDNEOQYA\r\n+N8K/bqcBNuCfT119wAAuX+W++Ly6AxOOqOvz+9q1h1qa76bBxwzulXHYruv\r\nroZgK2qfROQdQ/anBEq7Ul1gSktenhJBSnC1o5Min9OLn2cermZGsvi0uLvL\r\nZ9KzVF4cZTzgOT8FEH3giUA3X3GLbIZ/AAw3khd5lqjfr+ZYSZ5NGIzZ9Q3u\r\nPvBIDnoTVMoPW2FDZfipezB1GmA82Ru18Cc=\r\n=Ao/s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"7cba4c2bea21684c5ecc53aaf8d0e72c329dc5d3","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"8.11.0","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.3.0","dependencies":{"url-parse":"~1.5.10","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0","@acuminous/bitsyntax":"^0.1.2"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.3_1662014697637_0.8282721644905762","host":"s3://npm-registry-packages"}},"0.10.2":{"name":"amqplib","version":"0.10.2","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.2","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"04ec8cbdcdf526dc36a4e46fb0591d449dca3372","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.2.tgz","fileCount":67,"integrity":"sha512-l8U1thHT5QRNJF6Fv6ZveMeHV/bl+3UROQBn/cLOwRfeV3F0syZxkjnumJCG4NMvqfy9wT7mCgwpPSq2fApRpA==","signatures":[{"sig":"MEQCICJWhIx+QdOGqYQivtt7Oza61yhbFrN+xp8QxmyWVaTXAiBCcnX7huL1XXaTeIMMMSgaplHd3cquN6ccKCCCFm4leA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":401989,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi733UACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoAEg//XNcyqYBCoPYz9O4qlCwgseyqOGfXVF3N+LUKEtqusG9qUZbk\r\nbSY6Lp77bOfvsW/4zcqmrdFIID/RaQSC/3LRokoh4yeW8CnPZiab1BXhxMJs\r\nxyN0ChkKAXyhZmCDZJCRVcktEGABKxdig4hbogcFjOCp6871/PZLl2hz4PkG\r\n0AWiE54ysVlq9YreMXw/gHx499EfDPMTuC7cxoik18PsTDuEF80vHgCVyYHU\r\n6tpe7E14PQDhQG/AcnzP717NBi8lOcoOZrM7J0Y2WBfmFHCoAWag6JhK5bTG\r\nqFnY8Rupvt41bXJVquOnopy94Trsew5/AcAdVNNC2i/ylq2ZIYlsG1rHg50v\r\nf8+vOu7TxgA5YCbM1RMEOML/7JnsuVnRdPgyxhedNLOAfO16H6u3/qlUG5x+\r\nXO9DFL673XBmRQqU86isgcTI4tVL0MFJNgoxqrcwPNG8t4zshKh5TfUCqAog\r\nhGP6tMsx/N2bN2aug71VAuH8VNyfKr1gbF/KNULRVpkiGzYj7gSNUuFM37uf\r\nuJ6zXJHB+m7na5urwKD7oeXTg+tlWfcKfK3DG7oX2rA9svxpnmolfEHZgPgB\r\nuJ3NnmDCjJm0U0TMP8a2pJ3oBVHqQLlOcvzhikPW5c5/zFsrkNeeEpTcM8b2\r\nA6FcETp9eCBO7U7dTxX8hSJ9OxrsuXfP9HI=\r\n=+WA3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"62433e5009aa59979b7cf06058673eb2b9f45689","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"8.11.0","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.3.0","dependencies":{"bitsyntax":"~0.1.0","url-parse":"~1.5.10","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.2_1659862484001_0.06678699307004154","host":"s3://npm-registry-packages"}},"0.10.1":{"name":"amqplib","version":"0.10.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"5c6d3803e5f25cca72d1df5bddafcee73289cf12","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.1.tgz","fileCount":67,"integrity":"sha512-Hs33MdtFmJ2WKQT9SBtrlet3aUNzMzZA/FF6p3NGGo7Fp/BVD4X3Po7bQxAA7uE0MmXPZ8EschLMbN+CjGx4dg==","signatures":[{"sig":"MEUCIEyM41laG6iinHAVWmJziR1rxyfMAHOJkI7fSG/MW1jfAiEAsMNzRkGT92YbsmM7GUR2zX3dpdY8T+ZV4zIMI+RL6KA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":401268,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4FAIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp9WA/8C88gD3nGQJJC0WZOne44ILwatdVNPW09V2o/BXARoGLJiqe3\r\nLR0jt5geXbRQZSpBlh+4Fn+d56AfBQ08d6+3VmGcvBsDlLRxkK++tP/IQKZp\r\nAQAvTN0OEl+BHuPcAaA/0tWIyqiqPUGwhDEZcE/kFABT0WtiFqi4PKjlKg8X\r\nzPKsRv1KyThACwlXUNsy22Yk4+2bh0wY8iTpLFnhVi5lHmOlVZxVm2iMwIPR\r\nbnI33IdkTp2YIUBmuA+u+md+3K4M1/PF1Bcq5yyQSLpE17/s4JdUJ6eXp5hw\r\ndLXNZwv/bv7y2bHz80EXwAeAo8PP8UATnqqtgfwUFhOCUY6I6bA8BjKL9xxA\r\nTtssSBzQmWKRz4tMrj+YYdCjuGacB9wNUXml7YSWnm6P1igdsarmqgXPkvsR\r\npn/bS1WsZtqqiMd0AswpQyB778WgXElYogFyS509AG/StchGVB9wKL3bn0/Y\r\nF9bCPZ09vZbXbEKDOCLhis2LHqRyXH+pPZm6U/htHWFTXSk+HaVeBDwh5Q/u\r\nu5kqSmnpD90hVkUGzclcPmqrhP+CPK7mjb04stOQGCYxGi1zzjcj1CPtInxw\r\ne3geS8GibApgWi8/B7rOYKZLW66t7T690gHyrJF854rCJaeMx/G9NsfEoDUd\r\nbwWe5XcoMmIezWGkP0EBptrBgwSNIjIuISQ=\r\n=hGpo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"a98003ef1e4506571b501004d88cd6b6bbd42936","scripts":{"test":"make test","prepare":"make"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"8.11.0","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.3.0","dependencies":{"bitsyntax":"~0.1.0","url-parse":"~1.5.10","readable-stream":"1.x >=1.1.9","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.1_1658867719645_0.036459083726216646","host":"s3://npm-registry-packages"}},"0.10.9":{"name":"amqplib","version":"0.10.9","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@0.10.9","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"5b744c21d624f9307d0399e4d339b7354675831c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-0.10.9.tgz","fileCount":76,"integrity":"sha512-jwSftI4QjS3mizvnSnOrPGYiUnm1vI2OP1iXeOUz5pb74Ua0nbf6nPyyTzuiCLEE3fMpaJORXh2K/TQ08H5xGA==","signatures":[{"sig":"MEYCIQC90Gh91ZZKJyYt7jcV+4DnjqisVMS+Ro+LKhSYx23G6wIhAJMA4f4JnJFLxa816FfJUnTdVJsKVMibbzb8TzQmhG8A","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":452939},"main":"./channel_api.js","engines":{"node":">=10"},"gitHead":"00b0034d2670c79ccd085b171856c5473fa32be5","scripts":{"test":"make test"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"10.2.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"18.19.0","dependencies":{"url-parse":"~1.5.10","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^9.2.2","claire":"0.4.1","uglify-js":"2.8.x"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_0.10.9_1756139644323_0.5479873359783749","host":"s3://npm-registry-packages-npm-production"}},"1.0.3":{"name":"amqplib","homepage":"http://amqp-node.github.io/amqplib/","main":"./channel_api.js","version":"1.0.3","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","repository":{"type":"git","url":"git+https://github.com/amqp-node/amqplib.git"},"engines":{"node":">=18"},"dependencies":{"buffer-more-ints":"~1.0.0"},"devDependencies":{"@biomejs/biome":"^2.2.2","claire":"0.4.1","lefthook":"^1.12.3","uglify-js":"2.8.x"},"scripts":{"test":"make test","test:only":"node --test --test-only","format":"biome format . --write","lint":"biome lint --max-diagnostics=1000 ."},"keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","gitHead":"6a1e54feb285449554b4af6422ca1bc00415da9a","_id":"amqplib@1.0.3","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"_nodeVersion":"25.8.2","_npmVersion":"11.11.1","dist":{"integrity":"sha512-nsrXa59tvX4HPjPPW8JJGuBb/Db0MOq3DOhGdSbIY7bTsQDMV2fmF9c3i74g/8Gt9+QWyrxfEPppOOoV9lK1uQ==","shasum":"ff6d17799a03c1516bd94205759d2c2436d29e62","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-1.0.3.tgz","fileCount":83,"unpackedSize":469566,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIH6HJ9qa/XonEjRaFgkA5uKFispThpp9iMPyCvf6m+ibAiEAwmeT8fOrZmPH9W4X0rHa1Qof5ZFdwHi2eWOzxIwCc5Y="}]},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"directories":{},"maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/amqplib_1.0.3_1774976053208_0.7597963594481014"},"_hasShrinkwrap":false},"1.0.0":{"name":"amqplib","version":"1.0.0","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@1.0.0","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"e25b359de5ff07495f87f7d39ae524a2617c8b99","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-1.0.0.tgz","fileCount":83,"integrity":"sha512-5X72/6ttqVT9T0uw//e/yVh0711OFfPV7BlI1uMJW8z55NEllpZcRNfiLDVuFTNUllYAMYM8zeidYiO2O3XnAw==","signatures":[{"sig":"MEYCIQDvvujKvhazePBjQ1kDF346tRyoyAqdxvHcX20LeatsEwIhAMwjHJIQEVDMQxhQVMtGDPVYEpYo7NwZ8QLqgTKhvEnX","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":462320},"main":"./channel_api.js","engines":{"node":">=18"},"gitHead":"548857f7976938e3037a70e0c230c6ff9e79d1fc","scripts":{"lint":"biome lint --max-diagnostics=1000 .","test":"make test","format":"biome format . --write","test:only":"node --test --test-only"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"11.11.1","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"25.8.2","dependencies":{"url-parse":"~1.5.10","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"claire":"0.4.1","lefthook":"^1.12.3","uglify-js":"2.8.x","@biomejs/biome":"^2.2.2"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_1.0.0_1774712772896_0.46386470128071267","host":"s3://npm-registry-packages-npm-production"}},"1.0.1":{"name":"amqplib","version":"1.0.1","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@1.0.1","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"68b169be74cf3e0a34ee1b388fa589627152c64c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-1.0.1.tgz","fileCount":83,"integrity":"sha512-8cPGjtJhX03+oq4xXKkDiR1TC320/hN3Uw8SJB5asVM6wYJXFHzH7YFRk8iwza198Ep6d57F0gxOHghxj18V1Q==","signatures":[{"sig":"MEQCIBIdY5+AOBDRoxU3RqG0myhVMtlOpbGuzXLbRzOK825+AiAQTBIgEeYnNE+/VYVP9xiDN4Z0zeCCMDcKL2W3Y4KmZg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":461957},"main":"./channel_api.js","engines":{"node":">=18"},"gitHead":"e7d14cc029349bc3d0793d460eab005d16fe6248","scripts":{"lint":"biome lint --max-diagnostics=1000 .","test":"make test","format":"biome format . --write","test:only":"node --test --test-only"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"11.11.1","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"25.8.2","dependencies":{"url-parse":"~1.5.10","buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"claire":"0.4.1","lefthook":"^1.12.3","uglify-js":"2.8.x","@biomejs/biome":"^2.2.2"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_1.0.1_1774714212910_0.004980442872852819","host":"s3://npm-registry-packages-npm-production"}},"1.0.2":{"name":"amqplib","version":"1.0.2","keywords":["AMQP","AMQP 0-9-1","RabbitMQ"],"author":{"name":"Michael Bridgen","email":"mikeb@squaremobius.net"},"license":"MIT","_id":"amqplib@1.0.2","maintainers":[{"name":"squaremo","email":"mikeb@squaremobius.net"},{"name":"cressie176","email":"stephen.cresswell@gmail.com"}],"homepage":"http://amqp-node.github.io/amqplib/","bugs":{"url":"https://github.com/amqp-node/amqplib/issues"},"dist":{"shasum":"67cff98162b5e6c42c44548b1b23747dcc34fa00","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/amqplib/-/amqplib-1.0.2.tgz","fileCount":84,"integrity":"sha512-QFzavIs3FxXA9/PWOiY/j5Arr7KFT0b1TYYsq9f5PyZ3Dv5H5hQXTK3fZTUUzzOo2BF1o/Vk5bHAKzlL40LfDA==","signatures":[{"sig":"MEUCIQD/AuI6GjggcVXYFL42olP3hFFDK8AI3z1RlKDWdl2wYQIgHXYLK3NAkill10TZuthGTxR21CyebSNIW7+2U36pIKk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":467824},"main":"./channel_api.js","engines":{"node":">=18"},"gitHead":"b2cfaa2f635c84a4ec2e183a04764b7632fdf290","scripts":{"lint":"biome lint --max-diagnostics=1000 .","test":"make test","format":"biome format . --write","test:only":"node --test --test-only"},"_npmUser":{"name":"cressie176","email":"stephen.cresswell@gmail.com"},"repository":{"url":"git+https://github.com/amqp-node/amqplib.git","type":"git"},"_npmVersion":"11.11.1","description":"An AMQP 0-9-1 (e.g., RabbitMQ) library and client.","directories":{},"_nodeVersion":"25.8.2","dependencies":{"buffer-more-ints":"~1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"claire":"0.4.1","lefthook":"^1.12.3","uglify-js":"2.8.x","@biomejs/biome":"^2.2.2"},"_npmOperationalInternal":{"tmp":"tmp/amqplib_1.0.2_1774730020235_0.5879269780422569","host":"s3://npm-registry-packages-npm-production"}}},"name":"amqplib","time":{"0.4.2":"2016-06-07T08:11:17.345Z","0.5.1":"2016-11-12T14:46:58.509Z","0.6.0":"2020-07-15T08:13:57.277Z","0.5.2":"2017-11-11T23:14:58.997Z","0.7.0":"2021-02-22T14:31:10.139Z","0.1.3":"2014-02-27T16:45:20.901Z","0.3.1":"2015-02-17T06:35:30.390Z","0.4.0":"2015-09-16T23:26:22.156Z","0.3.2":"2015-03-25T09:46:31.019Z","0.4.1":"2016-02-05T06:08:43.818Z","0.5.0":"2016-11-01T23:04:06.154Z","0.5.5":"2019-07-30T07:59:09.442Z","0.9.1":"2022-05-22T04:37:41.637Z","0.5.6":"2020-05-14T07:12:34.623Z","0.5.3":"2018-12-02T21:29:03.453Z","0.7.1":"2021-03-08T08:07:03.701Z","0.8.0":"2021-05-19T09:01:27.611Z","0.5.4":"2019-07-29T19:07:41.123Z","0.9.0":"2022-05-09T20:35:43.736Z","0.0.2":"2013-08-07T10:03:03.124Z","0.1.1":"2013-11-28T21:44:55.834Z","0.2.0":"2014-06-03T13:13:27.442Z","0.1.2":"2014-02-17T12:07:22.891Z","0.2.1":"2014-08-07T20:36:54.763Z","0.3.0":"2014-10-21T08:31:17.811Z","0.0.1":"2013-06-21T23:33:56.623Z","0.1.0":"2013-10-10T22:23:29.448Z","0.10.0":"2022-06-02T13:16:46.569Z","modified":"2026-04-27T13:33:58.052Z","0.10.8":"2025-05-04T11:58:42.213Z","0.10.7":"2025-03-29T17:59:20.542Z","0.10.6":"2025-03-29T17:18:11.355Z","0.10.5":"2024-11-24T11:40:27.096Z","0.10.4":"2024-04-11T18:17:34.796Z","0.10.3":"2022-09-01T06:44:57.832Z","created":"2013-06-21T23:33:53.303Z","0.10.2":"2022-08-07T08:54:44.209Z","0.10.1":"2022-07-26T20:35:19.984Z","0.10.9":"2025-08-25T16:34:04.559Z","1.0.3":"2026-03-31T16:54:13.376Z","1.0.0":"2026-03-28T15:46:13.061Z","1.0.1":"2026-03-28T16:10:13.067Z","1.0.2":"2026-03-28T20:33:40.399Z"},"readmeFilename":"README.md","homepage":"http://amqp-node.github.io/amqplib/"}