{"maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"keywords":["leveldb","level","levelup","leveldown"],"dist-tags":{"latest":"7.0.0"},"description":"A mock abstract-leveldown implementation that queues operations while a real abstract-leveldown instance is being opened","readme":"# deferred-leveldown\n\n> A mock `abstract-leveldown` implementation that queues operations while a real `abstract-leveldown` instance is being opened.\n\n[![level badge][level-badge]](https://github.com/Level/awesome)\n[![npm](https://img.shields.io/npm/v/deferred-leveldown.svg)](https://www.npmjs.com/package/deferred-leveldown)\n[![Node version](https://img.shields.io/node/v/deferred-leveldown.svg)](https://www.npmjs.com/package/deferred-leveldown)\n[![Test](https://img.shields.io/github/workflow/status/Level/deferred-leveldown/Test?label=test)](https://github.com/Level/deferred-leveldown/actions/workflows/test.yml)\n[![Coverage](https://img.shields.io/codecov/c/github/Level/deferred-leveldown?label=&logo=codecov&logoColor=fff)](https://codecov.io/gh/Level/deferred-leveldown)\n[![Standard](https://img.shields.io/badge/standard-informational?logo=javascript&logoColor=fff)](https://standardjs.com)\n[![Common Changelog](https://common-changelog.org/badge.svg)](https://common-changelog.org)\n[![Donate](https://img.shields.io/badge/donate-orange?logo=open-collective&logoColor=fff)](https://opencollective.com/level)\n\n## Usage\n\n_If you are upgrading: please see [UPGRADING.md](UPGRADING.md)._\n\n`deferred-leveldown` implements the [`abstract-leveldown`](https://github.com/Level/abstract-leveldown) API so it can be used as a drop-in replacement where `leveldown` is needed.\n\n`put()`, `get()`, `getMany()`, `del()`, `batch()` and `clear()` operations are all queued and kept in memory until the `abstract-leveldown`-compatible object has been opened through `deferred-leveldown`'s `open()` method.\n\n`batch()` operations will all be replayed as the array form. Chained-batch operations are converted before being stored.\n\n```js\nconst deferred  = require('deferred-leveldown')\nconst leveldown = require('leveldown')\n\nconst db = deferred(leveldown('location'))\n\n// Must always call open() first\ndb.open(function (err) {\n  // ...\n})\n\n// But can operate before open() has finished\ndb.put('foo', 'bar', function (err) {\n  // ...\n})\n```\n\n## Contributing\n\n[`Level/deferred-leveldown`](https://github.com/Level/deferred-leveldown) is an **OPEN Open Source Project**. This means that:\n\n> Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.\n\nSee the [Contribution Guide](https://github.com/Level/community/blob/master/CONTRIBUTING.md) for more details.\n\n## Donate\n\nSupport us with a monthly donation on [Open Collective](https://opencollective.com/level) and help us continue our work.\n\n## License\n\n[MIT](LICENSE)\n\n[level-badge]: https://leveljs.org/img/badge.svg\n","repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"license":"MIT","versions":{"0.0.0":{"name":"deferred-leveldown","version":"0.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@0.0.0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"lars.magnus.skog@gmail.com"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/rvagg/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"c7b9eda295685798a849557c328df14bb39ae7fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-0.0.0.tgz","integrity":"sha512-S1mi6iBYHSqLp3eOc4il5mITLZkG4rsgIP1LlSHGO6FoeTox6PiE+NkGTcb/jAN3e5AjFg3cJJUmYDSd29UUEw==","signatures":[{"sig":"MEYCIQCnbck5jEA9V1085Rx3qvsm+GxuGUD2sF3bDCL5zWi07wIhAMugUE6cxilJTofzLeKxl2pl1dY+9bf2TzQsikYljKO0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","scripts":{"test":"tap test/*-test.js --stderr"},"_npmUser":{"name":"anonymous","email":"rod@vagg.org"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"1.3.8","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"dependencies":{"bops":"~0.0.6","abstract-leveldown":"~0.10.1"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"0.0.1":{"name":"deferred-leveldown","version":"0.0.1","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@0.0.1","maintainers":[{"name":"anonymous","email":"rod@vagg.org"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"lars.magnus.skog@gmail.com"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"d28202c82ad658f953ae1313fe0f5ad2b3fb1454","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-0.0.1.tgz","integrity":"sha512-vpoic7jMVQmgwiulbCAfkW/mcTAOsvY7P3cuyrL8hhvydq69srQ+trzV3WW0pMr3iHyxIyqICeYAqwWgEN6VCw==","signatures":[{"sig":"MEUCIHQZCmoufUoZcvI/NvIWagO+A2dZuSdTom8BbJ+mk37pAiEAjmgPT7IqzsXNfSzOAZWcQHBfO8vfjU4P635zr5TuDak=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"rod@vagg.org"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"1.3.8","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"dependencies":{"bops":"~0.0.6","abstract-leveldown":"~0.10.1"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"0.1.0":{"name":"deferred-leveldown","version":"0.1.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@0.1.0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"lars.magnus.skog@gmail.com"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"35c0d94a900e1148a18f0363671d9933868d7943","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-0.1.0.tgz","integrity":"sha512-wKsxds6QFkJdOddy02+cRQ0RyjwwoAsQ+Qt3CIc3fiQUF0S+nys231HVBa15RQNaLJ0Cr7BBzI+jGMsKW0bbTg==","signatures":[{"sig":"MEQCIF0/bRNCWZPrmPEZdYWf6up/m93wivIDzrCtYv5SEw8SAiBsVxdcSPGVpOeSClj/wCRhpVi3BIFFGvDnm30cCd3TgA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"rod@vagg.org"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"1.3.4","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"dependencies":{"bops":"~0.0.6","abstract-leveldown":"~0.10.1"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"0.2.0":{"name":"deferred-leveldown","version":"0.2.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@0.2.0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"lars.magnus.skog@gmail.com"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"2cef1f111e1c57870d8bbb8af2650e587cd2f5b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz","integrity":"sha512-+WCbb4+ez/SZ77Sdy1iadagFiVzMB89IKOBhglgnUkVxOxRWmmFsz8UDSNWh4Rhq+3wr/vMFlYj+rdEwWUDdng==","signatures":[{"sig":"MEYCIQCBdha7ZDUKIrKEQY+HLiBJng03OnU4kV9oXRw84gkvBwIhAKhHFOLizGYrqyvB7zO+rvulN8EA5qYivE2E8bx+iZiK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"rod@vagg.org"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"1.4.3","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"dependencies":{"abstract-leveldown":"~0.12.1"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"0.3.0":{"name":"deferred-leveldown","version":"0.3.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@0.3.0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"dfa22e6000f7e92cc1e678cfbd8e701427b01b5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-0.3.0.tgz","integrity":"sha512-FqkMBMD3Ox7VAr/AAIfny1SDLACPgaO2pJcNfUhmWeR6M3eG/XOq3lXprpgdOyKxApSNi86fhl9XK0hOwKOpkg==","signatures":[{"sig":"MEUCIAo6UofR/VJE2pAxJNBt7gXGPRYR/a+uPPCjWSu5ncpwAiEA34byusjL56D72bG+E+hpdiyzpp787vyI4JGhsxzg7y8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"dfa22e6000f7e92cc1e678cfbd8e701427b01b5d","gitHead":"34162cf70427597f1090cea871e173476ce4e63a","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"julian@juliangruber.com"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.6.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"0.10.36","dependencies":{"abstract-leveldown":"~0.12.1"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"1.0.0":{"name":"deferred-leveldown","version":"1.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@1.0.0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"fdd3f47641eaa2847b9a77735ee60df41353addd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-1.0.0.tgz","integrity":"sha512-Jn312HboOo54C3GrhGhkZojxzAYAnl07ztyZ2Ro6WvYU8N0nqKuIH94bB4UUKQRSdPegO3YISzzFi+w1ktGoPg==","signatures":[{"sig":"MEUCIQCmdJPTebf7iJGaqVV5rZ3VLVAdWs5pNe6o1btWwW1MGQIgaoBOU42stCPLBYkErLhP8Z35Ypsm0nS58mHk9sLijvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"fdd3f47641eaa2847b9a77735ee60df41353addd","gitHead":"0dd9e84c4143f9612d1fed773202bd2a5a101c4c","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.8.3","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"1.8.1","dependencies":{"abstract-leveldown":"~2.1.2"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"1.1.0":{"name":"deferred-leveldown","version":"1.1.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@1.1.0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"31a09eb2a42b41d0f441000a1298514d543baede","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-1.1.0.tgz","integrity":"sha512-YyhXz5J+lCyYAsGWmrssyZxSXS+j+ZZJT16MDCrA4IvBlwQLyGJBA+DZKjiihsiJHi2BgjmYHWfLjN07Uzijig==","signatures":[{"sig":"MEUCIQDZ2Azg6/cKS6cLsuu7vAMbM02X3/CLdYwbhVuXyhR2nQIgM0Cnes3olFtyd82PqYxkM/aQ7dLPPVFdJzEq9BExQpY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"31a09eb2a42b41d0f441000a1298514d543baede","gitHead":"6749ac18aa350ccb51310235c727b904f30e3281","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"julian@juliangruber.com"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.6.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"0.10.36","dependencies":{"abstract-leveldown":"~2.1.2"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"2.0.0-0":{"name":"deferred-leveldown","version":"2.0.0-0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@2.0.0-0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"26d48cf5a3738658e0370a3fe220fdd70a72f553","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-2.0.0-0.tgz","integrity":"sha512-9GRYE/FP2zfa1ivYszTvT84PURL4ewyVd4IsFDdW0oEK/Mxd/eQ7hGWkVAN7MsFgDxwQ9hvcuiYeQufmOTh83w==","signatures":[{"sig":"MEYCIQCMgspYrG5uziLA6ZUDqxR5pYH8iH0ZLB/35AGNduJF8AIhALHiPFEHdljUeEmUQVQ1DP5PTvqLhZdncF4qBM15AtFi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"26d48cf5a3738658e0370a3fe220fdd70a72f553","gitHead":"43fd631a0a90fd76207bf28ba39a1faa3b09fafd","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"julian@juliangruber.com"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.6.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"0.10.36","dependencies":{"abstract-leveldown":"~2.1.2"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"2.0.0-1":{"name":"deferred-leveldown","version":"2.0.0-1","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@2.0.0-1","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"bd4fe5f369d0fda039427f0b7011ad732b07d7ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-2.0.0-1.tgz","integrity":"sha512-jRfAqByPaKmZLBQovRVPds4dwUUBdaBFRZtMvdAb9gShB/8GuRPLNcUNIlf0b7k2Zv48ur/MtrjsGQzxYajv9w==","signatures":[{"sig":"MEUCIAfKTv51GpBvDsNkd9IWab8o8t2RdIqyzTWyj+7wyj7fAiEA5KNBxtDCyQsH2+TVxpu3Tcp58LwcTp/a8hwruLrnqn0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"bd4fe5f369d0fda039427f0b7011ad732b07d7ba","gitHead":"8b6e77e52a4fa4622f86257464d7b062b221a7df","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"julian@juliangruber.com"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.6.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"0.10.36","dependencies":{"abstract-leveldown":"~2.4.0"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"2.0.0-2":{"name":"deferred-leveldown","version":"2.0.0-2","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@2.0.0-2","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"8447356f004a5bc7f83b3c165a875b6f4645adc7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-2.0.0-2.tgz","integrity":"sha512-4xG9pT1KLXOUbWFtNNPWDpzo+va/2a4+qv5JRLw323x+cKaY5luazrVZlG7Gt+HNfdu3Nwfrdvca19VOUxNwVA==","signatures":[{"sig":"MEUCIEsYkUYst3liPVZdO2EjrSYybxDqXvW0EcUu+lnPXt6GAiEA+OQSEw8Qg8ZvBImP0yzJzpVIREiHFZwbz6Yd9cm3qWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"8447356f004a5bc7f83b3c165a875b6f4645adc7","gitHead":"b06ca7368ab4acad28e9c64eef95d775cdc68a86","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"julian@juliangruber.com"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.6.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"0.10.36","dependencies":{"abstract-leveldown":"~2.4.0"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"1.2.0":{"name":"deferred-leveldown","version":"1.2.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@1.2.0","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"4ac5bd96ee5f639517f0fa9a69b5d4e10a2ac4be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-1.2.0.tgz","integrity":"sha512-g0KQWT3kEJVGNvGpExOBlSq9Z2FdoNq3y0dVEp+COrSp8yIa88b7hpt5didfwPkknP1T1Mge/1vxEulvT1xWTw==","signatures":[{"sig":"MEUCIQDYYVR3Q0+4gY0FgzfgvFh6msdy0T1ggEtOKN0T3ky7pAIgHyw0JJJteR2WOd19SJT0iAFZlA6dOQtAB8JDMHgKSOw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"4ac5bd96ee5f639517f0fa9a69b5d4e10a2ac4be","gitHead":"9009da3936272398b368a54ac4dcc4dd031330d8","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"julian@juliangruber.com"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.6.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"0.10.36","dependencies":{"abstract-leveldown":"~2.4.0"},"devDependencies":{"tape":"~1.0.4"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"1.2.1":{"name":"deferred-leveldown","version":"1.2.1","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@1.2.1","maintainers":[{"name":"anonymous","email":"rod@vagg.org"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"5d25c3310f5fe909946f6240dc9f90dd109a71ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-1.2.1.tgz","integrity":"sha512-g3fM2CbrCd7pfSUHsVlZoJ/VGM1Rk19Fq5BEyvZrrIptHuFn/pp+1o1LdGP87erNdYb59Wt2ePhfDjm+Go8/0A==","signatures":[{"sig":"MEYCIQDGXr32KzIobso3YGBF5CQ7lxzQcdxTWtqULuIYVHGVGwIhANnmRYaD+7mSne5A392W3hWUaZrKuWoTwBLvsRF4Y34s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","_from":".","_shasum":"5d25c3310f5fe909946f6240dc9f90dd109a71ef","gitHead":"634b6148169cfbb112d8e271c9f983cc36ac3b73","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"julian@juliangruber.com"},"repository":{"url":"https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"2.6.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"0.10.36","dependencies":{"abstract-leveldown":"~2.4.0"},"devDependencies":{"tape":"~4.1.0"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"1.2.2":{"name":"deferred-leveldown","version":"1.2.2","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@1.2.2","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"rod@vagg.org"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"3acd2e0b75d1669924bc0a4b642851131173e1eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-1.2.2.tgz","integrity":"sha512-uukrWD2bguRtXilKt6cAWKyoXrTSMo5m7crUdLfWQmu8kIm88w3QZoUL+6nhpfKVmhHANER6Re3sKoNoZ3IKMA==","signatures":[{"sig":"MEYCIQCYFwag+qi+oLacH/OBoXFWxjnmuQOHKSMhZyrSz2K9nwIhAPYZ570aK69X1Lfe0ks2s29XATY6KTeRrWo9mxk22XOT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","gitHead":"ec0d80c91b866167848133b3eca434513f2bfe9f","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"5.3.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"8.2.0","dependencies":{"abstract-leveldown":"~2.6.0"},"devDependencies":{"tape":"^4.6.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown-1.2.2.tgz_1501447197521_0.8485484367702156","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"2.0.0":{"name":"deferred-leveldown","version":"2.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@2.0.0","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"rod@vagg.org"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"5b181a318bc3cd11be9ae4599590ddac653ed2e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-2.0.0.tgz","integrity":"sha512-FSVyC1HiHMB/qg/Wur7iF3I1oLQ79bzIi90hhE2WgZS5n5e/DhxGiLNVw3rOVAMarO32gcK8CyS8Fo/DGBYvCw==","signatures":[{"sig":"MEQCICGmtg3RDeeyqdMPEO+2mBregdAbU0mOB0LbsuOqTQDrAiB6LnSCVZ81LalkK1rg9ab6FgSw1WtA5eAxUibv0ilwAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","gitHead":"80f70601506aec84059c5b2f53b7aaa71785747f","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"5.3.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"8.2.0","dependencies":{"abstract-leveldown":"~2.6.1"},"devDependencies":{"tape":"^4.7.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown-2.0.0.tgz_1501453029462_0.48944880440831184","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"2.0.1":{"name":"deferred-leveldown","version":"2.0.1","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@2.0.1","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"r@va.gg"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"e41fc0a37a57977b81ef5b91cc2155d763b0c3ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-2.0.1.tgz","integrity":"sha512-8R0sWak3ceIEH/K0p8+iGeJNIDrHrtNXJp7UwiuFLAIIfKE/CZMaa4Lgiiv+PwHKjwFUxXPDyV8HUlQ98hIsaA==","signatures":[{"sig":"MEUCIQDrivF49hzp5A1Lm4lxUCIM7C2TVrHjJ+gm5pNGe2I6EgIgE+TS259+BBepidj7nnZU3z3FggBX7rgY+j8da76pqp4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","gitHead":"b2d266c2db47c0f5aaf5d39577d8a903ea9099ba","scripts":{"test":"node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"5.4.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"8.4.0","dependencies":{"abstract-leveldown":"~2.7.0"},"devDependencies":{"tape":"^4.7.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown-2.0.1.tgz_1505237912255_0.14863723050802946","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"2.0.2":{"name":"deferred-leveldown","version":"2.0.2","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@2.0.2","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"r@va.gg"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"6d3dcb066d940f01392cf310c8029a8605e7eef7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-2.0.2.tgz","integrity":"sha512-wfEe1DWwwUp7byYOA1plvXs3sJYs75JLWDag8u1BQtX7iNU9rZypdEI6CDTzWptprRFE9Q+QJJBwafibBRa68w==","signatures":[{"sig":"MEUCIFIZLs0DY8fMdoDXL5xAyOpR+Ty340FpIhpW8ZY8jflvAiEAvDFYyODQnWUPl6jIgFzxnnd8/caCotMPDBy61pDiOPQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","gitHead":"4c57e7be86a022ca2bc0170419222e00661b7c51","scripts":{"test":"standard && node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"5.4.2","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"8.4.0","dependencies":{"abstract-leveldown":"~2.7.0"},"devDependencies":{"tape":"^4.7.0","standard":"^10.0.3"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown-2.0.2.tgz_1507326610226_0.3870311793871224","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"2.0.3":{"name":"deferred-leveldown","version":"2.0.3","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@2.0.3","maintainers":[{"name":"anonymous","email":"dev@vincentweevers.nl"},{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"r@va.gg"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"91fbc7699ac85f3920df035792d96d97cbf50c0f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-2.0.3.tgz","integrity":"sha512-8c2Hv+vIwKNc7qqy4zE3t5DIsln+FQnudcyjLYstHwLFg7XnXZT/H8gQb8lj6xi8xqGM0Bz633ZWcCkonycBTA==","signatures":[{"sig":"MEUCIQCadDnmmV9B503XTZ2lgJqs7poLDRqOo7xmjWCb9VcjWAIgU6lkLO74gG8gbnWCoPw3z4SmQ3o67NSjgJPcr8p0i9g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"deferred-leveldown.js","engines":{"node":">=4"},"gitHead":"fc4be61152c0b1f25d01e37074808f53448a7863","scripts":{"test":"standard && node test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"5.3.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"8.6.0","dependencies":{"abstract-leveldown":"~3.0.0"},"devDependencies":{"tape":"^4.7.0","standard":"^10.0.3"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown-2.0.3.tgz_1509803911349_0.6906641256064177","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"3.0.0":{"name":"deferred-leveldown","version":"3.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@3.0.0","maintainers":[{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"bff7241bf156aa3635f520bedf34330c408d3307","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-3.0.0.tgz","fileCount":9,"integrity":"sha512-ajbXqRPMXRlcdyt0TuWqknOJkp1JgQjGB7xOl2V+ebol7/U11E9h3/nCZAtN1M7djmAJEIhypCUc1tIWxdQAuQ==","signatures":[{"sig":"MEMCICGp+wgLqXKTdCI/wnkw3ugCAvXASaRaUvSwLKjkd7vCAh9IP4lOIzHyO8UkTHRxD0Z21k6vPlhigDERbNY3ggbX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23534},"main":"deferred-leveldown.js","engines":{"node":">=4"},"gitHead":"a5b59b82be85522ff6d01e8b7925a367ec6f0eed","scripts":{"test":"standard && node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"5.6.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"9.4.0","dependencies":{"abstract-leveldown":"~4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.7.0","standard":"^10.0.3"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_3.0.0_1518089808936_0.46465786341002313","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"4.0.0":{"name":"deferred-leveldown","version":"4.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@4.0.0","maintainers":[{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"a49baeb778f0bd0a63cffe2e7b20ca8160726c80","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-4.0.0.tgz","fileCount":9,"integrity":"sha512-dF2nbK5efrr7eutZswrm/ep8q7TFQeLBKvXdQYF/7WtXZH+7N1JxptES3qhp+MJB1qMpibK48bfWyV2BvhSQrA==","signatures":[{"sig":"MEYCIQCpAUxCcJRShQLxmHi7q9dnmNVCHHsSQr3KvBHBOEVnUQIhAJOclgkLEl6aKmCnyvRhkzmPD9Dv8hNi8zYRwNwz7ilU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+CozCRA9TVsSAnZWagAAOi4P/RMSqwgJawu0ffBqw7SR\nyDEapdeq3lkoEIq3pCXadS0ghyNXKAx/y/sb/zcPKNv1/Q94mxhaTDDLfdYp\ndXX4Vvs2f4tmOOeUsToPGz7OGf9WigeDF+xZdJ9dUkdKZXRhPf4AF4OQJmaz\nWKKyH52Rf0JxmDdr0ScipA+Pt2BTlaKoNnG54ZLuh5ESJtFP2FBJL+oMOoDb\nuv8o/x5WfA45F99XhL2pFTzUYb5yQ4QexIs7RxChJ/IVWKEf7R6ZlkFAqS9j\n7s63U7pUEFBKXlkbTRkaRJuktpQX4NVPJQCCZhYQgSmjb358zU5g7yDPOYtK\nzjinuwBdXx8COnrC8hDrBxxev8adGgL4NDiqtvX/40nCxUp8i4s7cZXjWIxF\nlKv3SCeHlU3cjy+y22I3nIGfONjHgJHqEz4GZqtnqi4VOdUZYQN3eGmqdxz1\ntGI8Emf+mrMlIg80Ski4dEXuAfj18neJU/bN+EHbCM6KQlUlL1scbkmOV+Fg\npXqCMhzoxD/+u6eGKEVlkdiQkTP91hZ3e+HYNeSvGIceXVfqkXH9Mx4taD2/\nmNZnpjvvun+uVl5mwREkPgLRXxEvDnabu1jOJ0cc3JBDVB0qiWNruhL82DWP\n0C9n3oKab0KjGvCZ3WZC+WegSJrIxxU/um9E4wmCPwRnCDb1BCXqaRInI94b\nwHYm\r\n=3sLm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"84b0332384dd8a8df40de54bae2e6c2bd7ea5fee","scripts":{"test":"standard && node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.0.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"10.0.0","dependencies":{"abstract-leveldown":"~4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.7.0","standard":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_4.0.0_1526213170834_0.003571317322361711","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"4.0.1":{"name":"deferred-leveldown","version":"4.0.1","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@4.0.1","maintainers":[{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"3cc9b0be5658bb227d5b2c0184e9c6bc352748a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-4.0.1.tgz","fileCount":10,"integrity":"sha512-m0/KvdiHQsxrnoBaz9l6t58wU7kfd/nXSEROc2KYgzz/hoWrTrx1EsSx0NhJderqKmoDxjO2k0CYNGRVolNeyA==","signatures":[{"sig":"MEUCIQCFRz3SjBAFRZuU83yi816XuVZTSx0xkF7Dm8ywKTABTAIgJ/PTUNxYep3tz+I32pVcgNWFxlpyh9GNKQgGotc5SM4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24046,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBHD8CRA9TVsSAnZWagAAd1IP/jrv/XRa1j8w0HsmkGRw\nFmzM1xwcHr8Qwio5JAmZUQ9xU0eqa9n+3iYZtkx50V/Ymht1AUaV685pKBHE\n2PXwrmlv4PJ6eszU93L5iuRqh7Y87gVJpUQRu2FXXTrPm9+tLXTvuY/+MNBz\nELCl3Vnx/PfNqvU9ACmTTZaic8UYlvEuo2I1GagLnlxem+hEMH/c6PPmAruA\npheX+/lFf1DPeTeiJ72IDxwTCVsBP+kllqIXm5ePy7jtoMVGaWm/h2JNpHr2\nnYP43jCyHaRHNNoe5bEBERvg9vH5RRiQXc5kN3ALmiXF8e72Vdhp3BfYiWRs\nBdwL3FEdN06YZFLdkDBqaGg/Pvg31YdcZ+om8qg2yY6hz+lbkDg9sOtzDmmC\ngwIden4OlnI140+uE6Y5ajjD7p97H7iS0zWgCZh3mvb+moZPq51gH8+Z5EiL\nSLFYcPnljmbWz+jCQMhdhlmkwpt7yDb39tZBD2Oan5w8zAfipu179mg/3Yaz\nuRu1EaftovVY4mfwfCPkfKYwr+vhXcAQUGydHtGlH3TExzQzis0c9NMZM/pC\nifaMMQAOf43cOdgOBvWdD5GPwVPdcfUYrDiQy4ZknCu6wJXVs2+5xAOpsbWn\nEH3+hfAg04M6rpckZ+TzWH8wYmeaPSv6nqb2E7a7MjidP7dINXuQAFgGQxwk\nQ2Yy\r\n=69GB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"3af966e05fb3ace07917804aa263eb9b40b2aca1","scripts":{"test":"standard && node test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"5.3.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"8.6.0","dependencies":{"abstract-leveldown":"~5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.7.0","standard":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_4.0.1_1527017722916_0.9886960860813778","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"4.0.2":{"name":"deferred-leveldown","version":"4.0.2","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@4.0.2","maintainers":[{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"contributors":[{"url":"https://github.com/rvagg","name":"Rod Vagg","email":"r@va.gg"},{"url":"https://github.com/chesles/","name":"John Chesley","email":"john@chesl.es"},{"url":"https://github.com/raynos","name":"Jake Verbaten","email":"raynos2@gmail.com"},{"url":"https://github.com/dominictarr","name":"Dominic Tarr","email":"dominic.tarr@gmail.com"},{"url":"https://github.com/maxogden","name":"Max Ogden","email":"max@maxogden.com"},{"url":"https://github.com/ralphtheninja","name":"Lars-Magnus Skog","email":"ralphtheninja@riseup.net"},{"url":"https://github.com/kesla","name":"David Björklund","email":"david.bjorklund@gmail.com"},{"url":"https://github.com/juliangruber","name":"Julian Gruber","email":"julian@juliangruber.com"},{"url":"https://github.com/hij1nx","name":"Paolo Fragomeni","email":"paolo@async.ly"},{"url":"https://github.com/No9","name":"Anton Whalley","email":"anton.whalley@nearform.com"},{"url":"https://github.com/mcollina","name":"Matteo Collina","email":"matteo.collina@gmail.com"},{"url":"https://github.com/pgte","name":"Pedro Teixeira","email":"pedro.teixeira@gmail.com"},{"url":"https://github.com/substack","name":"James Halliday","email":"mail@substack.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"0b0570087827bf480a23494b398f04c128c19a20","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-4.0.2.tgz","fileCount":9,"integrity":"sha512-5fMC8ek8alH16QiV0lTCis610D1Zt1+LA4MS4d63JgS32lrCjTFDUFz2ao09/j2I4Bqb5jL4FZYwu7Jz0XO1ww==","signatures":[{"sig":"MEQCIBK7h8yJOkHcqEGeYDvzlAnnlCe2EodLqy/6oOn0GXbKAiBqJCmCaZ/UxL6kTTAD7jBMVZUIUirgeXGK6DfitvczOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24245,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDmpmCRA9TVsSAnZWagAANHgP/02fLF2Lul5ozcw49kNv\nQD8Qp8Ng6m9wL1MjmU0FK0AIAffIY+qya6LXuzImySnsGrfL8yWM9S6jRtPj\nihFAfxuIq/oViT8WmwDLfV22fM8aEszXgcI9GF91g86uW1rQJaSM1hEWWsO5\nyKpWDU7WwwRaKJRHfojTYzLSH6zyxmAI+xEkFAmL2KxEj2dDdImv3N26WC2P\nDrFwn+w/2J43qsVVHz7E+X8LICqgXJUuhBSUVeqTkwtxaf57jDYZopLG1iJC\ntf53uNScZVEeM51qWYrRidcAw+2zstDm4at+gqT71SNo8wbo8w0ANBt+/W+q\n2f0JNqjQQsNS9ZJ/ITrDM1IbDb5L5R4HoUhuMP/oFigHR0O40T+zZdVPfOim\nuaRlsNRO4QIN3dPMRd/9IROzg03R42ulg8oE5Cg6De3urvGyE6RLzm7nfJ+M\nRgFxn6sPUhfYUx2aM8DKxvB6xd24JW5SnXzcd7QQkxnAbkkSeRqf6ezxkBbw\nKe7Qrb9VKYnNvOAEHJf09FHz/BiLW63QACCaMXzDs/OHwjG2EJnDyonB1TPw\nrxfCylb696q1W/WMQSODaqs2wjd4J1ZPXWkCpqxzphcd9cDdYf5fBP1zqgmO\nisw8JqToZcyO5U7yEnC4DdArdlCSephXrVQ5lXJfVKeu8UIBbLAvjY2TqQeR\nmfVy\r\n=t5GH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"52df93db1b008c6cde89d7ad6fd9206f4e52b608","scripts":{"test":"standard && node test.js"},"_npmUser":{"name":"anonymous","email":"ralphtheninja@riseup.net"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.1.0","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"10.1.0","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"~5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tape":"^4.7.0","standard":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_4.0.2_1527671396950_0.7209410601622914","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"5.0.0":{"name":"deferred-leveldown","version":"5.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@5.0.0","maintainers":[{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"28717f5da3c4e4dc42c367338e9596f04c5cb310","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-5.0.0.tgz","fileCount":9,"integrity":"sha512-QtTcNm2PX7elim5bGl+i3px2kVbpI49BV+Q62CFh0AaMlrdlbMXyozBg31p2zJqAAT35FUw4eccC+drr3D0+vQ==","signatures":[{"sig":"MEUCIQCcfRk4o+905b3EF5zDLeXmZk5hQcSfBtoOy4EsQghBaAIgd+tsRT5Vp9e67U+tH9E/MwfgOHgXRVg/1OdmkZuTLJk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHkx0CRA9TVsSAnZWagAAllwP/iezyIj27aIJo7sX+Ytl\n6RWWJz3Sst6drW0tQKsL30EMVLukDxuD+XdFWPKX7CUw5gc534v4wB92odJN\nptQZPBXoNjXRkxoocLiq1S/znke+3ke9DlI0aA1KXKz6p8HZ4Sgc07BSxUG/\nyj0DL3HfrOrsf4glX4qtpkbFJtB0xVZ0/foD+UvG7ZLYkpfTeU4/PdDfZrJE\nSAhjW8kQUA4l4cXU7m9fRqW+WwfisjknlON6IDax6yD/vSM3q7RxGXALsXRi\n3lPdWoxQn5URjXPmyqwS0Ud/+TDrC7op8m+K0mjYwrj/oS34zPteZOEWmZdq\nGWC/5w4Ng3WREGOrgZIv6aHDDqlatIC7i6nPUUYYdGhXe21ats+67xBY1gS3\n/ly4x4jsxW+nBH+Vzq1LLy11QvRX/mDlh8i+Avmn7rYR+LkaYrvcWxCUyvKi\n2uI2AG60TsT+Wc+foNdOy6aCPCpMtOEKQchebM8XqlkdOcsKnn01pHHb/XmG\n4inTFVP4fY8oYBBRl6SobepRGpffPS9Zns/m650S1tS+Zfr4WOA8MnEXGxPv\nWfnwpawvuGEwNbxXBvtFcUKkTM/MfyuMbr8+XVAkH4I8F6FS0dwwYAjETx5n\nDAkN85TrBHZWlYVIQJVGpZxMjX2JosQ7q/XybbPEMGvFmhLmU7//CpSrsMUh\n03Gt\r\n=+CmR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"8b42394d56c126f74441558b363d8355a5d3a954","scripts":{"test":"standard && nyc node test.js","coverage":"nyc report --reporter=text-lcov | coveralls"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.4.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"8.14.0","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"~6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","tape":"^4.7.0","standard":"^12.0.0","coveralls":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_5.0.0_1545489523993_0.5495154711597239","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"5.0.1":{"name":"deferred-leveldown","version":"5.0.1","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@5.0.1","maintainers":[{"name":"anonymous","email":"julian@juliangruber.com"},{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"1642eb18b535dfb2b6ac4d39fb10a9cbcfd13b09","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-5.0.1.tgz","fileCount":10,"integrity":"sha512-BXohsvTedWOLkj2n/TY+yqVlrCWa2Zs8LSxh3uCAgFOru7/pjxKyZAexGa1j83BaKloER4PqUyQ9rGPJLt9bqA==","signatures":[{"sig":"MEYCIQCL88nKJmqUJkfGdPv7K8ghZzQzjmDN10jc/TS6hVlNlwIhAIvu4hhTxuqITM0Vwf2tQ2X333o7wiwKsmZpqMSLfu3F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcoSDCCRA9TVsSAnZWagAAq0wQAKB2tMCbkhAMdHlUj0H3\nQvnTViqcqcg18/1alAD9MX9XYML1JXFLYh178m2HNmTawGJHUTvvhg/4xpuh\nbGW69eTXWTQSTPlf8Vy3cGTYzZOVDotUlqe6BaNI+6W72OkTujV2OB0Ox4P0\nMDxJ4b/yNuw64TlQqBa1DpQxcpAz6sP98Xm7Lwd7O79/RL2FziGj2RBDICXb\nNsRZfXXOXWy6EsqWuAA/+t7vdmlNxG4Jeaz8Kka6hgsIF/6KdIudy2dYHrLM\nyr9OF4Hr3BNsIiIaHTK69rO41MfOLsRQeHIvmjvPOoSzQH7CxdfJAJ2+zAVy\nn48erTRL/zSfeSk86IwTg3pHe8UF1LPke40pHVAwa5Mr4lBMX/UEAx9YXXUa\nStTCg+tE5IalT5WYqGxrglq6AJJnbCW7MgNi/yulEZWZPEr1Q0PEbiNZyHDj\nxffaTn6ZNDvB9BcEfZDL/+4Xci61p4Ri98mWZJHdY9oGW2CoOxuo/2HIs5ui\nxwwk9hkszMzhEthSGU0tnTq5aHfzbtycyGXInX7h0I1RiwP1AY9MuQZEM5UA\nDAryg/0+W1dHG6vvgT6B+pn6w9tvxOIwY8v3m53UO85/jqy1ZRXNsGPhbD27\n/OyZpnTgXucxnuRNzmS4IhHOXBhq+m62ChMrfagPd1d2Hsqzehku9KtKOgtv\n5SnY\r\n=ziF0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"7bdd3ec1db1995442baad8af0e82cb92326a3415","scripts":{"test":"standard && hallmark && nyc node test.js","coverage":"nyc report --reporter=text-lcov | coveralls","hallmark":"hallmark --fix","prepublishOnly":"npm run dependency-check","dependency-check":"dependency-check . test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"hallmark":{"community":"level-community"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.4.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"10.14.1","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"~6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^13.2.0","tape":"^4.10.0","hallmark":"^0.1.0","standard":"^12.0.0","coveralls":"^3.0.2","level-community":"^3.0.0","dependency-check":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_5.0.1_1554063553361_0.6801494983665839","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"5.1.0":{"name":"deferred-leveldown","version":"5.1.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@5.1.0","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"c21e40641a8e48530255a4ad31371cc7fe76b332","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-5.1.0.tgz","fileCount":10,"integrity":"sha512-PvDY+BT2ONu2XVRgxHb77hYelLtMYxKSGuWuJJdVRXh9ntqx9GYTFJno/SKAz5xcd+yjQwyQeIZrUPjPvA52mg==","signatures":[{"sig":"MEQCIEd9dvV9ucEyNK3m0UaXIT0T+w1fEpR6hOGEHr0/+T8CAiAXsvNV+Txwpmhl607waU/V7xL3DuTL71dVBFNyXggDDA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29892,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDenACRA9TVsSAnZWagAAEUEQAIL8MX38Xyc9mMs3+4vN\npCJF4GQa6Ac6KuFWV6seNxqIFi0fuCBhyzxay+uS76fRfDuajWEl1kCKa6HN\nFZa8mucrWgLtAvj2K8VTPBaHYIciQ7eKIZHuMaQXCHsIm35td26J4zFN/S0r\nknHHXD7mn+TuECrqYiIl5tSr6YsHFEoGygyTJxnf/YW1tSiJC9S9UHMpn62i\nuGaiz/XNCdOs4ZPPylBdowY7hTSnJNe4FwnVdeFFHUuoSV82B/irHIWwMvjp\nr6CLghdXwA1zTvpXYH3qcKQhmReUm3ChLhVaP2ANnVphbx0mWLQvk/9OGSlT\nW/mG6tys7XTNtkJBbfSipGeh9m0gfHqngGT6ikZUhjV4jGjcgRIWUKIpz49/\nOI2ecfODTRscQ2/tzjwJ2zBohogDcUBUIFgIDpOqJHPqB/wFSsO/jgovPzxw\n9GK7YBxw4ylgcBcNCHOlBzmDU2CQd3GW9EnPKOtIwOFAcHvJFrz2XoBvNbOu\n9SOYVsuSdjKCbj6y3K+BsBoRKD9gIzISdIyd66929KjzUp8gTnV6ofJ6EsJt\nF7/shMVLmWBk8XyWa+PW0grQ/CtfvfgYXmUEojsMwoezzTWQSAl05M7RpSMo\njccLLme1l9wy73PoWwq9S7zZT4q5wBinljbhjiihpAhC1OJ7oVw4erqSPXzM\nVXsD\r\n=5LaP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"45b65be0bcbccdf13b3688e6271c74cd73cd3840","scripts":{"test":"standard && hallmark && nyc node test.js","coverage":"nyc report --reporter=text-lcov | coveralls","hallmark":"hallmark --fix","prepublishOnly":"npm run dependency-check","dependency-check":"dependency-check . test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"hallmark":{"community":"level-community"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.4.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"10.14.1","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"~6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","tape":"^4.10.0","hallmark":"^0.1.0","standard":"^12.0.0","coveralls":"^3.0.2","level-community":"^3.0.0","dependency-check":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_5.1.0_1561192896315_0.00038111086923975357","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"5.2.0":{"name":"deferred-leveldown","version":"5.2.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@5.2.0","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"d25564429f9a92019564e6e3c48cd3628ef1b00d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-5.2.0.tgz","fileCount":10,"integrity":"sha512-E1s224a+nv7nEZQL/s+q4ARzBhsfo3KiEjK3qdvDAvMfWE68GnGsMRYKanoZgYqq+LNgyRMYPzBgEmAXjM2i5g==","signatures":[{"sig":"MEUCIQDAu59mCFkOabWdjJMvhEMg+cMe5z1RTheU7ElyAyccvAIgZVIJUMic1mqgkJ05SOu4BnaWhxVAO12vNvjynzRwAVg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32830,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdcqlnCRA9TVsSAnZWagAAPaAP/jlNd4M4BTujDtdcBt8Z\nDuP1Bo0/jrqRFqMkjQdrY+8k9mCKoD2VaTPKu1RRif2WGw9NFz6nxqz704wO\n3NlmI7xVooE58l0bS/canYHmVTVp/UpzcVNU3OCk6sx/9SiTTMul62P5u9Cz\nfu5o7NuDYUJOCxZ5HEAg0NMcPAsPA1W4pchu25GfImk+YJ8Oi8FZIdlpU7wi\ni4MQ8A8wJvw7btCvExRysQoC1AEhGJYDG0wms73OklVIdYfUMm0zJ+DxueiC\nPZYPvkMHCRZEsQhDtgwAeaw4zqeUxyHe0F6C2Um8n3/9PUvSfBK+EQ9nxNd3\nUPAsOjcJ3WC8UiAlIDGx+VUu+tq3nYfXufnXSR/n5MsCTsB3t4fjfPaP81Td\nJW8ruzqukU9yex0F8NlqO2P0UQY6ty380zFI7CkaFhDHHxdGjmdFcL8HPuVZ\ni65kTJ0eHgzs2wBnIztwCH3xpyZ+QFhKGNhngmjCXmYyEX+VX0JdYh4dHcp2\nVklwPLxhOR0RwP8WPvd6pYkkSOSx8a7bGxLj20z/VLgB5lFMegzauitYIhCY\n2SZH/smV9ssjqbvlXRLErqiosfOInRzKMq7wRU9rHCxcNvYNlZKA7lkvdaoy\n7h27XRFcqO6Or2a/6JBBUooIbNIcXXRx0TczbNgZ3hBY7a3ezFlO+lzxGJIv\n9nxK\r\n=SgGV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"2e45a797281e52196b455895c6505a1fa9dcc3f0","scripts":{"test":"standard && hallmark && nyc node test.js","coverage":"nyc report --reporter=text-lcov | coveralls","hallmark":"hallmark --fix","prepublishOnly":"npm run dependency-check","dependency-check":"dependency-check . test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"hallmark":{"community":"level-community"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.4.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"10.14.1","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"~6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","tape":"^4.10.0","hallmark":"^2.0.0","standard":"^14.0.0","coveralls":"^3.0.2","level-community":"^3.0.0","dependency-check":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_5.2.0_1567795558426_0.386631688354361","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"5.2.1":{"name":"deferred-leveldown","version":"5.2.1","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@5.2.1","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"8da87909cd3269c2d6aff67b1e607f93e4d96c15","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-5.2.1.tgz","fileCount":10,"integrity":"sha512-PwXZRn5EmW+IKYVAYVc7G9FsRkShr0myPubPuq+mtLhDq9xSUqfvTlNZKoeQGeXACHXkeCFurKrz5oo6TZ3qwg==","signatures":[{"sig":"MEYCIQD0HHMFLoYVdYL0x9BF60vlVJBcLtEaef0PcTyZlBclEQIhAKHrtF7+DbYqpUMLXoX0Oa8EYCTUwFeZkxWQeTe1A05H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgS0LCRA9TVsSAnZWagAAcR4P/2bx8icOUFRrMIv6iKWb\nFQVBPjW53fdLcg/ORGsdU4lf6yYa3raoM8vHkAIlJ5xRdN/WCsN9n3crFmET\nymHUYgNnMf0mTK8FAbG+utAzPwcsdUyfrmnVU+SoN5+c4vQGsuLCVku0PG0W\nudsjd+sef4ZzYmdgMdstGgupvFm3d643MZNQOR03/B7AEyg2VO9CA1kVG3tD\nbmKfwoeUf7ZG9vmwHwa607ikeaVd3MII9KnpRmYRujZCVyDAS+zctFvwHsAh\noXuOao/6DtVXOZXQSxLOZV8QHFz6ZK49te9Yo37PPSNUtoQP/Nku+zHF8cVy\n0clad2KG9Kve4ponrmfqi2YkvycAchh9i/Yuj5p+A1TCF35ERdzOCvnPFdTW\nspFN1QtWd50xOBIAyOPjXfzYBM921dIuQz21CVqkQFw7dNY/UgtvLXmqoyTU\nKPH9NWPsXBcX6FNGgOav73zjN/O5WidzxkutycvGrFI+FGE7MRgTVXoh9v/F\nC3KOa8D4nyB1qHU3LKQB6vIso+GGcD6Bx88z7/GndPy8Y9tC6baTOanTlmYQ\n7KOitOlPKGmtz25UkfdjQw1upHPhs6QS+cD2MYtFy8ruGnjF4jr87v3RbsQu\nSlsieyxSSqRU2yID7BJ7vxDDO+sR3ty5cRsvrgOSwScRM2E8OfImZB7naipZ\ndxbc\r\n=jpj7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"23d1e58c31fb01781bc7a90eab019ea513922f42","scripts":{"test":"standard && hallmark && nyc node test.js","coverage":"nyc report --reporter=text-lcov | coveralls","hallmark":"hallmark --fix","prepublishOnly":"npm run dependency-check","dependency-check":"dependency-check . test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"hallmark":{"community":"level-community"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.4.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"10.14.1","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"~6.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","tape":"^4.10.0","hallmark":"^2.0.0","standard":"^14.0.0","coveralls":"^3.0.2","reachdown":"^1.0.0","level-community":"^3.0.0","dependency-check":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_5.2.1_1568746762744_0.1967929401854751","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"5.3.0":{"name":"deferred-leveldown","version":"5.3.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@5.3.0","maintainers":[{"name":"anonymous","email":"ralphtheninja@riseup.net"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"dev@vincentweevers.nl"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"27a997ad95408b61161aa69bd489b86c71b78058","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz","fileCount":10,"integrity":"sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==","signatures":[{"sig":"MEYCIQD4H5v+5ngX0YtHnm4xh9qzxlaf8qzgLigpYJEkzgRUYgIhAN0abVbpnulQJVD7fg+DA6JZdLvyiaHemVnsA96iMFxX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdl0ILCRA9TVsSAnZWagAAOaIP+wYVE+AHNo/i7JNU+Kqq\nBNSQNF3Z7MwYPmCbuZaeJonEjjqKdRu238tsR3AQUAfgCFXACnOciu5kPnym\nW5uvEmvfUGxMOmpuV/MuBgKClNDkem8dOics7slH6mRz3x5SECVmZyACC6va\nB9+6Hld+cqabaVhrDgKWVcucOzJTWma94xreCZ3XhKm+mrloscTbkQ7qjF6q\n/Q3QEh/9zQIErMNumk8pMAMpCxRdzJWSOFuBDBrV9FnmtgLMLfkGtgpPiu0q\nroJVG/fUIbd9/sjSPYtMSmeyGQnW6fu5bHuwRq/Gu+oWA5osWtn4aPG6lbBX\n/5FF1aWR/4Dz99uATWKu2YKWiXkBIezlyY6lH29q4SD2zuyVla2XExLUkqOo\nxvb+mltGapANkqhMhPAbFXtpwhWAu3n4RVAzafyL6SmseCheCKLrVSsA7AC7\nNdd/gtwtukMmCqsM7kVe8ojG3Jbi9LNf9WR4IMm1Ixw7SJayKY7iuS/mg4vX\nLmJMk+Les+mkWA5DzHkH/ku2TlXKYWGr3ViCHjV2WRGldRZbPhG8MtxUdOO/\nCcH34sU+r6PUD7I1hYUoJ9AeEOqeLfGZrWRRpZDCTBT4D3gyX1UB87QPuOq+\n6IOfT96tAnR8DLq2J26CwWlutPzPISfHwIGgHO2nrCkMlzZ0FUlGfkobdUep\nBvAq\r\n=R2c/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=6"},"gitHead":"f5dae6a004096aa9991e82717373892628bde720","scripts":{"test":"standard && hallmark && nyc node test.js","coverage":"nyc report --reporter=text-lcov | coveralls","hallmark":"hallmark --fix","prepublishOnly":"npm run dependency-check","dependency-check":"dependency-check . test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"hallmark":{"community":"level-community"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.4.1","description":"For handling delayed-open on LevelDOWN compatible libraries","directories":{},"_nodeVersion":"10.14.1","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"~6.2.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.0.0","tape":"^4.10.0","memdown":"^5.0.0","hallmark":"^2.0.0","standard":"^14.0.0","coveralls":"^3.0.2","reachdown":"^1.0.0","level-community":"^3.0.0","dependency-check":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_5.3.0_1570193930809_0.8357351102726542","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"6.0.0":{"name":"deferred-leveldown","version":"6.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@6.0.0","maintainers":[{"name":"anonymous","email":"dev@vincentweevers.nl"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"364dc436682eccbd4a25a5fd5585614770d0d3d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-6.0.0.tgz","fileCount":7,"integrity":"sha512-F6CLAZzNeURojlH4MCigZr54tNz+xDSi06YXsDr5uLSKeF3JKnvnQWTqd+RETh2hbWTJR3qDzGicQOWS5ZQ1BQ==","signatures":[{"sig":"MEUCICpb43PMb1PxDeTphDP3wqoj7fs90/CXXrzxfJBvB57yAiEAymqgS1BDeG5cXorMQizMajpP1TxwBrsPxntIANCzD5o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeqLYCRA9TVsSAnZWagAAALwP/RdELAxV9J8MWeUNKwop\nMMXMvfidiEPoNGZuVstmcoohPc4/alWwo9okeMB47kZiAs+gi90DCOGTnQVq\nFMRvAI1TI6H1k0WUdzglqJIubUeJpJc1/zaip6qdsGD1j2zhx9LzC+ryE5jm\nT/sRcJoblw66cZo7JGdpWhxZWXH87AAWwPbOWKmm00MVjl9/8AhDnEF+QlXJ\nUl6sxMlPi/JyRssEsGuEgumu4gpX2kf8OBmlGthN/qp2Y+5TXmklEBdwsWHh\nzwMRL0+vMqNA2g+QQ9L+wBamrxclrgPYRJh6RBUud4h2SPvvc8qWqf2ISjfm\nRgIPHu0b6N5JEv7FOW6FpyBfEmHCWiB2HACUC5FIlnCYUtYlg5i3OIL2XzJq\nfY0RLTNm4Rc11On0dA4k2X08SBChEYVYFJimp4+4M8bYIPID+6JJpkzkUgc8\nI3VEaH3jXrXAoyZnAUrsKIEN6KoT7K0yDEkNp07laTLPTExV09KFlxB72Dcn\nmGriywST42GcFNDf3u8Vqdd0aYHjLZQhW8qEmZ17T9DakX8CFaFVMR2Gq19W\nO4ua3G00nA4A+UQgaQASjuCr41j4UTSPmbz6BkuRAVnjnzT5kUYAh3x5v23q\noCD/BFfRjSfb7hbuTG1qq75oFttWsyWKP1zAdkd0PW1dbUgx6DswETIXPsSV\nqGZD\r\n=x6JS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=10"},"gitHead":"0c1db02365f1361a47bdb28201a1e37e54948938","scripts":{"test":"standard && hallmark && nyc node test.js","coverage":"nyc report --reporter=text-lcov | coveralls","hallmark":"hallmark --fix","prepublishOnly":"npm run dependency-check","dependency-check":"dependency-check . test.js","test-browsers-local":"airtap --coverage test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.11.3","description":"A mock abstract-leveldown implementation that queues operations while a real abstract-leveldown instance is being opened","directories":{},"_nodeVersion":"12.11.1","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"^7.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","tape":"^5.0.1","airtap":"^4.0.3","memdown":"^6.0.0","hallmark":"^3.1.0","standard":"^16.0.3","coveralls":"^3.0.2","reachdown":"^1.0.0","dependency-check":"^3.3.0","airtap-playwright":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_6.0.0_1618649815621_0.8419588670358849","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"},"7.0.0":{"name":"deferred-leveldown","version":"7.0.0","keywords":["leveldb","level","levelup","leveldown"],"license":"MIT","_id":"deferred-leveldown@7.0.0","maintainers":[{"name":"anonymous","email":"dev@vincentweevers.nl"},{"name":"anonymous","email":"r@va.gg"},{"name":"anonymous","email":"ralphtheninja@riseup.net"}],"homepage":"https://github.com/Level/deferred-leveldown","bugs":{"url":"https://github.com/Level/deferred-leveldown/issues"},"dist":{"shasum":"39802715fda6ec06d0159a8b28bd1c7e2b1cf0bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/deferred-leveldown/-/deferred-leveldown-7.0.0.tgz","fileCount":9,"integrity":"sha512-QKN8NtuS3BC6m0B8vAnBls44tX1WXAFATUsJlruyAYbZpysWV3siH6o/i3g9DCHauzodksO60bdj5NazNbjCmg==","signatures":[{"sig":"MEQCID5n6AcmhLj4wMt8v1BtFyLlsnDgiuPZm6fQygHkOElYAiBA1TDZ2NPAacdBG5e8hRycHkHm20vEBZMlFQ0JMJIsNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2n/8CRA9TVsSAnZWagAAOzsP/1xg9w8L5EFv0rLbSamP\nMPyAcc/NtRnbjAt97mq++3EHCswMeth8iXIA4tKwKxC6CIsKUjZDKa5h0CKq\nGBS2LjYmKIQ3UElO+F6T/XtFCazJ6DyzaEvhWch3VW4p1j5qxHiy70olhUQD\nb6DVqaR3tpyWTtRb26PN4E4hCOlRCsQuQ9JERMcVWmo2WWqyaKjDg5sTmh/X\nVWf0EmzGtIZQLZvTRVFt25IEag19lwc7dCch/iS6Qam4JoQNuwAFWE6MNz6Q\n5iqRBkJp6LVRxYGmneLtFElZdt0fs+Spva1drc/SpphxmweNQrs1du9plA+y\nnzVu8QdxGVrpOlB50rsCnjs/Z9w5Zkc0bTEzMW1GPNUCFdaPY8fhjuKrrEpz\n/+KXW4P0UxX/Td8nFqVvzg6/OT8EndcUNaJMPcKKAtJ142/J75e5tOdalaD7\n1K0k1jfmR3hgnAsRma7F0r/1qg2X5LqmO3j627b0CMc3uV5gvCSzfXnjnABV\nfw5+cV5Z5mJR9IX8W0vhyKSRl1S9z5OtrXgVH++sRyVnp/QFzFMQox9ShUJW\nvSiWK7sUbcOGb8pOt3zH2xE521GL3xnCWAGij5IYtQhRpe7zNv+6h+uXfIWT\n/lZW5SSP1kyC8a7jPfZlcB3r82cLapfHQojoaraZ6NrC8dTZCZTwuhqy/WAp\ndvyA\r\n=otrY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"deferred-leveldown.js","engines":{"node":">=10"},"gitHead":"242106a1bc9a692619989e648ad807fadedbde17","scripts":{"test":"standard && hallmark && nyc node test.js","coverage":"nyc report -r lcovonly","hallmark":"hallmark --fix","prepublishOnly":"npm run dependency-check","dependency-check":"dependency-check . test.js","test-browsers-local":"airtap --coverage test.js"},"_npmUser":{"name":"anonymous","email":"dev@vincentweevers.nl"},"repository":{"url":"git+https://github.com/Level/deferred-leveldown.git","type":"git"},"_npmVersion":"6.11.3","description":"A mock abstract-leveldown implementation that queues operations while a real abstract-leveldown instance is being opened","directories":{},"_nodeVersion":"12.11.1","dependencies":{"inherits":"^2.0.3","abstract-leveldown":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","tape":"^5.0.1","airtap":"^4.0.3","memdown":"^6.1.0","hallmark":"^3.1.0","standard":"^16.0.3","reachdown":"^1.0.0","dependency-check":"^3.3.0","airtap-playwright":"^1.0.1"},"_npmOperationalInternal":{"tmp":"tmp/deferred-leveldown_7.0.0_1633034166338_0.8005365485413085","host":"s3://npm-registry-packages"},"deprecated":"Superseded by abstract-level (https://github.com/Level/community#faq)"}},"name":"deferred-leveldown","time":{"created":"2013-09-17T12:13:04.408Z","modified":"2024-12-02T00:48:40.042Z","0.0.0":"2013-09-17T12:13:10.763Z","0.0.1":"2013-09-30T12:04:24.595Z","0.1.0":"2013-10-14T10:57:42.949Z","0.2.0":"2014-04-26T02:34:35.746Z","0.3.0":"2015-04-16T12:06:52.060Z","1.0.0":"2015-04-28T13:54:37.299Z","1.1.0":"2015-05-22T09:11:30.887Z","2.0.0-0":"2015-05-27T13:05:00.699Z","2.0.0-1":"2015-05-28T12:04:16.568Z","2.0.0-2":"2015-05-28T13:37:02.781Z","1.2.0":"2015-05-28T20:48:19.642Z","1.2.1":"2015-08-14T20:35:31.259Z","1.2.2":"2017-07-30T20:39:58.699Z","2.0.0":"2017-07-30T22:17:10.424Z","2.0.1":"2017-09-12T17:38:33.220Z","2.0.2":"2017-10-06T21:50:11.187Z","2.0.3":"2017-11-04T13:58:31.466Z","3.0.0":"2018-02-08T11:36:49.641Z","4.0.0":"2018-05-13T12:06:10.909Z","4.0.1":"2018-05-22T19:35:23.017Z","4.0.2":"2018-05-30T09:09:57.224Z","5.0.0":"2018-12-22T14:38:44.157Z","5.0.1":"2019-03-31T20:19:13.491Z","5.1.0":"2019-06-22T08:41:36.470Z","5.2.0":"2019-09-06T18:45:58.568Z","5.2.1":"2019-09-17T18:59:23.168Z","5.3.0":"2019-10-04T12:58:50.998Z","6.0.0":"2021-04-17T08:56:55.755Z","7.0.0":"2021-09-30T20:36:06.492Z"},"readmeFilename":"README.md","homepage":"https://github.com/Level/deferred-leveldown"}