{"maintainers":[{"email":"nopersonsmodules@gmail.com","name":"anonymous"}],"dist-tags":{"latest":"6.6.5","dev":"6.1.6"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"description":"partition levelup databases","readme":"# level-sublevel\n\nSeparate sections of levelup, with hooks!\n\n[![build status](https://secure.travis-ci.org/dominictarr/level-sublevel.png)](http://travis-ci.org/dominictarr/level-sublevel)\n\n[![testling badge](https://ci.testling.com/dominictarr/level-sublevel.png)](https://ci.testling.com/dominictarr/level-sublevel)\n\nThis module allows you to create seperate sections of a\n[levelup](https://github.com/rvagg/node-levelup) database,\nkinda like tables in an sql database, but evented, and ranged,\nfor real-time changing data.\n\n## level-sublevel@6 **BREAKING CHANGES**\n\nThe long awaited `level-sublevel` rewrite is out!\nYou are hearby warned this is a _significant breaking_ change.\nSo it's good to use it with a new project,\nThe user api is _mostly_ the same as before,\nbut the way that keys are _encoded_ has changed, and _this means\nyou cannot run 6 on a database you created with 5_.\n\nAlso, `createWriteStream` has been removed, in anticipation of [this\nchange](https://github.com/rvagg/node-levelup/pull/207) use something\nlike [level-write-stream](https://github.com/Raynos/level-write-stream)\n\n### Legacy Mode\n\nUsing leveldb with legacy mode is the simplest way to get the new sublevel\non top of a database that used old sublevel. Simply require sublevel like this:\n\n``` js\nvar level = require('level')\n                                   //  V *** require legacy.js ***\nvar sublevel = require('level-sublevel/legacy')\nvar db = sublevel(level(path))\n\n```\n\n### Migration Tool\n\n@calvinmetcalf has created a migration tool:\n[sublevel-migrate](https://github.com/calvinmetcalf/sublevel-migrate)\n\nThis can be used to copy an old level-sublevel into the new format.\n\n## Stability\n\nUnstable: Expect patches and features, possible api changes.\n\nThis module is working well, but may change in the future as its use is further explored.\n\n## Example\n\n``` js\nvar LevelUp = require('levelup')\nvar Sublevel = require('level-sublevel')\n\nvar db = Sublevel(LevelUp('/tmp/sublevel-example'))\nvar sub = db.sublevel('stuff')\n\n//put a key into the main levelup\ndb.put(key, value, function () {})\n\n//put a key into the sub-section!\nsub.put(key2, value, function () {})\n```\n\nSublevel prefixes each subsection so that it will not collide\nwith the outer db when saving or reading!\n\n## Hooks\n\nHooks are specially built into Sublevel so that you can \ndo all sorts of clever stuff, like generating views or\nlogs when records are inserted!\n\nRecords added via hooks will be atomically inserted with the triggering change.\n\n### Hooks Example\n\nWhenever a record is inserted,\nsave an index to it by the time it was inserted.\n\n``` js\nvar sub = db.sublevel('SEQ')\n\ndb.pre(function (ch, add) {\n  add({\n    key: ''+Date.now(), \n    value: ch.key, \n    type: 'put',\n    // NOTE: pass the destination db to add the value to that subsection!\n    prefix: sub\n  })\n})\n\ndb.put('key', 'VALUE', function (err) {\n  // read all the records inserted by the hook!\n  sub.createReadStream().on('data', console.log)\n})\n```\n\nNotice that the `prefix` property to `add()` is set to `sub`, which tells the hook to save the new record in the `sub` section.\n\n## Batches\n\nIn `sublevel` batches also support a `prefix: subdb` property,\nif set, this row will be inserted into that database section,\ninstead of the current section, similar to the `pre` hook above.\n\n``` js\nvar sub1 = db.sublevel('SUB_1')\nvar sub2 = db.sublevel('SUM_2')\n\nsub.batch([\n  {key: 'key', value: 'Value', type: 'put'},\n  {key: 'key', value: 'Value', type: 'put', prefix: sub2},\n], function (err) {...})\n```\n\n## License\n\nMIT\n\n","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"users":{"carlos8f":true,"johnbrett":true,"kaiquewdev":true,"axelav":true,"akiva":true,"nickleefly":true,"costi":true,"princetoad":true,"mmatto":true,"bojand":true,"hain":true,"rocket0191":true},"license":"MIT","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"versions":{"1.0.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"1.0.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6.1","rimraf":"~2.1.4","tape":"~0.2.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@1.0.0","dist":{"shasum":"573446b9af7e328353295fbdec6d202787d4d243","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-1.0.0.tgz","integrity":"sha512-8xzQJG0efsi6Emy5yvKWasdnjG9wgqUviGkexiDyFycTCkExFIfRgUsUGeHO76qBVeXFM1YBhfICMbKpvXGTzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/UxrY4TeiKnM3jxTroAtMTYTdZH4NM//hV3IJXzpkBgIgTEcOu7VaQu/vBYiyq4MwTf6BiTfSNvvfXbCQ5fekh/Q="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"1.0.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"1.0.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6.1","rimraf":"~2.1.4","tape":"~0.2.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@1.0.1","dist":{"shasum":"108574626036244df101d45040a42d46ec2fb4e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-1.0.1.tgz","integrity":"sha512-btkklpRLqRis1z/EJ5gTejQmAgGCzVMcWivnq2EBb+kCr3xCllcCDGw53WCq+oBLAC+K5qkPV4VDNI9ZtXr5vw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCji1K8GzcLwrLnk39qbMdebJXkK0nCenbFC0l1QfgsdQIhAPgqCr4UFB7keNVa2Je9/FBtJTJ79jfve01Mhp8LcFGg"}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"1.0.2":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"1.0.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6.1","rimraf":"~2.1.4","tape":"~0.2.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@1.0.2","dist":{"shasum":"3bfeab9d5f3921cadf67af34ad5072a02cd4d1b9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-1.0.2.tgz","integrity":"sha512-9OcvVS0jvCuvQtniI0P0cxNU5L/Ws++ba9a5gyUPoZUJAE0ZxfB7xjLNRE0WMSTLamMtKbRc6iECtTl8r+X0Iw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGWEfGyxMcd/ZMIx0vS1joawz1yr+L2Tz7oVC7pcxk/LAiEA6cPTIV8aMAy7VYMcHQNPDNbvZ7i9qIS5et1Y+c/ao70="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"1.0.3":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"1.0.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6.1","rimraf":"~2.1.4","tape":"~0.2.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@1.0.3","dist":{"shasum":"d634f8284268602a760f62dc3b75f649214d36c3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-1.0.3.tgz","integrity":"sha512-Nyf8C7+45paevyC9gw2FLa6jQK22/lH1hL0Nr1k/Vy2fO/9YVfWT98xhW6mEcJ3gWPeH3VAPMlCk94OuLQNo6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNmnag2Q7ve4dDMV6DdODyO01YpddcACnfiewvV5IhpwIhAJkYC7NfX72CRQKoB/cTd1I6mpTIIhYkDgAgNkZrBQpo"}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"1.0.4":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"1.0.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6.1","rimraf":"~2.1.4","tape":"~0.2.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@1.0.4","dist":{"shasum":"a16a5d1e1c256e5d01b66caacef525c287369045","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-1.0.4.tgz","integrity":"sha512-qkO6mnZ4wEBunCsQydGaflx6aag5ATE/rWB2mtGMjT1kovdAZ4S0tXvGpmTRaERlW/A2HeUY0ALULmqS1eP6yg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF77tZLdkLMmmkUMRsQYuzCX05nHrYH05fWdGgZGiG1+AiEAv51VTjRmHPBv30/a88NGqM8Is+iEW4tETyiiJv+ZsuM="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"2.0.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"2.0.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6.1","rimraf":"~2.1.4","tape":"~0.2.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@2.0.0","dist":{"shasum":"5712f4d95a411dff55f06b6e405c26210c4f1644","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-2.0.0.tgz","integrity":"sha512-dD1y62EJq3us8UL4R6SkMtxGMen6kMdC6pMFOouKiCquOJNnTnwRG54rKKgiLP0rYYSbFgkUUOuhJsnN5/dQuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuFU7wviNiyWb+yWqcWMTu655h2ln1OirEiEf0NqzjWQIhANUVKFvFSpUGNlmOeepAQdAr4vYhWqDBDuiyXDzesodA"}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"2.0.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"2.0.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6.1","rimraf":"~2.1.4","tape":"~0.2.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@2.0.1","dist":{"shasum":"fb4a8e26d35801cc189ad41c71a077408a2e5cc8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-2.0.1.tgz","integrity":"sha512-+phfw2VVw6hZd1rmfWkLPq7nmckuKWTwrAWg5VUgszUhfQ8wwVkBH9/wyZM/Z+iUz+zDMGPWjp7Gvo/PFYKMBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEYkNrOn73H5uIYlVQAyCg9elYJ/2n+jtUeXAHU2KoYzAiAWjAWYz3DaMD388FpTQN51MhPI+Ct58ahlo1D1nyIgag=="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"2.1.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"2.1.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@2.1.0","dist":{"shasum":"0c29ce03056b7493627d7441c6688ed20744c9e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-2.1.0.tgz","integrity":"sha512-lYjY9haHP05pVTOCnbUh09LVArs+I7+elefnLUNaRoQXacTao89xxeYauMBRIEktCcF3M804xvNLXFdFSUW36A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICSzWR1cw9kU62+BHW5qxD0HUk36K5KptN7/7Phep/iPAiBQ4Ne7wfLMqezyTADCU3RTaTgkrBb0c7FNekGnPMQTiA=="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"2.1.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"2.1.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@2.1.1","dist":{"shasum":"ebdaac88b393955e22dbb9d22ed0eae79702f84d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-2.1.1.tgz","integrity":"sha512-V7cYXxNmQQLesR4Ia5mq0TP/Ij02bNokVxH+duOscKCYZOyXM7t3yjYR/3XHWrx0sdsTcH7azIp88KK4hN8HxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCkawxOkR2rFda+biLbLv0KX3y8dDIUpu1QDLQqv/AexAIgPoMCYVer8+gwtSFvZWyEWAutu8pyU0znSHY/LJHGxqY="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.0.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.0.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.0.0","dist":{"shasum":"7d44c819e8d3df9e24c99de65956c5817d72f625","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.0.0.tgz","integrity":"sha512-LseQGPa4bnCdFbbieyV90saQBTfHxaBlkXRE7BC4iaO7USRMDo9I3L9Nsq+Kz3mQjb1JloiXr5NyAv1T8+bAJg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDY2nfb7VEFd4jj2nlXWBWbhev3KJ+t8rlzolXMnVDU+QIhAKYzocvrGn+P6TjzKmkiQc3OMHz+R8lmp7RfB7EyPqKm"}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.0.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.0.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.0.1","dist":{"shasum":"bb597105be42bae1dd0982466714bb76aeadd763","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.0.1.tgz","integrity":"sha512-KUwOOVbjBRvizh/XL6COcn1GbcPz2h/GK3x+soLRGychcy1XL8fq8JDl97vq7CBikvCC5N2xsZ9iaXWEU21zcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwSWIxMYOjIXbSqG1mxjechNBup+DbT2ecGeHALPfC7gIgaAizbPLmsp5Y1Q2/it8pL4d84+csbNhqBl62QKI6Bqg="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.1.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.1.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.1.0","dist":{"shasum":"b0733aa3991b387e05a41ea99f224f5e7141104f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.1.0.tgz","integrity":"sha512-G0jPs2h20ivy9vonbgRfoCfJavwfNn0EtI++aFaoqoD/VX+k35cbLmzvwGrS6rqYWmAWUD1dWCp+w4kJmect2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDNn/oZ9GYoMiFxgAHlxb3MP3aorbMqTzJWlB2Gy9zq4AiEAoqZojt59QHQiyUQIPKfEYhKFEngD5VAyRwDr53LdKTM="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.2.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.2.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.2.0","dist":{"shasum":"ab6685ae3d865e268c7cdb48e39933ab5edbb2ad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.2.0.tgz","integrity":"sha512-126G667STK8Q0T+5lLCVgrGpqix5j7f8KZwlx+xKlnmco401CNvyk0OCn1X1EUc/NoTcrS8iMIF7VrNwTbvTTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBdbaf+D8zKn6jZvOXWdgvME1wRhOLs/1khCvgTlmUCSAiBt9iYTr38NnsLNPRxWv7ZvjcMP8f0POCkPWEQYp2F2JA=="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.2.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.2.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.2.1","dist":{"shasum":"66a23fb403bc7bcb1c83a9960ad78b0ef3b8e31e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.2.1.tgz","integrity":"sha512-47OLTmxfL9n6pwSQPqEDHJwCBruRsiicvtv96Q6rOOCDEcKrQEAyrpirQf1hDPu0hPUIuOQkjJvs85fDaDLpbw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+2SHhw2jRHMwJUhSibx/kyminvWmlUBY4s/PwSl3DFwIgeP4zlgX0bpPM6MIUv7kWRB49qDq5gpbtW9lqPloa1tw="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.3.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.3.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.3.0","dist":{"shasum":"a16a3cc1bbe138884c38677e04aafb7d864f28cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.3.0.tgz","integrity":"sha512-PcCwdwQPTPRUJm6u+EZVDpE+VyP6jQGQIHv8vmRs6pdQHXGLvayNQCKkHHBVaH/XFmpYAuHwix1b3qLt1Q9Wag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDWcQomDY7ERY5VmKPUPpZTwvWP/1iRN7wjJurQxZB8ogIgKDViiR0vlOLUBM0oQWFeqngrrN+/360OBWyrg8XldAI="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.3.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.3.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~3.0.2"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.3.1","dist":{"shasum":"36c1090809b0e665c61874b6a01d2de138590d65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.3.1.tgz","integrity":"sha512-baOYGrVVLk3zP7pSefrkEKJBaAFyzCwFe3G1i0BecyB6G2oLyPoKXE9AbqUZ6cn763nw5x1vkkjZpYHEFTAXJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCCpFQrn7Mxqgco6wT3zHvg3KIuDmpCYH2j5NzC4nrpFwIgNJKBsWnK2flCppksKcgAxsYJ0pUL/C3+AfpXdTR1ixs="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"3.4.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"3.4.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.0","string-range":"~1.1"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@3.4.0","dist":{"shasum":"d01b82037671c05b5ac4dcba4232cc78825f5a9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-3.4.0.tgz","integrity":"sha512-VGCFGHuOZSup9di1943BPpJa9+93PKXD+ts1kksYQWDBG7NgeA3elLKh1582PmS7luNZ2ilEWclEBYPBMvp6AQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHxT1Hl848oQno2DolMi/l0qMevHzp9zqZRGeZFLdNerAiAFK4cB3B2mk7ChYVsqXQUaurHwt4VjiI8+qC+EJRyPSg=="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.0.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.0.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.0","string-range":"~1.1"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","_id":"level-sublevel@4.0.0","dist":{"shasum":"cc27b0cbde3c328f6df44dcc04a9391f0e8b8a87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.0.0.tgz","integrity":"sha512-0qqzDrx955ZLgJKdYrHsdNzBs9bhlE6lkMf5TS4GkBh3fm95AzuKzs/LZAOCJgja+WUOn0D05tzBkVr1LkqRkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2APdoDkvNp9PMH5POypD6OJPOZIFutsScsupd45IZ/QIhALrbNlmwHjGdZSZBB+RPjWB7diUzjQs7a8dU5IHFRWhP"}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.0.2":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.0.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.0","string-range":"~1.1"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.0.2","dist":{"shasum":"53ae5f3a0082a38a5ce49004e6d5d63d6f7fa8ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.0.2.tgz","integrity":"sha512-4c6GWnobG2zK+IcsL7RwR/F15oS0h9/+pOxvW8y3Ap1VGzt/cLNyJdic+LloeEyxAy1t5x8QeteD29iVBz7tQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+NTUXzwm9kilk0kv4DQmh7C1iOp1G6Su/D3j28V9N2QIgA2Jcb+znF0GtEYViLhCjWcwFeryILEiEnLPwvgOP2kQ="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.0.3":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.0.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.0","string-range":"~1.1"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.0.3","dist":{"shasum":"b5514c1b8b2a2f7f0ba67ac202da8e37391b343f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.0.3.tgz","integrity":"sha512-8GMA4zplp8yfrTDyWh/64S5mpOxOyRxRjevBKTLizHTYAEjOAqIJZ99nugI2K2WR02fyPXAmZ9CnKcb3DdtTRg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDyUsrbiFmiXJpoB3jDWzbBRnvnTlVemEIqfEIDQ3LXEQIgSnDeVT8xA0uyEdtzqaGvGDXGUOkYe++x+KvPge7cA0k="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.0.4":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.0.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2","level-fix-range":"~1.1.0"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.0.4","dist":{"shasum":"b0e9857471b1c02715580b5d265e39dbc00d7491","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.0.4.tgz","integrity":"sha512-yBaByAiVGQrEYDx8RcFz+6+SIzUQA/51ykFGriDQuIXt/6XJczxD2Qq0MMsPgdjSCA08jOBpXcaMke86ZW888g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF74+AFZPrZPndQ05CtT3y3/e6Ip6/1iCwklP2Ce7Q4eAiEA1PuKxXs4CiiTaqXCKmOSeH+X8mOLBe4ODIZUvTVGwvU="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.0.5":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.0.5","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2","level-fix-range":"~1.1.0"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.0.5","dist":{"shasum":"69e26ed213f2938f288168612229816134d3ca1b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.0.5.tgz","integrity":"sha512-LWk5lk4TwM38ljsmHRIY+jIzfR0xtjq8PD992EXvEIQQ2Ho0GIX2Qd2AZyEBIBrVTIrg6O2G8tWMx5y6fFvY/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGZy7DBJEM3/+ulMKjDv5wEwR6TB7YOnbSKhXRxuJx09AiEApteeTEalx0/TRylcA7KPN4zdNQFKUVoSBPFJXA4mJBE="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.1.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.1.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2","level-fix-range":"~1.1.0"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.1.0","dist":{"shasum":"4359cf90adf92adc8845a5e0d1d8e28499cfd448","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.1.0.tgz","integrity":"sha512-nAHRkbdw8V1fS46OF4E5uLqyc27V3meGw7J3hyxHAe3/gx5WLbMXldZFb3OZ38A8jy6aGQiJQhvygx+iW0IM9A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOjbqbVQRoK6zIP93flTt/+ZNxWKAOCJ1m0q0jdYfN0AIgdUm9CISqKCIQlAWJeOt/7MoDDbq1VTbj8bTGygnKFNY="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.1.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.1.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2","level-fix-range":"~1.1.0"},"devDependencies":{"levelup":"~0.6","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.1.1","dist":{"shasum":"a8bf90620e24e4d9072efaf9500f2784dc943360","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.1.1.tgz","integrity":"sha512-L2hcVWOknLZLPV8bdLVtxhLNj+tU8vRwWVlI8WYdmC8A5mE8c+iUJ6X8h7MWrhMWUyjyyM89MUOKHDY+YAhdww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICqjPcdnxRO5vRVVivmu+Pm7WRGJgaT7Pz4ZNmY0Cgs/AiEAlnmr9oljtdHFwFS9Y1j6GB6TD+UQEHyH0CyF8PvE+ds="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.1.2":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.1.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"git://github.com/dominictarr/node-levelup.git#installable-reverse","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.1.2","dist":{"shasum":"ce5311a7f94d275c122c8e53fc04a829cb8b8a99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.1.2.tgz","integrity":"sha512-p3stj8O20RlaOaQJQPtu4GKe9FO9Fry6EZeghj6baK/k6EgmY+fIxwfQ9cLsYW1WVVI6jQrGOog9dsYAQ6v8uA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICmy0ZwpxlzO6HpyVlqb8L5oY04xOi3GzH4kdz4Z7xfGAiBm8cwLc85lnIOob4LIT1xPs+rwSZcYj3QSgueN9+mPUQ=="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.1.3":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.1.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.1.3","dist":{"shasum":"eaf5c7cfbb8dae734aaa88ea9c51b7c5019c1107","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.1.3.tgz","integrity":"sha512-8I6NCpxyraTMxy7ZE78b0mfrpA7BVBNJCFlxVRguRdb2Nf10OMlGjESb9OAh0Oz7UqOZuCNgYLKqmaCagQmXxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDHkgjg70SDda+JqMBHPzAzn6YlaucBjpemtMFR8SuZVAIgD0Fh6sGVIYnHfUbMra4dZ0g2EaYwxHjsvD1TRDa2GjI="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.2.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.2.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.2.0","dist":{"shasum":"621bbe55cb6b41f3b578cc2745858c986d4b330a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.2.0.tgz","integrity":"sha512-pjy5VhhPtmeCHokTSd9MD3BWjWScNXEdNDaNKpA1ZLeJ9OqCMsKwe29GzzAc8PmAyY3y6RcuDTPqHqiGYyHXrQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCntpxUvnicX62ymzc0xWQwmeQTQnR7Fsu5sigeblcnygIgPn8h/6n6e4/unf8vjOLXsiPnKdtAUbyTxhqMRKcp0Uw="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.3.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.3.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.3.0","dist":{"shasum":"1c77fcfb446bb112eed1f7fa985452e4747287ee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.3.0.tgz","integrity":"sha512-lEC64qDTd2ASXz5onJgzf91xlH+IjzcffgEagjiVYMo+H0rL5piD2uCoe82A+RlGxHejWDv3b/Jsgs0TI1vPBQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyAYKxgFFJqrOP7JB8+Qq5HwXWJCR45PsGhhOz4ef51gIgbf8cCnjfLNFLAb9GLy8UG4ZzgsWfGyeB5ZzVwfQCTR0="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.3.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.3.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.3.1","dist":{"shasum":"47c77e65e14b65a008da826fde6f78992c2590be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.3.1.tgz","integrity":"sha512-FzKdRs67j8vqa8g7KnetflxGMZ5qs1C+f23WQb/2wDs6P42X42o6z0OKR7BIKiSUNpzfAzCTi0Ojm/xfcWhmvQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyl+p6B8pbd91f1jLj7tU2TDfCLO/9uo5ebeaZZzZJRwIgQ7lOWVoA5DrGPipC0dfSX9Yz26PmXKsbD+kNbQAlgIw="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.4.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.4.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.4.0","dist":{"shasum":"db3500231585a28d8ea6b23aedf5c70b25679b36","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.4.0.tgz","integrity":"sha512-jrvGNdtwvQeX3zWPa5uO6+OpRR7AWCst3ppzGLX3aKKbtB5QhEcy9DNAYFJQ4R+oqtRRsSDiwfsrl31lJytKFA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICgvbrgwaUAoyz86w/lUBXM44FK+8Hzy8cXLVR6ehTF+AiEAhXgeZ+mo6k+UJVjEiAZRS6R7DzqyD+jSQJy+9KRgx6E="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.5.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.5.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.3","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.5.0","dist":{"shasum":"beec5b603e11914e0739b7f74be663b0e23159e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.5.0.tgz","integrity":"sha512-hC0rDXcNqjEUQJRFBPcSIzc1/33+/dsBB70NtOhSwC3DtYV4+nVupPDkAPruQAHNlAwOtFnx8hFugLyxSfiy6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4wb3iUy9xKusLtJ4I57l6IosX4QbDlqzJSK44sOE50wIhAND5VBidtUPbswiro2g0kGENllWJ1F+i9qvHIZaElNAe"}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.4","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.0","dist":{"shasum":"39288aa5b5a029708189ed308dfbe56fdbcc136f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.0.tgz","integrity":"sha512-aY+vzKv2YjkF0adDJpaL56WIrV+c3vlHIDABxRu2WhGcVsVeyUG1sPfKQ/4qceN2HBLkGqF96CWs0UgwXBGNAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEsUq3m5+o7QhQcgKhBjJyS58xrtilJjOnLX/XJjrLZdAiA5J+FwmuSsn+gDk4TnrqcvamUG6nU6821ErojdjxMMsw=="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.1":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.6","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.1","dist":{"shasum":"0e6c68fa1221875da1ee80111beaa7459ddb418f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.1.tgz","integrity":"sha512-LrOUWJxeRiY6XSzNc7EFLpzjr7nQI8vjpQEphd1GEE2FnwY43/LHgkH9NXfzQdLt7/N5xs86fDyzlCsGAnTkYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICLhEW4thLOQzd8R1Ixeh7AU/OMLAg26D680ah75THJQAiBuggFeJ+FdoOgR8u5jSkHXboXhyf9fU4kRfh3fW71rLg=="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.2":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.6","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.7.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.2","dist":{"shasum":"bab49c22742df1f0f15a87e26758aacf66c0d740","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.2.tgz","integrity":"sha512-oxJbBCsshk+QgNLdbxa+NodaZ/A45/T5dgomD//92ixhKEHnytfcZyDL7qUz5ERZ1kMmUBXRnZqOi+XZjcXKgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDq6l9dI+ZM6OlxDF6TJU6dOs8L66hfIRvEKQAe0VK51gIgcbY/s9j3FV0yLnGxu/26o3APU9H/mQ26510VlpQXFKg="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.3":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.6","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.8.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.3","dist":{"shasum":"056f285026fc9d3d7f00165f8016360d39cd2c32","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.3.tgz","integrity":"sha512-ZdiCmAc7he8Es+IlwmuxLyZsxefc0+zfJnNhR4jp3DXFdiU00c8+drU2Nb7k+11spgDJyoNgMuQ2CDhGBKI+CQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC7XxBa7NfPbCFfI9xqwmNdC51TcvbVZA6dqXYGiZ5FcQIgfVsgWID5scgFAz0gkMiEDElF4I8FyAbw+PavIPVl71c="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.4":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.6","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"levelup":"~0.8.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.4","dist":{"shasum":"809f6c045a26e303f383f76981219e73bf5f3e30","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.4.tgz","integrity":"sha512-VGFtylKFnwx3xllpI723k2biX+JoFoJ/JIRTdJfMD/tU8I3dxmx+FMdeUwwj6kCDXQOrPNsx9MM4RtGvjsOTEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCCnuQDWfVV6IFtHGi43lgooRa/Wl1IsvEqO9GGiOZvuAIgKlg68NT61GKuEjQNqj+cL+P1F7sDbyZMalPqa5iEFIo="}]},"_from":".","_npmVersion":"1.2.3","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.5":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.5","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.10","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.5","dist":{"shasum":"48e99b7e24d9cf6699f0b5511d1ab35600b7f47d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.5.tgz","integrity":"sha512-JrO7Lxn6Gd2dR0uVY42fc8uQfxuTKCpXYC7JrFLPcvgAc8dQHRiCEma4rdBfJUpcGE4xPBfZaTry+fohIrhNgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQx7dkWaNNMT/3pkxmc4DogaSBupDbb9vb1DnBc41fTAIgE1AuSPQk5pztxmpvNjtdmuer0ntjPj1jCAIADujxTTE="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.6":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.6","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.10","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.6","dist":{"shasum":"77dc3d0062fe6aa8348e8c0223dd262403c83c2e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.6.tgz","integrity":"sha512-NzHyJfSHxpxzM6UvljgQYYvj5Cq5wG0+9yvW7cI8HHdfQioa2Fa/JO1rNnPmvOog93JHZuV5MVf5+ECPY+NSGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGqN9g+pk+aHRnNa+iY8MJrGC65gzbcytsdaAKowj9vpAiAh8VLmUUy67trqTDkHr4gtFB9E3ONkBcdHomQ29WznoQ=="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.7":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.7","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.10","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.7","dist":{"shasum":"7eee480bfde0c95c82a85952055d8600db78e2dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.7.tgz","integrity":"sha512-hLw3RiwURhCDBOwSTsjgfSMgL8KYUiQ6QW6bzXGxaQlmOuflMZdO9t20bgmNaXIKk2erT3GNyzkLa+uUr0ilbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdaZOrFzZa13FP3ruoRR4NH7nE0eK708pz/9w6Jm1jHgIhAOCcAOUn5QgJHcDWFygCnrfclqF7fhzg0NPp4iK+b3os"}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.8":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.8","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.10","string-range":"~1.2.1","level-fix-range":"~1.1.2"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.8","dist":{"shasum":"31913bbbc2f088604a0a990ae989c5b81f91593f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.8.tgz","integrity":"sha512-sjZ0EwcRsCuTZc0KcVS5vAKXFpwB5F+V24aCK2MSDUK0z0gJkVuaayF+N0iLattYZ/7UBUfqtM58VxhWs+cegA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcD5WbxnwBgJUV7K7hIlcRc1h/2M42d8znUGlNXAPDgQIgB8sCjQTdK+ilCa1gI/NDayxZYeMhdo16qLLI3LO3Rms="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.9":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.9","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.10","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.9","dist":{"shasum":"3586a1dcc52ee8bf063d5ccf3c48adcf360cd24c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.9.tgz","integrity":"sha512-ElfWgbmvXmaF3KljSlKmzlUMA1u7FezYPu6rRFh9u29imZIcsU4xDIv0i1g2kbcKDqJO80atAsxBSIvoFyeUbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLjjDPltlvBSnwNd8dkaw/Jh6ApjTquZUOhQtQZxXtnAIhAJmSfjCd/Lw82NJkyWu03bdg8OCSPXeyYAvEi8gm5UEq"}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.10":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.10","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.10","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.10","dist":{"shasum":"ab23ba009f5bb911f8a4dbee46cf42f80674d1bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.10.tgz","integrity":"sha512-/EVysMhGhYjfq7K5077y+mXjUIImmEWzYQM2/HdUQGJ0l+Igj1Fw4sBJhouwEDKKyrXbDAug0SBvJNvQ0NYemw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIASFtd2dF2B8/TFtOTMG/CNEJar1DtXM0DgSaX5WG5j7AiBYpA474XJfciCTevzeGxEEon8ZE5vJBiZaSeelHjISaQ=="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.11":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.11","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":"~4.1.10","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.11","dist":{"shasum":"9cf358533bedac90dddefbef307e14d891f17313","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.11.tgz","integrity":"sha512-zFcwExYaa4vkMtURISu3fgsS/2Qk7JIpAzNfBIOC7RRMrVYiBjovCM1CkUrmmnU/HUYPE9div5wY0yCocZ+E4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpQOcbBml1MouHQjo/D4qmKw9pimKiYXhkHyJUdizEVgIhAPSW6zHEh/o7DSzoX+0Qdmf0HYI8HjELB234YcxLWTdi"}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.12":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.12","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.2 <5","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.12","dist":{"shasum":"d8d857035eee060d7c50b24f5f6b030ed6f83a4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.12.tgz","integrity":"sha512-WdweIR7pRsq6XGWsuCYIskxlseFyWeCkQ89D7/poJ5Qg/W+toGxSOFz3gLHVglNVY8r9pqX5LKWcXCpR3XST0w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE4n1nqsVvqbCU/AqtnUdyyuRnazfPU2qHqzmh5ZUKCCAiBILi4VZPvo4DAlmh1ZxT/dw2xIyUT3Jth+Q2gCTBGx8g=="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.6.13":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.6.13","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.2 <5","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.6.13","dist":{"shasum":"b5b6e84fbbc95c534c40ed7a85d2e4e3292fad1a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.6.13.tgz","integrity":"sha512-xKobGrfFQlmDhHieszI1nyx3Vz9AVp+jO3M2sGUjxVz85UNDSt9vYa5dYrIpcPHt48SqzPmXM5xLgwBOOIjsUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnTuETJ+ansx5kO4lmDLHqisA3j3HH7nosQ02b197qOgIhANbezIrcuny7hvZUcRT0bdNxwu2PWIrjg884cRoi0Mjo"}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.7.0":{"name":"level-sublevel","description":"Separate sections of levelup, with hooks!","version":"4.7.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.3.2 <5","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","_id":"level-sublevel@4.7.0","dist":{"shasum":"3616886b53ff10a8f64ce06ff76aa3e5a71f7378","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.7.0.tgz","integrity":"sha512-hPYSz03Qj2HcdHYTn0wADfDBtmY+klzqfU0LYFT6J1pr63jTTwxrVao74szdWrw9tquNMNgkqoGTGoqUa6VQ8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICxuoZaaPr0Wwe/XJIjmCYDieNyKu4HMTh/oGaLfDK64AiEA2pUNsyfkaSsC9plGeYNHcK4mM1fEsVcBYHla047/K+c="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.7.1":{"name":"level-sublevel","description":"partition levelup databases","version":"4.7.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.3.2 <5","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","tape":"~0.2.2","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@4.7.1","dist":{"shasum":"30456d451864c1729eb407958f6c917372db9e24","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.7.1.tgz","integrity":"sha512-/9vp1Oy18sKNapPjg2zzadB/xNf/HDP08qX0MWCIInpZebhYyYBVXEUzZ0ZgaydKve+U8RB7cf2TQMskgWVIbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICdbJtG/5J7KcF1B1U1dEHbgwrFiipH07gfCoUncSoQqAiBG4UbO1w+edXdckyvClrJpLk0ikccOhHBfs5bFU1taXg=="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.8.0":{"name":"level-sublevel","description":"partition levelup databases","version":"4.8.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.1.1","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@4.8.0","dist":{"shasum":"59942d9aa3a7af290f9b084bb740fab48ab0fe9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.8.0.tgz","integrity":"sha512-HlWBfyP+/wPLpUKUhoFURUpN2SVqAe+emQefVTK+RGQKHGwnKXzEgdNUVNm7CF/hA4nkP15tgh9MlkKEo0nWtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBsc5IE0/vwYueAIxMLVQivRQX+Gb4NUNB7T8QQqO0XXAiEAq3TlK0YE0DlSGKZ1h2tL7rBvQ2V0hfwe7g3OQWPsu1o="}]},"_from":".","_npmVersion":"1.3.0","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.8.1":{"name":"level-sublevel","description":"partition levelup databases","version":"4.8.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"~1.1.2","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@4.8.1","dist":{"shasum":"acb9aa0f990d25db8691de19e825b210e4ae7d4f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.8.1.tgz","integrity":"sha512-9HbnrzWCufJcVqajgTQrpiVtB7UGa52xpHaA/68Lz31nei+OgWtyEE+Zk+0y5je5hYRimswS7cBQu3fvheYrcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBy54hMpVxK5UFg+XPvNpePeMlUGmE1yUOyG8DXbhrzQIhAJ2XICpySQ84Hzx5Y9CbM6qovRGYaSRGbS/yKjv5RYs1"}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.8.2":{"name":"level-sublevel","description":"partition levelup databases","version":"4.8.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@4.8.2","dist":{"shasum":"1eba054d4f4b7463cf8e904d8831b6a2fff4ef08","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.8.2.tgz","integrity":"sha512-XA7IOxVBIMJeq1XdCGdQ44DAx5jUnxionVI/3iVYZ45B9ceDcNLNFfmdx0DBalD96v56hVG/y+d7iUEX8C9qWA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFbcnwFGsgbb3/tfssFuOP7bTN+5uuw5je48Uap+1hy4AiAlXjEGiDJguwFtMwCFe23V0UwmDyPVOz1qV2xZNwQ1sw=="}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"4.8.3":{"name":"level-sublevel","description":"partition levelup databases","version":"4.8.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@4.8.3","dist":{"shasum":"f4db06ab1ffde01a5b9fcbd4acdd7b0baaad0f2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-4.8.3.tgz","integrity":"sha512-KlBiJ7xR6d0DfrPDKsmFC7NzJ35HhjFzGo49EYSGSAtp2fJxCvgpW5iL7ODiXfAtdX8xAfCjFXVTBn7tJztNtg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDGbKKN6M2c+8ch9zpGP10z8laSF4VC+uHZZu1hh9hUpAiAGW9iGiiKnmA472gKubfFZEk01pR2U6NXu0i+rhQ7WxQ=="}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"5.0.0":{"name":"level-sublevel","description":"partition levelup databases","version":"5.0.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@5.0.0","dist":{"shasum":"be2a9c9e8bdc8f17e11ee418f345a4137028d93a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-5.0.0.tgz","integrity":"sha512-te+9l1qtnJE5Ji/g6vUuFxXxGrsQqsiGywGhwWa3Oa2eF8I5RvJKIZCm4QzucIcWDECq4Wx6fxIzey2ouKAOFw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGI11YvKKQpjWoulHj6Z4htYBHE+x+yK22eB1zkDFGnrAiEA/RvyoHlJj7LkOg/Dp7Kg1Gp/F2PdOeIb4UuhcWqwh54="}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"5.0.1":{"name":"level-sublevel","description":"partition levelup databases","version":"5.0.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"level":"~0.9.0","rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@5.0.1","dist":{"shasum":"74cc8075963bf092320448a1d7f104a36a010f7f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-5.0.1.tgz","integrity":"sha512-SmBjKS3TFukVLMt5/XYg6cabpS69Yk6JZST39B3UtbwnUNe1fOSsPOQXJwc8zodI6e8dahoB47ttJ4qOBHZLUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFOVDx2oLsLrz/GBtNJMAPjkQTnVqLdGoDod5ntr8OAZAiEAvo0G3V8yQOT3R186WNsAEuSBVrulFuxMyh5Us4zRc/E="}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"5.1.0":{"name":"level-sublevel","description":"partition levelup databases","version":"5.1.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4","level":"~0.15.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@5.1.0","dist":{"shasum":"1d6b92607ecc0b4e3417d07fab5318917266f61d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-5.1.0.tgz","integrity":"sha512-XjftWDzT8iRQyv0yrLZBthM35Mj+Ivxpbz6nKzsgOvvKoIurTHf+yyFAOeP2qzolAPxc3I4ngaFScDq4HqctYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDf3lT71FnGXIIB3BVly5xHPX+TE7KbniH1jp5wQUIq2wIgEZij3O5UIZcZrV1j4ZGz2b4xNAsj1KaHpsZzz6OwD9c="}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"5.1.1":{"name":"level-sublevel","description":"partition levelup databases","version":"5.1.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4","through":"~2.3.4","level":"~0.15.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@5.1.1","dist":{"shasum":"b4053d059295d99dd5967c40b86b29dc58e24653","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-5.1.1.tgz","integrity":"sha512-vyxaNCNwSb1I5qUm7H4m5C22AfYiZhbkKuaZurX1G4k4oCU0YvUBPokMdahmo+9n1r6JZo6Yap0yrXCfmIGkYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2JmD5Qo6NukdOa1jQVVk0ID7iNeqcDj3TDcjANhufWQIhALbqUF4/ibPrxUgxTXjolMiT+3rXO2+Xj8KzwMenIy9k"}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"5.2.0":{"name":"level-sublevel","description":"partition levelup databases","version":"5.2.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4","through":"~2.3.4","level":"~0.15.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":"Dominic Tarr <dominic.tarr@gmail.com> (http://dominictarr.com)","license":"MIT","stability":"unstable","dist":{"shasum":"63dc3abf0c82bc863a468abbb2b65875d1c88906","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-5.2.0.tgz","integrity":"sha512-IEsS3eoofep0VptF+BsZJOwLwN2+vgH5S34yQ7XH6DMzHsy8mpLkRYuTPUMJP8/G6ZjOMuDjO5MCcQ06sIFzRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCP9imVmSYd7PcD5MTea7LWRjJfGe4Zyf0zlCzQV2R03wIgDssz7p87Aj4DS/yiBcnHylyWvjfF8zcDSoAYApOsvdc="}]},"_id":"level-sublevel@5.2.0","maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"6.0.0":{"name":"level-sublevel","description":"partition levelup databases","version":"6.0.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","pull-stream":"~2.21.0","xtend":"~2.0.4","ltgt":"~1.0.2"},"devDependencies":{"levelup":"dominictarr/node-levelup#inject","bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.0.0","_shasum":"29134594ad06e8cca36ea6db7396a55f3ca796de","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"29134594ad06e8cca36ea6db7396a55f3ca796de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.0.0.tgz","integrity":"sha512-ujMzq7FG6V5LI0YKJYIlux1H+PHi+w1V8YF3zgHxGoV0J6+7X/pZGHdpNiNywZkfztwqqERJO5pMeKZse4GKKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDT6/tCfF8D0uctlMiZC2hFJjQwHgsdcUdYJE6moHT3DQIgATSysBn5ITiyE8AVeuKip93/ekHWqZqpS6t0q8ChhDQ="}]},"directories":{}},"6.1.0":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","pull-stream":"~2.21.0","xtend":"~2.0.4","ltgt":"~1.0.2"},"devDependencies":{"levelup":"dominictarr/node-levelup#inject","bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.0","_shasum":"b992b63f6eeb1e665d81054b20c9e4c187034887","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"b992b63f6eeb1e665d81054b20c9e4c187034887","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.0.tgz","integrity":"sha512-70i6mVwU0KsTCgJCZlq98DreUd4Yd7LPOsz0Q5IkGzq/No3MpSGIPY2FG7aOlFEP6D1pUFUvUsH/FPhYdeNplQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCewVJYVopqJFOCWUVS8+VJ7Mcv9y+fwvmU5jzCwFuOvgIgVBQF5nbKQrJ06A2VeyLqq5hZZhHYh/af3mX/Bl3y6TI="}]},"directories":{}},"6.1.1":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","pull-stream":"~2.21.0","xtend":"~2.0.4","ltgt":"~1.0.2","deferred-leveldown":"~0.2.0"},"devDependencies":{"levelup":"git:github.com:dominictarr/node-levelup.git#inject","bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.1","_shasum":"e36c39c14ece736c9b46f83352630f93cbd0ca8f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"e36c39c14ece736c9b46f83352630f93cbd0ca8f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.1.tgz","integrity":"sha512-PpqT7cTHu308f4O7fOhed6nv4/YrjKgvPUZ7oBHf/ZiYPZUi1f7IwXKX4R9zVUntREhWXM3zbOuMq63f1+nt1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAXYWH66s3mSzcF3znFQH0OsVDZfMapHV9+k8T9SzsNQAiAvAOfv1QfmWQEsG53EjBdnZO8YvNtfoWqZegI0mDaZSQ=="}]},"directories":{}},"6.1.2":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","deferred-leveldown":"~0.2.0","levelup":"https://github.com/dominictarr/node-levelup.git#inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.2","_shasum":"5c76c219635b8dee0c4c0dafe8125b3e02de9a2f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"5c76c219635b8dee0c4c0dafe8125b3e02de9a2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.2.tgz","integrity":"sha512-RsJXFeiFxjMMX3mCcq+1azoaMb8TSZziuUV0ZrmC9Gvk8Kf3ci7DbXI2oNrxMmeenPuFVcG/MgajqHOzGVNhTQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCiHHyZuUMQjqMRzdoRn5T8I3ARxfkTVYGa9lTKD2ExhQIgewHm63BayP8JNDbD6rlP897opibAsyzPCecHVUrqxwA="}]},"directories":{}},"6.1.4":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","deferred-leveldown":"~0.2.0","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.4","_shasum":"5e7d47f20d6d15bb89d1219a615a4379b9c4d601","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"5e7d47f20d6d15bb89d1219a615a4379b9c4d601","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.4.tgz","integrity":"sha512-ZqhOeg/P5T4EOIdxE9q9LaMPuGLXumUHYFEDELKM/oQZEUc9j3x4utFre3e9Ld2SQNGfFUbJntgockiJ59s9nA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBadWvygNb55WbzD6LDv3NricJKNTO6rssMx/+BrIfWAIgV/KNqi0bnOKuFJKJyYbx04DRZ56KnmhbRaOk0z1xBZQ="}]},"directories":{}},"6.1.5":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.5","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","deferred-leveldown":"~0.2.0","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.5","_shasum":"553389519ecdbb2a8d9608275e02c67faa77469c","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"553389519ecdbb2a8d9608275e02c67faa77469c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.5.tgz","integrity":"sha512-TyfG/YnQhYljdlJU6f1eqpemcVRXZh9V5/0g6tzJBETqDTZvUJdes5XFbCy3gw4LROIZAHduo8yJ8F/fqS4l6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJmLXSrqt9kY3ikwYqlByY6HKx/P7k5sqTiSBwcSld8AIgZRPSMBqYifRoYLdpIWVQwhqi765N1kCb1APj1pQ0srs="}]},"directories":{}},"6.1.6":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.6","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","deferred-leveldown":"~0.2.0","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.6","_shasum":"09995e94882b5fc84a270dc5578014c4ac47242f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"09995e94882b5fc84a270dc5578014c4ac47242f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.6.tgz","integrity":"sha512-l1bHvVXDBEdV8dLMmFBY90WDVyVFALJWWtmoDYwk2n3ckzcHxtoXfk11/xtJiuDjthUWhQ5+1vAqtzrasopiAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF7njxaYkO0te8uIXWx18SYifO3DJ/qusTyGrpz4SY58AiEA1jAj7kEfW7z8eSIapjTQO3HivLNb5BIoDJ/ymnQmV6Y="}]},"directories":{}},"6.1.7":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.7","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","deferred-leveldown":"~0.2.0","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.7","_shasum":"df87d5fd8c8409be5b038d349983a6c47449393f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"df87d5fd8c8409be5b038d349983a6c47449393f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.7.tgz","integrity":"sha512-50PBjsizQ6NPxf/oqMbhmzbdcThEihU1Ur6pCdIMNp/J1ZzWyObN71AwX94dvwvq8sVkpgMnShh5LbQgRQ+DGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGDKgyz+LKBJPz0iNYOKp8ZZEBtJddYyW3ERZEXo9wWkAiEAz5NYjWFtLDUvDoXClGHo7hKDUk8BfOuJeelKior8lsg="}]},"directories":{}},"6.1.8":{"name":"level-sublevel","description":"partition levelup databases","version":"6.1.8","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","deferred-leveldown":"~0.2.0","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.1.8","_shasum":"fe5d71d3b2d07989593b41f401dce15bf4424140","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"fe5d71d3b2d07989593b41f401dce15bf4424140","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.1.8.tgz","integrity":"sha512-+bWfiuB6QFiKcjFwQfoWu+zj8rZXQANeJlBCEDKBkAl+1P6SE1nRHdaLp3wxZ/dFvVBjqzS2rK/UKPclbhb/pA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDlfk/Bq3FCt5WXJmrqF3RNjGH69hoI23IY7imi9h956QIgU6VxzYekSKdDpTH4EwaEeR2a+UDMlfWwnzNhN6gV//U="}]},"directories":{}},"6.2.0":{"name":"level-sublevel","description":"partition levelup databases","version":"6.2.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.2.0","_shasum":"02b8a9645bc0a752d108a5c721f67790e22d3893","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"02b8a9645bc0a752d108a5c721f67790e22d3893","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.2.0.tgz","integrity":"sha512-KKQlUyU/MSjvQ+8nEzuiJnKv5snfDdOP+4aevCWGltHhI9l1Yy8VHRxKNErgG1b/zEhL70K/+TH1JLHc0aWa8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFtgMmVlrBC4L7tRZuOoc+K3OUJJHKmDvXOdd66Y+V91AiEArvQ0s5XdSEmToxyjm8n4nGzW5+OljXRB619tslWAm00="}]},"directories":{}},"6.2.1":{"name":"level-sublevel","description":"partition levelup databases","version":"6.2.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.2.1","_shasum":"5d622885fbd113fb98867e5d6717e51e140c2b8f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"5d622885fbd113fb98867e5d6717e51e140c2b8f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.2.1.tgz","integrity":"sha512-Qgjw1IGCzdTj1urDXFX0lR0UECXw3tnIiQV9M4MGaEE0ZZIQcNoBUybO4aXX7QRymxJHdGr3rk9Ksv7pOr317g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGzSLuJOgcuZMP/oOWbGXJspP4dzUcoZxsu0yvTnsPslAiBHgZUAqzye8eM/KWB0BNJbWT90nbWSa2n8f2hwsH774g=="}]},"directories":{}},"6.2.2":{"name":"level-sublevel","description":"partition levelup databases","version":"6.2.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.2.2","_shasum":"2920a34fedf666391caa15b9f2e6f739a7bdf349","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"2920a34fedf666391caa15b9f2e6f739a7bdf349","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.2.2.tgz","integrity":"sha512-DfHLHeHpVNw4/aNeX1KGJlt/G8hUim1sGV/VhJ/wgiAuOCy1It5GLG7cV4vjrUjKFIlJhomsohoVNW7GVRRDTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCe50cdItLoiCnoHVc0zLy++kXwAtvlqWJOwgBWTLJcIgIhAOeqFwOX1FX31nMCYjwg0F3mJG5Fy0shEO0EOzXgV4fh"}]},"directories":{}},"6.3.0":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject","xtend":"~4.0.0"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.0","_shasum":"ce18ed736beeac70e33ef5f427992892ff840bf3","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"ce18ed736beeac70e33ef5f427992892ff840bf3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.0.tgz","integrity":"sha512-IFM6WNPR2oMeCGn40OkCknf904M9US6V0Wl2OKEV0a0OBvadmrSDOInGteixewOZxfVpr6Sa2Ri5yCL9yZrz9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwRHt1rv5gY5fDJjytR0BJEp9Xk80lOzikLShKVf6tKwIhAL2LFZ/z8ZKcgQK1tb+7b9nsvg9rqZzJwCDYeGKBULAT"}]},"directories":{}},"6.3.1":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject","xtend":"~4.0.0"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.1","_shasum":"fcf2133108b8ee90e39045c318712a30d62ee6a9","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"fcf2133108b8ee90e39045c318712a30d62ee6a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.1.tgz","integrity":"sha512-puOD4t+y4vyuxwEifbmlRVU4EX61kEq0gJ6g8RWy6h5s8LOsPi+/OszQ0KseTrWLaKgq6PXeGdTeZ0Pif3IqdA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGIEfAXcVmXXyYdwJmYNKxjqgRz1xOqKyQIEQD0Kne8IAiBTHoE+3iK02Kw6TfachENGkQoYUZ3njMXi+9kapkoyIg=="}]},"directories":{}},"6.3.2":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"https://codeload.github.com/dominictarr/node-levelup/tar.gz/inject","xtend":"~4.0.0"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"1b18e9fd887c8fc18fd2aacd25e7e6c219c94918","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.2","_shasum":"bfdbc2ea9d18a8ae29e9a762493c62e128745c28","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"bfdbc2ea9d18a8ae29e9a762493c62e128745c28","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.2.tgz","integrity":"sha512-vJ7PiAYj4co5g2CBxOq/YGQfbugYGJ7lRve2wjutxVXl0a8CA4E5ZvdW3rNKfLhhdL58KEpvnWUN0qC3mQWegQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6ODHA1Nwhad6/nTOsbYqd4NwQbLMwtlJosz8Y1Cpn1wIhALiCpeagDRVGHlUGzjOYoxImR9HWm4A9AgIuGmnXPg0C"}]},"directories":{}},"5.2.2":{"name":"level-sublevel","description":"partition levelup databases","version":"5.2.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":">=1.5.1 <2","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4","through":"~2.3.4","level":"~0.15.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","gitHead":"b93605c3b615224b8b871194e1d2f4bf6b94401b","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@5.2.2","_shasum":"2ec24950a6ef074d540773d1d9526f983c6e68f2","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"2ec24950a6ef074d540773d1d9526f983c6e68f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-5.2.2.tgz","integrity":"sha512-gli+VHS7fXLE8HPWGvs8tGvO1s5gR7SignrgIq5RpvCUbFCqsXJ5TT+84zWxw6hkOvCL6Q6G2sx4Fm4fhLuGQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDCPHn/iGD8WGdvzHw0PDC8guYapn8NMmind9fkwrdZFAiEA21d7sxU20478d8lBSiAW1D9mPkY11Ky7w9K1i4433SA="}]},"directories":{}},"5.2.3":{"name":"level-sublevel","description":"partition levelup databases","version":"5.2.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"level-hooks":">=4.4.0 <5","string-range":"~1.2.1","level-fix-range":"2.0","xtend":"~2.0.4"},"devDependencies":{"rimraf":"~2.1.4","shasum":"0.0.2","monotonic-timestamp":"0.0.8","pull-stream":"~2.18.2","pull-level":"~1.1.1","level-test":"~1.6.3","stream-to-pull-stream":"~1.2.0","tape":"~1.0.4","through":"~2.3.4","level":"~0.15.0"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","gitHead":"e27d6bc1a5eaedf28312a2d3cb118615f87e1233","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@5.2.3","_shasum":"744c12c72d2e72be78dde3b9b5cd84d62191413a","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"744c12c72d2e72be78dde3b9b5cd84d62191413a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-5.2.3.tgz","integrity":"sha512-tO8jrFp+QZYrxx/Gnmjawuh1UBiifpvKNAcm4KCogesWr1Nm2+ckARitf+Oo7xg4OHqMW76eAqQ204BoIlscjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDUZ3H3eY60AoiDPz0NIHJiQpZ/jt13JSf6NWXDEyCpAAIhAMtiYAcAFKOZuYdoX0toAGzWPmTwJfGG5Tujpsp/Bxx0"}]},"directories":{}},"6.3.4":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"~0.19.0","xtend":"~4.0.0"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.13.3","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"1b4855e8848065baef743d14603ae877ec66cf0b","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.4","_shasum":"15dc5b1b71ac5f40b8f6b1ed6b06096be8b08ae5","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"15dc5b1b71ac5f40b8f6b1ed6b06096be8b08ae5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.4.tgz","integrity":"sha512-ZaMPrk9gE7hppvnNhuCd5DGMuRbm5wI4pZwLBLTvn21gIb7scAeGxoFpzSny0fmV5IJVt2YIYXSWdtJreaxhMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWElGEzLEGZN5HxGHnu7mtzaxctCqGGpAcxag4I2mDzgIhAMaraLugmihNPxdHy93ZjiYBcQeF+F7OLV28DiSsuaVm"}]},"directories":{}},"6.3.6":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.6","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"~0.19.0","xtend":"~4.0.0"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"0c4e82a12ac027968e9c89f060bc87284f88f55b","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.6","_shasum":"6b712cb518c34efa2ca66c11fca2a706948d877c","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"6b712cb518c34efa2ca66c11fca2a706948d877c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.6.tgz","integrity":"sha512-o/pe5qk/8VWrL57cLjlYsTIzHgW0nXhfbbIYzTN7u+0wUOFZdaNAfkl3urTZf+aYB1iJjQVTaMZL2Hlrs3ep3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFO6egqErIO60E0A9FrhmjSPUqlR8ZH+rT3E6gUyVbYpAiAekEEpZyuxtD3PAJPAJowKvDmkkjWdhG2Ft2oztgKj3A=="}]},"directories":{}},"6.3.7":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.7","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"~0.19.0","xtend":"~4.0.0"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"4c03852832b2b44d66e75a7d7d4c45c896b119a7","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.7","_shasum":"cd920ea46e0ab21ab3d7be4d2ad96dfd2cff72d6","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"cd920ea46e0ab21ab3d7be4d2ad96dfd2cff72d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.7.tgz","integrity":"sha512-w8aZ7M6bNzoZAEeN1dTgqAzyeoj36VnbsSJJ+Y/3j0pwU7p0S952/AkZG7+EpCU9wRhXERXtFK85FEVSRwcO2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsjun5hMzHkdQcp9qy8D+9NsHKWwzYDCtsDbGymR6e9gIgT3jp4cYif6OQevnSeRX+rf1RDwZd35YV1wJkZjF3a2o="}]},"directories":{}},"6.3.8":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.8","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"~0.19.0","xtend":"~4.0.0"},"devDependencies":{"bytewise":"~0.7.0","level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"af200a14a6182ab6c785cb670fac256840e43fc4","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.8","_shasum":"a7babd36af902a5723a3327f7c54bfc6d3b5545e","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"a7babd36af902a5723a3327f7c54bfc6d3b5545e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.8.tgz","integrity":"sha512-ArFb5GbO8hr/hZl+z5JmqCIBQ/XKB57heevQSZWf7nG0fT4qH/Sx/t0vAjNnZ9wkeoEYBZ6aXKM6Zdc8+pqm1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLPaPatnaVXW+gLCVxnDusQ+lYjdfx+mt8TELg7aytnwIgQlSkUPg384TJ/KH/FGPwfpA4YMc92aHt61ICyp7CEWw="}]},"directories":{}},"6.3.11":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.11","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"2bd7f57d3ec138d9958b5b455b55a93c99ce2345","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.11","_shasum":"b3d32946fde459ff942075b686318965696a90fc","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"b3d32946fde459ff942075b686318965696a90fc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.11.tgz","integrity":"sha512-tBFugkNLCjFPFR6pCdMkUd6h8ZKXlfbbZDlKEFnudIiBh/1aVSEHrSWxhiol34Z/60Flcff9WuGhEUVTmzZMAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMXMcbGz5YRut5CkWX29tVKbVj+Oytsm341y2J8wT7NgIhAODlCsvNaeQpLnu0doRM8/RDlJze0W1LGzy+ZM57B0Xq"}]},"directories":{}},"6.3.12":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.12","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"23ad4f9603d5095a3b2adabb3e8cb39d9b4d131b","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.12","_shasum":"d664ae84a68d45b51fed047a7000c4561ffba0a9","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"d664ae84a68d45b51fed047a7000c4561ffba0a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.12.tgz","integrity":"sha512-wAgncpYOFhdgyZ25MdAwoAt5l0sDd6chLoY2r2M0QLhFE0RjIUOfJVJAX84gHYvYOqV3nITI2YBtPLaYvsh1sA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcgdW0Eernnh0da9eHoIMGd+WlE8alp/SYGlnLC7Ok+QIhAK5eR6e4crgyaISaeSFN6qQ+bqor9V+ccU66JdHdCi8d"}]},"directories":{}},"6.3.13":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.13","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.0.2","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"9238047e6597791f17fee47e48c51cd7583eb271","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.13","_shasum":"945a5689edaf84d2eeb2fc4bbc5caa32de377ca6","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"945a5689edaf84d2eeb2fc4bbc5caa32de377ca6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.13.tgz","integrity":"sha512-/huYaL6dnKWLGxtnxqxZYaAcN15ATLw4YhphX+Bx1ENZGmM4wMTU9EMaz3/uS34vTwEKPFnIgdbV4UPbmzyqcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDiGGkXuli66PQ97Ry6YAUMeRM7duCzftYM/42FwcvbuwIhAKZm2LeXcoLIiUQpTUCp/0rsjCuMEikqT942lIOekqr7"}]},"directories":{}},"6.3.14":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.14","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~1.1.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"11017d577ff6b5c177d28f89a44d5d5ea2388506","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.14","_shasum":"2c0c414eec36248d011413b5f028aa04c5e5111d","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"2c0c414eec36248d011413b5f028aa04c5e5111d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.14.tgz","integrity":"sha512-56JxRt1nHc4vR19lOEIgnMgdH4wGnDOzzjWEwcLHCqFTbzceejPuicQOk/+8TVqAvAkFS+X1YKgkLwDyo6kTFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2EL/CFBHlZIAeQ+1ysGx1PCVxYvYp2oTpRRTMf+xijQIhALU60E0GKO2pZH4ZRdUI6wL8BxNGtf7djJSSQeBrKxlq"}]},"directories":{}},"6.3.15":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.15","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"2b4948fd1bb831dd95ea26fb5520e205f7c586ce","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.15","_shasum":"689a70057e849197a440192d6b119c047710eb06","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"689a70057e849197a440192d6b119c047710eb06","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.15.tgz","integrity":"sha512-VTXX5L40ALDmKzgRYn0MIyT3or0OtfBQyRglbpTBOH7iXE8deujEpk3JY+nDaGHXeMCwgi6yYYvQR9ol+1WcKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDpWPMKhyhHNnSO+Ok9W3oGfQHiyXEaiv7golDJRzM9mAiEA+s/fAxElSfadR6e2NBw+HdhvRYcyEt2wtlJ7W1So6BI="}]},"directories":{}},"6.3.16":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.16","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"9506f130bb5c494e9118f2933ab3783a12e62afc","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.16","_shasum":"7e055cb9e2d191229df239c2afebac7b7ab4ad65","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"7e055cb9e2d191229df239c2afebac7b7ab4ad65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.16.tgz","integrity":"sha512-CcGHUE19k5NkmgBK4NU4o1Opva8bJYxYoZQxaHi5hsS8w2xw15dynipKqSx9KPTR+HS7q1o6U6kjoXBMjlk2Dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCAWBsXXCpkGCS5q1iWCq4hfkrk5lNx5biXLTfTLzOpxQIgYKGLZgYPut9sbbt0kXgzYieBdswSOBkVKAIVMeCDhac="}]},"directories":{}},"6.3.17":{"name":"level-sublevel","description":"partition levelup databases","version":"6.3.17","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"92ccff2af8ef5c41559ec894bc97e1975862ec59","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.3.17","_shasum":"6d514fe432619199fa300911bfdfa3f98de761cb","_from":".","_npmVersion":"1.4.26","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"6d514fe432619199fa300911bfdfa3f98de761cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.3.17.tgz","integrity":"sha512-fFRtU8voAZoQi3aL87BoW4kOUDpN27nkefn5Tyes3r5vDYy8WSmLkGFy3KQCkO0rNlJSfZpkYkTgtBmerUossA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCv6bm3VN5adLpHP+fcp74bbHxXJHZ2cN8ozn69jqsTvwIhAIVmTiTNKJbRDZdGKLy6f0uDwMDxX00K+IrhnYnhkVD9"}]},"directories":{}},"6.4.0":{"name":"level-sublevel","description":"partition levelup databases","version":"6.4.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~0.10.2"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"e522943f80523d658aa77545ffd32b291838094c","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.4.0","_shasum":"aae989322b08862a1100ffbc69177bf91646c43e","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.31","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"aae989322b08862a1100ffbc69177bf91646c43e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.4.0.tgz","integrity":"sha512-isR5yG3nBab5a3AzqQBEuHmNGCAaZBUzOyPF/zP4f6UQdIJkZ7l5Uad/uLLpJuYhrWHBg1Kn0AigzEjGp7rNAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA7jKxKEX77tF8K3r7btV8qRVDz3IVJetaWPGBo2hyvgAiA2jVKoDqig20NZm3/HL+y1Q44L9GlpFKsCuXkhzSZLFw=="}]},"directories":{}},"6.4.1":{"name":"level-sublevel","description":"partition levelup databases","version":"6.4.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"323e1f37c9f08c339b4913987d4a94207d0f5265","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.4.1","_shasum":"2e55ca69cd7f0d69fef32b9a453e4f792dcb5724","_from":".","_npmVersion":"2.2.0","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"2e55ca69cd7f0d69fef32b9a453e4f792dcb5724","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.4.1.tgz","integrity":"sha512-Ild1HYSha/ercLtKSBBjtqdKMxLwxS1BaSKbXGnxqxCrSgbjT9R8Os86GdMHkzEFzxOtNsBabyEuxcoVnYaq3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGvGtzasYWGOyuWcTqmN4txR1HOWk9rc+hzoUqcxx42AAiEAtAcBdiXW+RramnUoip10bxoChf/ltskwiBHoMvL0QJw="}]},"directories":{}},"6.4.2":{"name":"level-sublevel","description":"partition levelup databases","version":"6.4.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"d6f6446105ba4ca6d4550de477d3c207c062b815","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.4.2","_shasum":"e5dcacf918915152fd39e9b0811e27d1f0972b3a","_from":".","_npmVersion":"2.2.0","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"e5dcacf918915152fd39e9b0811e27d1f0972b3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.4.2.tgz","integrity":"sha512-B+qeqVhnseTX2OGcE/8+BzaSqaR8HV2q2PXaRintjNKkOdoeo1/IEaxVG4el6akSGxZsooodHQctbvXwId5jmA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuTczodjB26lR34JRFOqG6EXfReUCczLdYj/hb6Y0HFQIhAIwyL2ZsD2gYClpCBbXZCMMQD1mnLgWJPpL8lnJxnDEX"}]},"directories":{}},"6.4.3":{"name":"level-sublevel","description":"partition levelup databases","version":"6.4.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"46ce3d1987cdd155ac6f85d9db28611d40b56c2b","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.4.3","_shasum":"ddc5ae7d12b0a51351ffb4b5318ea9af5e7478a6","_from":".","_npmVersion":"2.2.0","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"ddc5ae7d12b0a51351ffb4b5318ea9af5e7478a6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.4.3.tgz","integrity":"sha512-kSl38SBnA5axL/d7u6nzsgSuEfcvmTggw8Vxih1ZguzUbptFJ/TUgXMppvoaLMPQlOcmaekSMuODXDpLSioUEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDLcXFp9gFpvLL7ocpBRa2Izexw8NlPuzNvr5nUMJEluAIgHuCL6UfoTvIZSrxlUtIA8fXpKS3K/xvIheOtIXMYOxM="}]},"directories":{}},"6.4.4":{"name":"level-sublevel","description":"partition levelup databases","version":"6.4.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"33ec90629280ed344fd08448af41803511688db2","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.4.4","_shasum":"ae3e8a78d14b602d5f2c260a6bbc83582a59c252","_from":".","_npmVersion":"2.2.0","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"ae3e8a78d14b602d5f2c260a6bbc83582a59c252","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.4.4.tgz","integrity":"sha512-XvxQsiF86G9XZncv5WUXNhDkxy0zVXuhFsApMeZoRRwBeTpySn8R2WXZw/fLWSw4HXNdp+Hy56IG7+wtS/11iQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAyceSk4xG4CZtBfXkBAkXnOJL1C66sz39Fj+CXPwTxcAiEA+ri9Gt0NfIOGGmQzKm1NUgCTFQq+vIi44SOAoJr/ilI="}]},"directories":{}},"6.4.5":{"name":"level-sublevel","description":"partition levelup databases","version":"6.4.5","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"3b2f7c867fbab86bce3b15fe5a5ae4045127e071","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.4.5","_shasum":"daead6eeb52454296d7d348366e0189b4b8487f3","_from":".","_npmVersion":"2.4.1","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"daead6eeb52454296d7d348366e0189b4b8487f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.4.5.tgz","integrity":"sha512-tGlnLhm9gyczXXCAv9gOU/nvJxp4HAVp30QRCw4Oc/m8TO8Spj2zyt3C+DcylOMLJ3EisfCRuNptcJWce1d3FA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQnNrYGqnKWuC5JCXkEuJwPTpG1M8ZOupcO6waOhF9pgIhANq7m4tlLilTQxT+0mQgzp7I0UPmj00DiayH2ZosHBOI"}]},"directories":{}},"6.4.6":{"name":"level-sublevel","description":"partition levelup databases","version":"6.4.6","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"10a8ef0ba82ed8d250d78461ed17696417217986","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.4.6","_shasum":"fdf5f65d1355b8a92a6792ede3a4f214b2594e9e","_from":".","_npmVersion":"2.4.1","_nodeVersion":"0.10.35","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"fdf5f65d1355b8a92a6792ede3a4f214b2594e9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.4.6.tgz","integrity":"sha512-db26/dpXDAtS+lgJaRs6sLZUaSo5T3sW03FDoNt15DlZEkWBWMqK0L6PySMn5NUAj57pJl9/xBtS3JonZ/BCKg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMnAJ2Oaa/zLlngEZKtqEyST+ooO+C5vZ9THdrB955mgIgbqwuYE9dHUvLCIFJzSL5ca7szXFixoKRjmQGZWyJCrs="}]},"directories":{}},"6.5.0":{"name":"level-sublevel","description":"partition levelup databases","version":"6.5.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.0.0","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"0fac0abd98f60648c75a29b5c8f588961ecd259e","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.5.0","_shasum":"9a15d9690f483344d4a3eae6224a2b7547203d8a","_from":".","_npmVersion":"3.3.1","_nodeVersion":"2.3.1","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"9a15d9690f483344d4a3eae6224a2b7547203d8a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.5.0.tgz","integrity":"sha512-NodrzOZQT8oEl8D9Yfv+7F7bejEEC2Flvrn/KcmNgou1lvtv+zADS/Ap2LsK0RFriGAsKuNepOOmFzXKeZWXXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAztAwP5V6LSUrLkHc69mvS5G/PoY3N5xehJNf9aBBzdAiBluYM15ra3qnPfD48yBMmPsN4KTHu4zbAelDnkJqgT1A=="}]},"directories":{}},"6.5.1":{"name":"level-sublevel","description":"partition levelup databases","version":"6.5.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.1.1","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"2e0b099c01a724f8eb8750b4db53e72f3e7d1829","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.5.1","_shasum":"0f4fa2f5aa2a89a37a4161021e3f816b77d41858","_from":".","_npmVersion":"3.3.1","_nodeVersion":"2.3.1","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"0f4fa2f5aa2a89a37a4161021e3f816b77d41858","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.5.1.tgz","integrity":"sha512-b3We9zWG9/92Lvist/F5bUUGidwOSazITD2YKn4YOz+/4B76R+v7qX7facGOiasVUpTqsnE7tPQt8ZMMWxIfMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDFSLTxD9UpH4wjZwKkH858zwyDSsYZRkZB1kWuKN3MwgIgTdFDWZiFZk99RBx+4LgzHVJD73i8PpDoLgiXAFE2vlQ="}]},"directories":{}},"6.5.2":{"name":"level-sublevel","description":"partition levelup databases","version":"6.5.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.1.1","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~0.7.1","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"389e1329a5492daf9e4e53ef86f92779d2a56394","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.5.2","_shasum":"162df326861cecf29dc97387425e6269a972a89e","_from":".","_npmVersion":"3.3.1","_nodeVersion":"2.3.1","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"dist":{"shasum":"162df326861cecf29dc97387425e6269a972a89e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.5.2.tgz","integrity":"sha512-J4oM1phiz2ZWHlWZZcNy36gFlGlmrE5C9M1JsFD6DWFHyqzaq86hRf6EbX7W9eNl8Q85MG11cuU9KbTdaB7lXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2v9aeBAv/SsTy9uooKJHBXmMqEEek31J3e1jOgRUxYQIgdr0YMu6VpsGjxXAQ3VrWbPk/ye+LgvCDpRTmgbJW6mU="}]},"directories":{}},"6.5.3":{"name":"level-sublevel","description":"partition levelup databases","version":"6.5.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.1.1","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~1.1.0","typewiselite":"~1.0.0"},"devDependencies":{"level":"~0.18.0","level-test":">=1.5.1 <2","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4","leveldown":"~1.0.1"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"0dbe9e5bbb9c1863d8a33ee14a23e34d50df1bf4","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.5.3","_shasum":"c94168d07c4bc91b20129a63352f0c5761703e52","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"shasum":"c94168d07c4bc91b20129a63352f0c5761703e52","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.5.3.tgz","integrity":"sha512-mHQ+ZOsuF550KBdNb4HdNBDtqjn1CyKZvPu3ycbJvA1KNPlsCNq8cw5fQpPSJ36eR+glBIqJ/QZDxmI4fLreig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEVx2s/z2J+rq9L7CAk1YQI3Fi5vGP2ffu+L6Tf7ahRyAiBPhpqU9pmX+pwj1MkBttMzcP8S6WDdDHG+Sk+KhMBQVQ=="}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"6.5.4":{"name":"level-sublevel","description":"partition levelup databases","version":"6.5.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.1.1","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~1.1.0","typewiselite":"~1.0.0"},"devDependencies":{"level":"^1.4.0","level-test":"^2.0.1","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"fa1b7121f9632b637e650cc1ec9b1723b60df864","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.5.4","_shasum":"92e6534e7ac3fa35c8bdb121b8a8094a8d1c0826","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"shasum":"92e6534e7ac3fa35c8bdb121b8a8094a8d1c0826","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.5.4.tgz","integrity":"sha512-c+HzA8VqRVHC4sRPIda1qTu4TuSwOQruCGaRlk52Wt39JkWvWaaP6V3nehBp5YSU6fqEdYkF/qKUvFHUeKRajQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCl/9AYK8Pv4kcrTa6vCq1eFhFkjVTQAXs3OvKarqlzlwIhALpS/GJdknf/6dSWL0lnRP6re8jefBxdpuI5xih+Wwuq"}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{}},"6.6.0":{"name":"level-sublevel","description":"partition levelup databases","version":"6.6.0","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"pull-stream":"~2.21.0","ltgt":"~2.1.1","levelup":"~0.19.0","xtend":"~4.0.0","bytewise":"~1.1.0","typewiselite":"~1.0.0"},"devDependencies":{"level":"^1.4.0","level-test":"^2.0.1","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"84158b5a69ad72897cd2da19ce597693db8d8a41","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.6.0","_shasum":"675f2f6a3d437b10700e840069bcb331a5c8362f","_from":".","_npmVersion":"3.9.3","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"shasum":"675f2f6a3d437b10700e840069bcb331a5c8362f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.6.0.tgz","integrity":"sha512-VqCteyad1+DBkq3S25+tIfcpFH1Gtf171WFfy71Jd0zeu/Jk6Ytf98NMjD0ZpTsHm4xyPYE36G+8KLQTY4mDlQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGubb/eMkioi8Hia/K+PR9X6SOg3o3AxGgzkSZpRfCqnAiBm3swgbXLMcRZZSm6vAdeL6RzHR1cPre6ioz+gB/ztqQ=="}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/level-sublevel-6.6.0.tgz_1474693666939_0.5732688629068434"},"directories":{}},"6.6.1":{"name":"level-sublevel","description":"partition levelup databases","version":"6.6.1","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"bytewise":"~1.1.0","levelup":"~0.19.0","ltgt":"~2.1.1","pull-level":"^2.0.3","pull-stream":"^3.4.5","typewiselite":"~1.0.0","xtend":"~4.0.0"},"devDependencies":{"level":"^1.4.0","level-test":"^2.0.1","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"3c9fae973235d8d93e6ccb050348343acf26e27e","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.6.1","_shasum":"f9a77f7521ab70a8f8e92ed56f21a3c7886a4485","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"shasum":"f9a77f7521ab70a8f8e92ed56f21a3c7886a4485","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.6.1.tgz","integrity":"sha512-epqix1x6V48J6LnnfsVCv0FFfe8HmANjjLkb5JARQBUVraHDTkTusQVDvtixzfpvF5Gupu81TfSTmwMzVJIJcA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEOr+MqB+Y5lnsZVCfZCj4AyVEks+p/YcScZAPyK1aEFAiAFdtceKYFIBV2zV4nAiryHl5vIol0ATVpi7ISc2aHZlw=="}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/level-sublevel-6.6.1.tgz_1476287487048_0.3073536881711334"},"directories":{}},"6.6.2":{"name":"level-sublevel","description":"partition levelup databases","version":"6.6.2","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"bytewise":"~1.1.0","levelup":"~0.19.0","ltgt":"~2.1.1","pull-defer":"^0.2.2","pull-level":"^2.0.3","pull-stream":"^3.6.8","typewiselite":"~1.0.0","xtend":"~4.0.0"},"devDependencies":{"level":"^3.0.1","level-test":"^3.0.0","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"3bae01ef2ee0417b736e3edb013dac5b5da20599","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.6.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"integrity":"sha512-+hptqmFYPKFju9QG4F6scvx3ZXkhrSmmhYui+hPzRn/jiC3DJ6VNZRKsIhGMpeajVBWfRV7XiysUThrJ/7PgXQ==","shasum":"1f644e19040a2090b131f5a3055ebd371f0cdaf6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.6.2.tgz","fileCount":53,"unpackedSize":131701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9kaNCRA9TVsSAnZWagAAF7EP/Az4YGs76dcZihZof/J1\nTmLj99xtxXwrNzuYgbEX5Z0Gl1Nzur9eudSYhcK0LYryeDbOjrSKj/HrKpA2\ncN2GSjL1VvDUU+J0SaR8aup1tXNjghn5tZvoIdDbfITjY5EtJ1vhI85WRFYR\nqN5vGr20PUaCMAnt9jHPh6YbiP/IlUU1KdaZlw85BHZK4Rv2pCSHGYsVLVSU\nNm5ow44Qmz0iBx8/T8isF1bpUSbthB0c+4Lod5XnXI+ET7siQdQJF83zeSQI\nqCPxL26hJ+5iV/teLzso+CnxDxhzyxfdgxuD/OMxMnkPg0vcwXuc9g0z4gGF\n7YCyg0vqo5mkwK9em+G1GG2/xB4975+/7SP1Q1sKzyLC1uDnDj+zNergkud0\niu2GdKo5Kv5n5zrDd9PNfWCX91nv/27klS1eiz1VOTNuGk11ehKYkmlNR84b\nUMfn/EtoMhmZ/WQkM5gOvHB7xmHC1PY5FR7qtYb9aznOphiKw7Gk0Ig1nwvO\nGKP673vIoi6c+mpjIdpxE/QWr62dLvuIC1wRAzU5qEQsl601Rr8z/e2xfrEl\nHZdK6aTDchiqjOH0uDwKAX0CeOxhTVh4H21IERRSvww21Bkk2PSmsW7l+xGr\neX/6QfdZpQRkeXb45T0nhXl1s9nBIMliF8J5sslW9x3ge2v0n1bTvmaBa+2U\n7RAL\r\n=h1R2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDrf+yZvJKnHKwbpAWh/kgJDPHQHb12BDHVThUoxjU3KAIgYmYT0jHrg2TyorqzYlznAASExn1Gf+Cbd5dCSq3GYFE="}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/level-sublevel_6.6.2_1526089356031_0.5836268948938366"},"_hasShrinkwrap":false},"6.6.3":{"name":"level-sublevel","description":"partition levelup databases","version":"6.6.3","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"bytewise":"~1.1.0","level-codec":"^9.0.0","level-errors":"^2.0.0","level-iterator-stream":"^2.0.3","ltgt":"~2.1.1","pull-defer":"^0.2.2","pull-level":"^2.0.3","pull-stream":"^3.6.8","typewiselite":"~1.0.0","xtend":"~4.0.0"},"devDependencies":{"level":"^3.0.1","level-test":"^3.0.0","monotonic-timestamp":"0.0.8","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"^4.9.1","through":"~2.3.4"},"scripts":{"test":"node test-runner.js"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"5d3d2f0ab78621b422a37604600d87f159dc52ff","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.6.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"integrity":"sha512-M0fF1XWmRhjg2jRri3ICIRtry8H+0vfidaPA1nPptGagzVOwIjN4T+MKOnUpV/rWjJOGLl0KbPdItrs3rIubIQ==","shasum":"f272a9e9fed3475f4b4c965ce8092f76ac289886","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.6.3.tgz","fileCount":55,"unpackedSize":133589,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQvqnCRA9TVsSAnZWagAAwd0P/iY97z2zTpytBSvzG/t0\nmz0+3aInrDFL8ZSN0R91jcavHrjPRDA/I3oyp2s6WmQmjJJIjM4SC2HePIkl\nJ/QeZmN26NOAaRX4HaxP89LOJS00ajYfRskghJTPteKe0eKjrcaNUMoE/3qg\nZ5B1d8ZIkBbS45+W/bquzfcMdOiZNu0/tv8sSmfC07/IGXGi8kT9KhagfzSu\nZfrfd0lPPkKCWe+R3i4BG/p731qTkMcrHzM+y+51JcRrBdx5FMzYGoyhY7li\nWMh2cVU5tWw9LyCF3N831fynPESpb50kYf1IxSwF9dgyuTfC+tghXdRJeZoZ\nYJ+9RZlwAwgPHYqqFGDiHC/+LdEtgygVflzrPWrAmpTGmdDXQrAuAk9MWK9C\nWDLu9XOu2WCl75ctWLm0S/yjuTa0fugm6x8q5Ve/gAvtEv8Iy25/j3kCbMM1\noCtIu5fpDUuVv+pL4tSaK7SOA8yu2Ifq6lhoXcFISDw0h7W5xQ6/oR8DaIaf\nbgvTNNmtHEZ5dZQ3VMCpM5LgvXAVdxKFXMZKgeGo4f8DsjM9lBmQlyPb7jLJ\n5B/8tDR74eFmwsHrT95Ssht/jiCrPiL2xNWG61+ZiCunxNqQV+VRmT568D71\npTPrPUzED+eegfk7NB5a4qWl4anRQgmJrkSIhkCg0i7YfNmTHyD8JLFMdwDL\nsZXS\r\n=zpz+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCywoNvgLplqox79EyY4+deRaSubkuhqAig5C6CKjMj3AIhAJjV7TNrzn5fwWP22vlWsMGReH6Yj9Fo+8UGd2UNQOod"}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/level-sublevel_6.6.3_1531116199732_0.9454413562191735"},"_hasShrinkwrap":false},"6.6.4":{"name":"level-sublevel","description":"partition levelup databases","version":"6.6.4","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"bytewise":"~1.1.0","level-codec":"^9.0.0","level-errors":"^2.0.0","level-iterator-stream":"^2.0.3","ltgt":"~2.1.1","pull-defer":"^0.2.2","pull-level":"^2.0.3","pull-stream":"^3.6.8","typewiselite":"~1.0.0","xtend":"~4.0.0"},"devDependencies":{"level":"^3.0.1","level-test":"^3.0.0","monotonic-timestamp":"0.0.8","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"^4.9.1","through":"~2.3.4"},"scripts":{"test":"node test-runner.js"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"17e9056aa8c6d0b28c3d37d6a32a07f53ccdff71","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.6.4","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"integrity":"sha512-pcCrTUOiO48+Kp6F1+UAzF/OtWqLcQVTVF39HLdZ3RO8XBoXt+XVPKZO1vVr1aUoxHZA9OtD2e1v7G+3S5KFDA==","shasum":"f7844ae893919cd9d69ae19d7159499afd5352ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.6.4.tgz","fileCount":54,"unpackedSize":85775,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQ7reCRA9TVsSAnZWagAArsAP/jsVjzyfoWRP7h+uOJG5\noD2wckogrf7e14an7tEZ0JySQUaAjZJFboiT8Ze1vV8Jk4juERWnGMueK02c\n0EqmhyFzBZCaw/ZkIWMrVc/BlUucEP4g/keT7zZ5RZE/tHTbMINfs5ZlAU56\n7XonnmaINnCTu9vbz9EWSVD09G3CcFXFiXvzXHSE8VZxD2VLBuLFt6+QrEfb\nlbWK10TKLKNH+bPNVpS/dOW9Woxy4xLK8aaR1kHmw70g2b/rCDEVfY8Mwsn2\nl0C3Gdebqzblm050tOhJjnS96jGOpoa9ORoDAJkm6j/kVdt+N7MOepsgwVgS\n6A5SA8duemQ6zMn5MUxLZW8D+pDMTfSuMuDVOSeXdVcXzGZh019ZmB61LmyF\nzDfyRoaD21NYoIZ4rXoMzzD8T9wBMRbqW7XbxEb8Im8o43FUMVpNiNCTdx1h\nzzPBe1g4OWtHi4thNqk7SJqxmfhnPh6UiMMtC2893prGrlLXm5f4qnvDbo07\n5u+Znkqt63FBq0YJ2m9HH33mnxA9VqGFIjFhWcOHhMzEn5onS2KJorI5vq4t\nooBvX1XjZvt8Ndx3ZlqkgE4C4pZ5yfXDgeyBjLfJJ1muyKmjy1nnHeWV7Sep\nNvPPuY0R6EaO7ojHZYruiaduMq4+wfPexW1PWho1mOpSga+lI8YVXoMOf4Fm\nUOW8\r\n=g3X0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFAXR4P3ShVkJhoYX7Iu6o4WJ35ujqBlauzhyynppDXvAiBgWx51637d0TZFKbCHJB4Oim8TJEdULohVAtjIQy8pQQ=="}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/level-sublevel_6.6.4_1531165406544_0.19433401353160362"},"_hasShrinkwrap":false},"6.6.5":{"name":"level-sublevel","description":"partition levelup databases","version":"6.6.5","homepage":"https://github.com/dominictarr/level-sublevel","repository":{"type":"git","url":"git://github.com/dominictarr/level-sublevel.git"},"dependencies":{"bytewise":"~1.1.0","levelup":"~0.19.0","ltgt":"~2.1.1","pull-defer":"^0.2.2","pull-level":"^2.0.3","pull-stream":"^3.6.8","typewiselite":"~1.0.0","xtend":"~4.0.0"},"devDependencies":{"level":"^3.0.1","level-test":"^3.0.0","monotonic-timestamp":"0.0.8","pull-level":"~1.1.1","rimraf":"~2.1.4","shasum":"0.0.2","stream-to-pull-stream":"~1.2.0","tape":"~2.14.0","through":"~2.3.4"},"scripts":{"test":"set -e; for t in test/*.js; do node $t; done"},"author":{"name":"Dominic Tarr","email":"dominic.tarr@gmail.com","url":"http://dominictarr.com"},"license":"MIT","stability":"unstable","testling":{"files":"test/*.js","browsers":["ie/8..latest","firefox/17..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"561d7f8adc186f434c041f7920042c136289174a","bugs":{"url":"https://github.com/dominictarr/level-sublevel/issues"},"_id":"level-sublevel@6.6.5","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"dominic.tarr@gmail.com"},"dist":{"integrity":"sha512-SBSR60x+dghhwGUxPKS+BvV1xNqnwsEUBKmnFepPaHJ6VkBXyPK9SImGc3K2BkwBfpxlt7GKkBNlCnrdufsejA==","shasum":"acddfa2be033b9e503544e2c647f3c03d5a23fbd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/level-sublevel/-/level-sublevel-6.6.5.tgz","fileCount":53,"unpackedSize":131701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQ7xRCRA9TVsSAnZWagAA4m0QAI4RKm26VshcdLnGGeew\n3e1z1NVDPVzRnI48671dDS5CsqYecLaxp1GAjP9Rg5PbiPH5Q5Iv1Y+U1NVN\n7GEKKXIlEmfxGDplD065koNmXpeL+zQB5hqe872MfgsrCBfjQSlyjpGf+v2e\naZQq0jqQNuRvDpMX3VqjMZtFqLQVJ3A0O7GwjdinTZ9isMuDxFZLJpm+Ap4Y\n+1mAlSo2JR2+pzDyDNbzUSeBItssYvLOgKkucmZGVDiVvauFBolv+W4OIkCJ\npJkcJfCRVN+gfGWDKGCQzR/9yjkppZ0Zo/Tkf6/5PfPkbFw7SDXn864deWjj\nVRKBDNcjhie9lUmU8AStydVPuNujm93OrSHG3zqOOGuXPfdBqpEUMgK9T6Jl\nkdsfovkGV8Huga5PQqjWDt8HgBmd8JqigfZWzw0WvQ7pJt1kEvowYRHeEq9e\nFo5m6oxly6lxIA2AjJrkeNYmrkcE8COlCPVPVg+k93z9ZxFyc5iRxxJej5GL\nZr2TRI9U8LGULhHPaXnDu2480TAkrJwWWOGTFB7+17bc8kDnXRAmBYCN/mFN\n2xncED84aVH1FQaV4hVETmcPSZSODGqXqISoWsZ/JqtgULMHJq6i+5eb/TPd\nIdxEriBdnWf8d/wAFqdGuCiBLLizbljaxlB7nId8s1aJdesSQsaBQdvULPIU\n0XFL\r\n=sL24\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJ9NXbinwvcQn1o5uMEviZNiUCyjh0w1VHMxu/ywhfJQIgE5LHtjqqKUFa+ZUDqwZjcN+KIR+GaTK8gYvk5OB1UJE="}]},"maintainers":[{"name":"anonymous","email":"dominic.tarr@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/level-sublevel_6.6.5_1531165777817_0.26908434154990024"},"_hasShrinkwrap":false}},"name":"level-sublevel","time":{"modified":"2022-11-08T10:38:46.646Z","created":"2013-03-03T08:23:10.285Z","1.0.0":"2013-03-03T08:23:16.261Z","1.0.1":"2013-03-03T08:35:59.506Z","1.0.2":"2013-03-03T22:50:09.285Z","1.0.3":"2013-03-03T22:51:41.671Z","1.0.4":"2013-03-03T22:53:45.411Z","2.0.0":"2013-03-05T02:27:11.486Z","2.0.1":"2013-03-05T02:28:00.886Z","2.1.0":"2013-03-05T05:02:15.282Z","2.1.1":"2013-03-08T23:41:03.890Z","3.0.0":"2013-03-09T01:01:39.146Z","3.0.1":"2013-03-09T01:03:26.323Z","3.1.0":"2013-03-09T01:50:24.419Z","3.2.0":"2013-03-09T04:23:59.961Z","3.2.1":"2013-03-09T06:28:44.136Z","3.3.0":"2013-03-09T07:38:58.197Z","3.3.1":"2013-03-10T01:41:03.029Z","3.4.0":"2013-03-12T12:23:25.637Z","4.0.0":"2013-03-13T06:32:38.859Z","4.0.2":"2013-03-19T00:47:38.218Z","4.0.3":"2013-03-27T15:57:38.837Z","4.0.4":"2013-04-04T14:57:07.900Z","4.0.5":"2013-04-04T14:58:23.542Z","4.1.0":"2013-04-04T15:46:52.775Z","4.1.1":"2013-04-05T00:50:58.030Z","4.1.2":"2013-04-05T15:01:41.192Z","4.1.3":"2013-04-10T15:14:44.570Z","4.2.0":"2013-04-13T17:12:08.154Z","4.3.0":"2013-04-13T18:03:40.748Z","4.3.1":"2013-04-13T19:09:02.182Z","4.4.0":"2013-04-13T19:59:35.715Z","4.5.0":"2013-04-15T15:54:38.224Z","4.6.0":"2013-04-16T20:20:01.194Z","4.6.1":"2013-04-16T22:39:43.110Z","4.6.2":"2013-04-21T11:08:42.741Z","4.6.3":"2013-04-22T08:17:26.467Z","4.6.4":"2013-04-23T16:33:05.414Z","4.6.5":"2013-05-28T23:16:18.095Z","4.6.6":"2013-05-29T20:45:51.469Z","4.6.7":"2013-05-29T21:25:11.488Z","4.6.8":"2013-05-29T23:07:15.426Z","4.6.9":"2013-05-30T21:50:00.351Z","4.6.10":"2013-05-30T22:15:01.139Z","4.6.11":"2013-05-30T22:17:30.837Z","4.6.12":"2013-05-31T14:20:59.538Z","4.6.13":"2013-06-04T15:51:11.400Z","4.7.0":"2013-06-05T15:21:39.908Z","4.7.1":"2013-07-02T22:23:22.404Z","4.8.0":"2013-07-19T05:34:32.698Z","4.8.1":"2013-07-29T13:56:18.538Z","4.8.2":"2013-07-29T14:08:21.402Z","4.8.3":"2013-07-30T11:02:28.751Z","5.0.0":"2013-08-12T22:08:11.179Z","5.0.1":"2013-08-13T10:36:44.434Z","5.1.0":"2013-09-01T17:21:57.778Z","5.1.1":"2013-09-01T17:50:41.636Z","5.2.0":"2013-12-09T09:33:37.587Z","6.0.0":"2014-07-25T06:16:09.220Z","6.1.0":"2014-07-25T06:44:40.987Z","6.1.1":"2014-07-25T07:01:01.610Z","6.1.2":"2014-07-25T07:08:18.009Z","6.1.4":"2014-07-25T07:34:12.712Z","6.1.5":"2014-07-25T15:01:30.877Z","6.1.6":"2014-07-25T19:02:07.696Z","6.1.7":"2014-07-28T21:31:08.460Z","6.1.8":"2014-07-28T21:35:52.236Z","6.2.0":"2014-07-30T01:52:01.418Z","6.2.1":"2014-07-30T22:05:37.535Z","6.2.2":"2014-08-04T14:17:23.115Z","6.2.3":"2014-08-05T04:49:40.851Z","6.3.0":"2014-08-16T22:22:02.875Z","6.3.1":"2014-08-17T00:23:01.167Z","6.3.2":"2014-08-24T17:21:13.702Z","5.2.2":"2014-08-24T17:27:33.211Z","5.2.3":"2014-08-24T19:25:57.287Z","6.3.4":"2014-08-26T01:53:11.793Z","6.3.6":"2014-08-27T21:42:37.597Z","6.3.7":"2014-08-27T21:44:04.644Z","6.3.8":"2014-08-28T05:48:21.197Z","6.3.11":"2014-09-03T17:53:19.289Z","6.3.12":"2014-09-27T06:05:44.095Z","6.3.13":"2014-09-27T20:37:00.068Z","6.3.14":"2014-10-09T14:00:51.149Z","6.3.15":"2014-10-09T15:40:34.042Z","6.3.16":"2014-12-03T01:33:19.136Z","6.3.17":"2014-12-10T04:11:28.836Z","6.4.0":"2014-12-22T21:42:13.476Z","6.4.1":"2015-01-21T02:08:45.347Z","6.4.2":"2015-01-21T02:20:17.524Z","6.4.3":"2015-02-02T11:22:08.491Z","6.4.4":"2015-02-02T11:26:20.693Z","6.4.5":"2015-02-12T20:37:27.562Z","6.4.6":"2015-02-24T10:59:18.980Z","6.5.0":"2015-09-05T07:25:30.566Z","6.5.1":"2015-09-10T05:07:09.725Z","6.5.2":"2015-09-17T10:48:51.367Z","6.5.3":"2016-01-21T21:58:01.852Z","6.5.4":"2016-01-22T22:22:36.161Z","6.6.0":"2016-09-24T05:07:47.169Z","6.6.1":"2016-10-12T15:51:27.847Z","6.6.2":"2018-05-12T01:42:36.115Z","6.6.3":"2018-07-09T06:03:19.841Z","6.6.4":"2018-07-09T19:43:26.681Z","6.6.5":"2018-07-09T19:49:37.908Z"},"readmeFilename":"README.md","homepage":"https://github.com/dominictarr/level-sublevel"}