{"_id":"mafmt","maintainers":[{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"jacobheun","email":"jacobheun@gmail.com"},{"name":"daviddias","email":"mail@daviddias.me"},{"name":"achingbrain","email":"alex@achingbrain.net"},{"name":"whyrusleeping","email":"why@ipfs.io"},{"name":"vascosantos","email":"vasco.santos@moxy.studio"}],"keywords":["multiaddr"],"dist-tags":{"latest":"10.0.0"},"description":"A multiaddr validator","readme":"js-mafmt\n========\n\n[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://protocol.ai)\n[![](https://img.shields.io/badge/project-multiformats-blue.svg?style=flat-square)](https://github.com/multiformats/multiformats)\n[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](https://webchat.freenode.net/?channels=%23ipfs)\n[![Dependency Status](https://david-dm.org/multiformats/js-mafmt.svg?style=flat-square)](https://david-dm.org/multiformats/js-mafmt)\n[![](https://img.shields.io/travis/multiformats/js-mafmt.svg?style=flat-square)](https://travis-ci.com/multiformats/js-mafmt)\n[![codecov](https://img.shields.io/codecov/c/github/multiformats/js-mafmt.svg?style=flat-square)](https://codecov.io/gh/multiformats/js-mafmt)\n\n> Javascript implementation of multiaddr validation\n\n## Lead Maintainer\n\n[Vasco Santos](https://github.com/vasco-santos).\n\n## Install\n\n```sh\nnpm install mafmt\n```\n\n## Usage\n\n```js\nconst mafmt = require('mafmt')\n\nmafmt.DNS.matches('/dns4/ipfs.io') // true\n```\n\n## API\n\n#### `mafmt.<FORMAT>.matches(multiaddr)`\n\nWhere `<FORMAT>` may be:\n\n| `<FORMAT>` | Description | Example(s) |\n| --- | --- | --- |\n| `DNS` | a \"dns4\" or \"dns6\" format multiaddr | `/dnsaddr/ipfs.io`\n| `DNS4` | a \"dns4\" format multiaddr | `/dns4/ipfs.io` |\n| `DNS6` | a \"dns6\" format multiaddr | `/dns6/protocol.ai/tcp/80` |\n| `IP` | an \"ip4\" or \"ip6\" format multiaddr | `/ip4/127.0.0.1` <br> `/ip6/fc00::` |\n| `TCP` | a \"tcp\" over `IP` format multiaddr | `/ip4/0.0.7.6/tcp/1234` |\n| `UDP` | a \"udp\" over `IP` format multiaddr | `/ip4/0.0.7.6/udp/1234` |\n| `QUIC` | a \"quic\" over `UDP` format multiaddr | `/ip4/1.2.3.4/udp/1234/quic` |\n| `UTP` | a \"utp\" over `UDP` format multiaddr | `/ip4/1.2.3.4/udp/3456/utp` |\n| `Websockets` | a \"ws\" over `TCP` or \"ws\" over `DNS` format multiaddr | `/ip4/1.2.3.4/tcp/3456/ws` <br> `/dnsaddr/ipfs.io/ws` |\n| `WebSocketsSecure` | a \"wss\" over `TCP` or \"wss\" over `DNS` format multiaddr | `/ip6/::/tcp/0/wss` <br> `/dnsaddr/ipfs.io/wss` |\n| `HTTP` | a \"http\" over `TCP` or `DNS` or \"http\" over `DNS` format multiaddr | `/ip4/127.0.0.1/tcp/90/http` <br> `/dnsaddr/ipfs.io/http` |\n| `HTTPS` | a \"https\" over `TCP` or `DNS` or \"https\" over `DNS` format multiaddr | `/ip4/127.0.0.1/tcp/90/https` <br> `/dnsaddr/ipfs.io/https` |\n| `WebRTCStar` | a \"p2p\" over \"p2p-webrtc-star\" over `Websockets` or \"p2p\" over \"p2p-webrtc-star\" over `WebSocketsSecure` format multiaddr | `/dnsaddr/ipfs.io/wss/p2p-webrtc-star/p2p/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSoooo4` |\n| `WebSocketStar` | a \"p2p\" over \"p2p-websocket-star\" over `Websockets` or \"p2p\" over \"p2p-websocket-star\" over `WebSocketsSecure` or \"p2p-websocket-star\" over `Websockets` or \"p2p-websocket-star\" over `WebSocketsSecure` format multiaddr | `/ip4/1.2.3.4/tcp/3456/ws/p2p-websocket-star` <br> `/dnsaddr/localhost/ws/p2p-websocket-star/p2p/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSoooo4` |\n| `WebRTCDirect` | a \"p2p-webrtc-direct\" over `HTTP` or \"p2p-webrtc-direct\" over `HTTPS` format multiaddr | `/ip4/1.2.3.4/tcp/3456/http/p2p-webrtc-direct` |\n| `Reliable` | a `WebSockets` or `WebSocketsSecure` or `HTTP` or `HTTPS` or `WebRTCStar` or `WebRTCDirect` or `TCP` or `UTP` or `QUIC` format multiaddr | `/dnsaddr/ipfs.io/wss` |\n| `Circuit` |  | `/p2p/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSoooo4/p2p-circuit/p2p/QmUjNmr8TgJCn1Ao7DvMy4cjoZU15b9bwSCBLE3vwXiwgj` |\n| `P2P` | \"p2p\", aka \"ipfs\", over `Reliable` or `WebRTCStar` or \"p2p\" format multiaddr | `/p2p/QmcgpsyWgH8Y8ajJz1Cu72KnS5uo2Aa2LpzU7kinSoooo4` <br> `/ip4/127.0.0.1/tcp/20008/ws/p2p/QmUjNmr8TgJCn1Ao7DvMy4cjoZU15b9bwSCBLE3vwXiwgj` |\n\nWhere `multiaddr` may be:\n\n* a [Multiaddr](https://www.npmjs.com/package/multiaddr)\n* a String\n* a [Uint8Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array)\n\nReturns `true`/`false`\n","repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"license":"MIT","versions":{"9.0.0":{"name":"mafmt","version":"9.0.0","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","types":"dist/src/index.d.ts","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"@types/chai":"^4.2.8","@types/mocha":"^8.0.0","aegir":"^33.0.0","uint8arrays":"^2.0.5","util":"^0.12.3"},"dependencies":{"multiaddr":"^9.0.1"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Hugo Dias","email":"mail@hugodias.me"}],"gitHead":"e80cbe666700532783abcf529334e7a8f6941b0b","_id":"mafmt@9.0.0","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"integrity":"sha512-BwKL6FJxc6R85K6gFE/pX7MVyCp0NkM2DJHg0RatxVgDlK4g9kqtfXQUt2iReSmTcgZss/Q/Bdfa2KTg4KyC+g==","shasum":"6174f654ce25f45715cf7480ed3331c4c32924cc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-9.0.0.tgz","fileCount":9,"unpackedSize":71995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgcy8cCRA9TVsSAnZWagAAu0AP/14T4gP+Mv4yiVCmQyYn\nsigI/5IIgoeW1WGLhmY/FQF0N7FavAE7DLDJ2xranRYKr6XhFe2c1GJv0PRr\nHqSdK97Yv/BN3LlGDSGr9NE0xqZADWp+YASyU/ntMu8GJlzvkBYPU/c0ozqm\nK3wmqECyWj8qyEu+9hL03vbVi0iP680REnHj/T3pV+CQL92D8o42sFHhbR57\nSdME7MHOsi+tmCM7Sb62vEAPBnK0bZBo0gikV6hmHhErU4SlwxZA45J162em\n67nYuylCAbZecgWxvL/y4XVBpXkN5Gi3tJeUgdOgFtd2pDLlss0KI4Kknrs3\nH5Ew/jabbTx2PaDFr3ygyBak69JgVyCSqV8jvlAm2wjHfwb/mNMUxMLJ5JRa\nLLaZsgDPNR0RqlI+OLikfR6jwMt1mxQi2nfR+Xs0cfEroHBHhWnXt30OJuyl\nyGTDmHnC3U2mMCzzVeSaPhCZcXYAHDEAniggxCk8yajmViPspY/0BkWAKHrO\npeNSx+qDMTJgEgifp3Yc5XWJcyt6NO43VQATQ4cTOB9Wj8qSqtEj5FmNCQlZ\nQukvyQycV32zHxLPpkUEzf7RRcnM6pwFB3/ihVMJTXNCtxEA2BINWBr/a6Va\n9Rmac65LgQHZZnEDaiCr/++UI6Q3A8eVKMNBbX8OW7Y4oALNVtyBYy4XyfnH\nwvcG\r\n=QUtg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDIxheqc5bjiaJDLsA194Tw3Naw/CHk0ZJHxDnZOGDa5wIgBOJsk38A4zppO+AQip00zY84du9fEmpT015wZA1i3+Y="}]},"_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"directories":{},"maintainers":[{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"jacobheun","email":"jacobheun@gmail.com"},{"name":"daviddias","email":"mail@daviddias.me"},{"name":"whyrusleeping","email":"why@ipfs.io"},{"name":"vascosantos","email":"vasco.santos@moxy.studio"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_9.0.0_1618161435634_0.9058621935896753"},"_hasShrinkwrap":false},"4.0.0":{"name":"mafmt","version":"4.0.0","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^12.4.0","chai":"^4.1.2","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^3.0.2"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"}],"gitHead":"f231af2e5ab96f575077ecff08e22e24b1b4a40f","_id":"mafmt@4.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"integrity":"sha512-zTqHhC9UUYlOkTwOXkdNqCE5U7vuz5UzlRJa4Et3ddCu/Sq36Z8F9mWCGdoqzahDcnRiGc515XjsnkAQHdH55g==","shasum":"c31353395bad15914a342fa57d23a541f44313b2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-4.0.0.tgz","fileCount":10,"unpackedSize":654275,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHAbnyWtqBm47zR8GB9gYX8r3rnJCLNDiaxJTFFdasEwIgfctUEHQS/5l1GdJcEm7VX4tAP0frNBct/O30WmtrMr0="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_4.0.0_1518430665865_0.8745395216813101"},"_hasShrinkwrap":false},"6.0.8":{"name":"mafmt","version":"6.0.8","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^20.0.0","chai":"^4.2.0"},"dependencies":{"multiaddr":"^6.1.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"4fafcf25176637ba77d591085ad00cde45c995fb","_id":"mafmt@6.0.8","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-6oRO2fwNiqXXiby8Anq9ULLQpcrZUsfR3Bs+Yn1DWd/Zd65xGS9fobKzzSsnM9nqUdUA3IggG0b1R3WamVsatA==","shasum":"4a5997c29229ca3acbbc86c1e3887e2b1c079441","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.8.tgz","fileCount":34,"unpackedSize":2167520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdS/R9CRA9TVsSAnZWagAA740P/RbmklT9dUe5VtYj90Vp\nzhhX/iHFvfH9NwJh3d70ZQUxK6i3bAPNRGziK+k1kyicQ67NSnfO1g0mXF77\ncjJwuFb3k+wJOnAJnJVIEKAD7WEyE1xTI6xt2Zw2YXG2P1Aa4Bf1xMGlcJQf\njhRFejTlOAlwJW6LC+d8ctTVTxtmEik0BPwpTf8A3LFZl3IWNDpwMSUleSDd\n/EJS2CX0YuspxkFpRe88XjJz2OD9oXqKFhbl8118Lt7HzW00U++sCT4pvl+W\nvpJYq3HQy8q2lFUr11DD6ieytrP2H4IEmrs9gybK8Cyb8l4HcQZ/mjeGVtGX\n6Pq4E0bJO5O0d2OKg7N1PjDygZBbpVmL4LX0KfZ712VMu87g9RIR2r/SALjY\nNC7cxbhrlXRAKk+TWftVv+wIDfEyPDWLOTI3dcVC8QNEFtVrKiN0S1M8v8A0\n6WM2dkhHQu7MShnEpIRw11f4YRG00922b2MKiwfsKJNfykQrewagcw/f/dDT\nOuXQSk+g/PzF3+ZszmADkm9ah691JcghtgELnFCyVDBZRKAcSRfX7JbM//mj\noBAO3JhR36fHiWxMTmIvf4FZeV13bdEp/giPumNrC2dUT3ehsGOrX8vkXNHf\nn5aAhTB3TT5c+QnWSEG+9qplpO/5Q991N21PWp9iQUrBu1BD3EJ4SQGWaKSA\nJ8ft\r\n=fUvT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxbH+mDhqintPjq5z2limmSbfMthLrcqUurSEZ/9NDUwIhAKqsPP0pT24oayoaHyyQu6hYgrcGMV0n6WAzce+/rPm4"}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.8_1565258876666_0.7232265857530946"},"_hasShrinkwrap":false},"6.0.9":{"name":"mafmt","version":"6.0.9","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^20.0.0","chai":"^4.2.0"},"dependencies":{"multiaddr":"^7.0.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"55a5c0351203dadb831e0e5988113ca0dc20b8ad","_id":"mafmt@6.0.9","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-JqNCxmtOvJGBAtkIZtUwJSkJG0hOu9MqD9TctXcazNo1hpqNiEWxHuRCa4AU69v6prHMt25NJ2xy4qjIGvOyyg==","shasum":"bc6c694fcdf264713b50fc2d54d39ac00e43749e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.9.tgz","fileCount":34,"unpackedSize":2167796,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdd6FiCRA9TVsSAnZWagAARd0P/39BLxuMEK4mHIcR2ldX\n6JrB86TjoD8+ClMK9BY83mp5brEksIxhGjZ/8hqzFDkHaX/u+zQbeCCgsyJQ\nMxG5iUlBX+CwadzDNeZY1ol20XqP4hciTWxhHvLDa7wgUy0ouWW0wo9Amid6\nTodOmK8v/uwsYUqCt/00VHEujK2jAyCcXxEsjs8g3PoUw3xtdc2mBbl/D6Rk\nX7ssM2RbLKRZFwsBdR6WHeqUNq6iop+Hr7IDy+4PObmE+P07ExlIWYbgW4Lr\ngdPwdQmcioekUDFlKMP6T3IO7anieMUndlcGPrrM7V6kdbvXSL/dPnxjwjp8\n7yzTNCv4YL/UE6kHyyP41Oda06zKoyAtRyGU8lMYoLGeR3ZbBp8j6vwFu6Gt\nHrQZwateQ7VELL3ZO4D0YT4FIVETfPVdhMVUnQotL6RpPnh3CcUrX1dQXEOf\neQ/aSizOTDcPRwZ0I+OMNpKfqcM2rUGrBkJAcUDshn/G1xCmXYkSesFx7WLc\nlsPe/7i5YVfqoSkAMCgyi+2iwE9ewLAPgSC/B3/VtJkh4GbCFE82O3EZIG8G\np0n2BKEJmGB8Ur3TUGGy0OT+goaroAAYY1b/wLQKwhWbu76sopspNLn42lqI\nTPDP3aoq56mN08iG+PyfNKFFnroJlxzEPzgZSKeUllkXZxEKgqDQZlYF79zz\nA3qT\r\n=VASd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICgg6J8CWGkxUtVF8YHyG0uBn01EoOw5F24btvmBfhNDAiBFzYww8bMNhWzqeakISZXizAYFp7z32g85zTKBOeCa+Q=="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.9_1568121185282_0.6098569346746405"},"_hasShrinkwrap":false},"6.0.6":{"name":"mafmt","version":"6.0.6","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^18.0.3","chai":"^4.2.0"},"dependencies":{"multiaddr":"^6.0.4"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"1fb4869bb5b6f917294f099f19763db4572ad7bb","_id":"mafmt@6.0.6","_npmVersion":"6.5.0","_nodeVersion":"10.14.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-tbLpK8eZsGmjxo6HjSNQOrOiClXprErbdnmO/5VY3R4g0zWUELgvMjJQr3WTlh6MXMZqJqwmz6FsEyJEcU2Xnw==","shasum":"d94f491541264c51a810bea03c6866981e3c07fe","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.6.tgz","fileCount":10,"unpackedSize":521277,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXBIlCRA9TVsSAnZWagAA4h8P/Rv4vfCAcjH6kGmEtwTU\nQOYPydCu5e85Z++WCyl8duANQO+hTevUZ+wX2ct5UCbkbqarJLDzUl3aLlVX\nzd2VACzuffS4bdI5Zg+efzGO1+Rs034+jMelnr4opTMkFklQoaBxUAZKENme\njID2JNawRnGI+1kzedXJHBILsLAMr4jIxi77mKwWiNI2ILWN7Rdl/zCS3X+t\nUWUeIUsEPYMnOqlRLU0ZC/t1+oS1WpXvTueq4peiQcm3lwPSOY6Dbf8TJ+mP\n692FjejbLOF5qeUn6XCSKlXb+sJbiIi2ehq/u7ztY+yCvU4drLmsAJwVQbPO\nKHV8qbJSt5/pYJ1cjVQZQUTSlLBK22Kz7FldQXBkKPJaCHyMQlbx69gzefO3\nzr5Vct6zkiwMvN/WRMLejIdQOpVzArV+mR2tjktWCDIMvT+VBREtnAT/+K97\n1728gi+66GH6VpUAJfbM7huXyOzKLn+80L++JV1BR6Tt/xjohnbH/7wFEAPD\nVzWStQWQq+UYZteDTHcVJYr3iOdGdUEUR/I4FNbTcVjYJx04TlOPewhz48FM\n6J4M5d9Tq6FdbLJu48yOYdoFbobPx6EMLhYEXL1xcco9w1LdsIz60X9tg5C1\nJtJewdROctEMosAUW+zUQGUh9chVRIn4TlhwzhFIJHkiC4ToXwxafZe8kvAV\n7Z6x\r\n=DK7u\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC71gejPYW02w4q6Vrnl12zjsgkuUi6aw13Ii3OJjUXAAiA9Wm6M3v2/MrzhkN8nFo9D8qtF2MZv64ttQOWQyNraKA=="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.6_1549537828477_0.2651103804704473"},"_hasShrinkwrap":false},"6.0.7":{"name":"mafmt","version":"6.0.7","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^18.0.3","chai":"^4.2.0"},"dependencies":{"multiaddr":"^6.0.4"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"3fc9234f5275b73f943afa9d2b2b23111a7fb776","_id":"mafmt@6.0.7","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-2OG/EGAJZmpZBl7YRT1hD83sZa2gKsUEdegRuURreIOe7B4VeHU1rYYmhgk7BkLzknGL3xGYsDx3bbSgEEzE7g==","shasum":"80312e08bfba0f89e2daa403525f33e07d9b97fa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.7.tgz","fileCount":10,"unpackedSize":522402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdVxdCRA9TVsSAnZWagAAZuAP/RCS1PUhUAqM+UzAmGab\n1sL6OzK84wfsb2mYXzKir6CXIVGlnZyZI7RvvflwmseCzPbUKYSqoPy2yDjX\noJVM0jD1yrm8Fv9B8i7yu76njU81AMGHISD4+DmdB7v+cHuvkitHckciE2sL\nxE6n24u9OcIoZAa+pjK18DRGKpujjB5V2xmv2RrbbVv3y/OXPyNam/7gFevX\n768bFPN+DiG35engl0V1hbOu1drKUg4jVARIFIMoDT/W4+VroOCGnz7UOgDB\nHSa0k2xndTspYIZgg4aqeunxHe9kiCjFHjrer8K94xlUO8n6drSX45luR9D4\nvp9MapiT0VVuwxlm6wZKjlPNkxtrRyHjSUKORSt69nbRDQKcu96N1QXKt24u\nTpl++VPg9wtQCkkcL95E/j5pmI9Br0zLRT98GeNibRFxE8/gUyRFQ8LE+IOq\nj/NmCq5Rj+lYUI3jfCNp3uGf684LoKekvvWguJ8PfWMR5ulTibltwQtnqLNG\nrpab7behklmYgU/UowjRMpdry23gPS6BrYuUSJCOo1ofn+tDFfpAIhd6WaSk\nswVnKQlNVMiKEhlugATfpMTgOwJdbBveTYARHDnrgpsMy/laxtsTzzxMW1un\nsWTlGtC7YtUFztcJLdHW0OBY7t7ZdMvYqRxX4PnILlCETWVtKJA3UxihV7YJ\nlz8j\r\n=bUO5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICgeLlU/SP/aYZ/M6eM9HmMjVde7se1+wZVgUoSz+0lKAiEA1DI55byzQa/xQEBA8soUT9b1u+xXaZZ4IM0UwNphBGQ="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.7_1551195228303_0.9901394073747987"},"_hasShrinkwrap":false},"6.0.10":{"name":"mafmt","version":"6.0.10","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^20.0.0","chai":"^4.2.0"},"dependencies":{"multiaddr":"^6.1.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"52d9a9ee95e22c51ec5971d25834f8c9625eec84","_id":"mafmt@6.0.10","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-FjHDnew6dW9lUu3eYwP0FvvJl9uvNbqfoJM+c1WJcSyutNEIlyu6v3f/rlPnD1cnmue38IjuHlhBdIh3btAiyw==","shasum":"3ad251c78f14f8164e66f70fd3265662da41113a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.10.tgz","fileCount":34,"unpackedSize":2167952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeTBCCRA9TVsSAnZWagAAZKIP/3Z+HLS8PGKb2sEYZL0/\nzgse0Sh9DZebcWQOF7Y4y//4/oOoNOnCQcAg+oX5iScOfyUeY7lV7roAOipf\nPJoj4q0zaTcd7alsIVh4Gtiyjvivkw80j3pGNeYTYi1+rTXXiP5h8BA+MI4f\nNPC8swUmlY76VXNVeah7aw4C4hShG4z1DGqXXRC0xM88svZj4FEmP3nnKT78\nNRKyBI3fSnCtLkeU+uyVFmIjpTZcqGNRERNRtmhMRDn+vThM+9qoG+W/eSC7\nZcgsMk0INr6d8fMWZZBmVNwHNajP/ans2UL6eKM8u563DqZZAYiJdKXWkw0t\n36mhvphlKlYVxgBnd2PLnkKp3ZROPv1yznRmnd7jmsqky8qa+bVwe+wptRgu\n4O59sxeHL0YRbk3+tfWh5P91LXsRNphSeqt/MPo9DubuxJ6/wL6qXMB44D83\nCv0lyVCjYBCtD1X8CgAbtA3c5w1CWqLQR+dGJ10puFpfAWGwN9W/pomUhve1\nBns1nhoq1XZcZ+/BFPbgJm0/k6Hf3QaNMuEN7LI99yp5uXfvSZe00ymRbTIp\nYS5jT4BWaBuqSdhV4RiZVgwGc79nMpRNcZEKC4oNAn3nsscjcxU7/+v8MZfi\ndLvUf/3U/GncHg/K0R5INoyMINN7NPKC36bBC9E4gG81DBhrX8drLA/lEHuu\n5K7s\r\n=unne\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDcmqJZuI34ez17Fv3gbzMpwrW7KTtlLooOTX+lBz2HbAiEAjpbnxWaqXw4MhmAW325Lq9If+8ECzccyD5eLYOsrxRY="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.10_1568223297205_0.24299475346035293"},"_hasShrinkwrap":false},"3.0.0":{"name":"mafmt","version":"3.0.0","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^11.0.2","chai":"^4.1.2","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^3.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"}],"gitHead":"41a8a85e6ad32a34416f5b1c3e0439308d4e5583","_id":"mafmt@3.0.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"integrity":"sha512-gYUpEtkgKDR0gA9rZKkbZ9lQPdhRLnfw5tPK70ddfuELb3YbyLGr/6KxbQ90ztE0hSYdKuRJ11jNA+ZuRh1sSw==","shasum":"e9bb08138973ab18ebe7d0fb5a10932b7dac1eaa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-3.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCzBu31iyE6gI/jZwNwk9eNxfvDO9dZO/bcyzuKoZZatQIgCuS0zDv7NjmCgkWfN8Am9/phuX+YsGMqkzKFIWNogMg="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt-3.0.0.tgz_1504428472263_0.881332854507491"},"directories":{}},"8.0.2":{"name":"mafmt","version":"8.0.2","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"@types/chai":"^4.2.8","@types/mocha":"^8.0.0","aegir":"^29.0.1","uint8arrays":"^2.0.5"},"dependencies":{"multiaddr":"^8.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"}],"gitHead":"f5beeee47c38d255e5c440bb6a91cee4f41f63a5","_id":"mafmt@8.0.2","_nodeVersion":"14.15.3","_npmVersion":"6.14.9","dist":{"integrity":"sha512-6xkkWsEjNzhWeB3qovvtDZ3DXGsrlytY6mjIoqs9U6VH2dUo2OVSpYvrSDl0H2y1iaPSKQDqYSsEskgowJ1g6w==","shasum":"ac7b30ecb001e7f0e71c7be64de7e3216e86e38c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-8.0.2.tgz","fileCount":18,"unpackedSize":227002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6bFHCRA9TVsSAnZWagAAZ88QAIaj29IDSene2KgrB4YJ\nfj8OojgoV83vh0sx+wZH4XdiYjr/Nc1UuWeCTwyb4YQpPfW+YYg6IzEomUfM\nGgODC2+8LUrclf9ojsHouIlaVYq1qTtMgc2iBPxWT0A6CJUBLraI4jSxjZgm\neu4EEE2nJgIy6MAamVntUBkmQ0vAxMVbtXfC+KD7k2B5fqdwaLKsdcDc4Saq\nNTZUMrRtm7WTdKyO++FyA7Na0+SjSZVPdLZo+KK49HOZKAIOzmLD2AkNtbzw\nJtBWKYSszWjMI5mP36t2CcEq5E/i5eO/28cZ9jKQMACTzx7XEz4unLYsPU1X\n227W9GL63qEBZG2NPPePVmc9CNI/uaqBshOGO5vCYZNZyDYgSGV1qWjBiR8e\n86l5Ch42/aJ7wGPwbP/ZBiJrzmmcyxjwU+hSGFzLEFT4l1819z/pZ53e/2us\nlsLf3i94QWJBeLfrVJYpOT6Cht9nuxj1HGnSwoW19RjBH0XnYwo3GC9Du12j\nsmmFEclBDlbwjIgwDszoBbybb7Xjor/NZVOCg2E/eFpQguVLdWuN/Ji5G/GS\nOgTbXNT62632etGu7dhuxp1VB0LFAWAov2w63cIgoP052pZ0btGQ2A2zSeJk\npttHthwEI08s9tjYl8kRQNEqpfxUFz/90BTwuj5JmAaWwfkIGfDg2x+RsWH9\nh26j\r\n=FORO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH1/XFwPlvRIRLen8GeZcIsFNshKQO3Fa8IDyNEpsNRpAiBi+PDoNcYnAG0i6Auzle/wfjpF2xLepIFdm436UBJlMw=="}]},"_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"directories":{},"maintainers":[{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"jacobheun","email":"jacobheun@gmail.com"},{"name":"daviddias","email":"mail@daviddias.me"},{"name":"whyrusleeping","email":"why@ipfs.io"},{"name":"vascosantos","email":"vasco.santos@moxy.studio"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_8.0.2_1609150790653_0.6757733270163713"},"_hasShrinkwrap":false},"8.0.3":{"name":"mafmt","version":"8.0.3","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"@types/chai":"^4.2.8","@types/mocha":"^8.0.0","aegir":"^29.0.1","uint8arrays":"^2.0.5"},"dependencies":{"multiaddr":"^8.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"}],"gitHead":"38a1f1f171a64cda350098cf9a2df5cfcb434595","_id":"mafmt@8.0.3","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"integrity":"sha512-/uItgEL0nSUhu8LfO5sqkrSUWxtTvOP/+jMLePl5Jjw2p+npjHLmNJvGZTevMl+wl4taKD7kZoohgLTEz/qubg==","shasum":"4860427362fbe6406e52c632065b96c39f7aa0d7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-8.0.3.tgz","fileCount":18,"unpackedSize":227525,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/BiLCRA9TVsSAnZWagAAM8EQAKPM6sOyS5fCX8kEa7ll\nHN4E7vz20+C/6hMxYNVe0miliS9wA9NHHTkZJSvIJy651QM5OY2qjwrXZIi9\ngsKX5VFtEX+RPkFB17RU0Rl0UdDdPl6T6GFIQqtFsn7tMz49rA+nz+WrURTA\n1p74zHUF3dXaSQmtGQ7WFmcHGsbiYvnPgNqQa6mOqZLL9+GZI+ypcwW6OK02\nIA0ea0jIfUNcmShv7Rh9IFVeB4cQ7v1MVBhbpVeN8OAHHav1tvuGCe8joNk0\nqGWnfH2TPiP8ROb9o8vcISC6OCnF9hLLRMduQ8KekeYhpvpQmX16icDUTqeh\n6NrJk67YD7BUA/EIGFbYuEDiHDdJXmCZMjihNrAutkawHorlSCVsXd0tsA7g\nt2mwhHnTah/UnqUX4SFko2l7bLZPU8qWOSqkgaiqtC2GQ6/2YrnS9yHsOzjj\nv5CGV4RbooT+cbhgJzfvv9eBRY7+vQ3DL8UYebpVNdAkDQQMLlSXCkKCd6BC\n+zxGBcn3DVXLufj5YD6kLkITYgmDiwMifc7cCNnVGwra02iJRKxK6k9JfYPo\nAFGMrQPdkfSYxpIV5qp9zWBTDCOvRhVAVM2BwIAbVJFXBMYjnZX/AeX7QAUw\nKbLGJvzdWw9LOFOQ16AWhMTtApR8NXiHKF5kpjC0FpogXIyMeTewp81sMYID\nJSAh\r\n=ft2W\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGWJ3Lz3TwHyx5NweVk19EF5MTMtqixZK34iiondYZFWAiBDzboZDzhemgAZCOFF0sxGsMtu+W9TZfiljEwJS8Ojkg=="}]},"_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"directories":{},"maintainers":[{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"jacobheun","email":"jacobheun@gmail.com"},{"name":"daviddias","email":"mail@daviddias.me"},{"name":"whyrusleeping","email":"why@ipfs.io"},{"name":"vascosantos","email":"vasco.santos@moxy.studio"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_8.0.3_1610356875162_0.9719629033792634"},"_hasShrinkwrap":false},"8.0.0":{"name":"mafmt","version":"8.0.0","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"@types/chai":"^4.2.8","@types/mocha":"^8.0.0","aegir":"^25.0.0","uint8arrays":"^1.1.0"},"dependencies":{"multiaddr":"^8.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"}],"gitHead":"1c92da635d9cb1d954fe8a3a695460d366e9916f","_id":"mafmt@8.0.0","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-MdaeaqZxjoYYWvlhr1GQ7sbsR3+L3s8QL0VtCuja+Iax3EhqAEgluSWPJezSDLyns7Ds4DGRyoq5+eIU7UDang==","shasum":"6a9ad6aafa66d484310698baf2acff3b8ecf1d74","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-8.0.0.tgz","fileCount":34,"unpackedSize":1652843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMU3CCRA9TVsSAnZWagAA/3wP/R9OeU4raOorpGQTJ+tI\nWRsmUoDnaUgxkWBZOgrK7kqWi95WJWBE+F7VF11611OXt81Oq52BHcnzIxkP\nSRhXzK9lgE3CuhG25m7se+mtwkQ894CPE+bBy8uFApwUXawT7dabFEh7lJXL\nXphPMXNDgmQp2yGdNB6ZCKKLoXL+Q7MDx1yT+oyW7QitVIRR6KwY7mAqRJ5a\nqoEczn7ea00CEMslYVcxBPrWYUT3SMg/yhVN6/78nRzQLl3Vn4uL2n/CesWQ\nkb+6WhFJg580I1PednTLVHY4F3Jzl2rH+CvMxAOT4s7dQPgi5i7Xa5un19hN\n19FmdAT2Pzr43xqOvK814bl4740NAfi8iSlU3lQRnmzTJYlEm/kYGzJM0bW3\nahTjjOIiNhDNTekrIXxbKV77PdDoHjsiVJBPEe05VhANLOC58oKJyvjtshLR\nWd1PzQdHeK5VHvYevEiX5LeECIatmiubTYYi4xAWvNrrEgPCY3nrJfrk7En4\nSRWLpcwjMZYXLboEf1m1gVm2yw83fSjYe1MxVhuW7EaqLT1mzf7F3/Z/IIhK\nF4wmxKhMxcbSAGBpyYL7cbDB6XJzsV+XP2RwwQWHGxrpocgvpgXC9iJKUd6S\nnKwo5T7aecXAszoUO+sHrPki09fdbsGcgM9J/PhVlxq9Zifa4FBKTKIFplXr\nijej\r\n=8Sr8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD9IZCkVlccXHGq4e+xGKTQkSO+OEdNYcZM0MVSazYRkgIgCVfQkxKfekAoG9u3CPBLDLPVdPvmFnrFakw03uglEXQ="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmUser":{"name":"jacobheun","email":"jacobheun@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_8.0.0_1597066690131_0.2293420678333904"},"_hasShrinkwrap":false},"8.0.1":{"name":"mafmt","version":"8.0.1","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"@types/chai":"^4.2.8","@types/mocha":"^8.0.0","aegir":"^28.0.2","uint8arrays":"^1.1.0"},"dependencies":{"multiaddr":"^8.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"}],"gitHead":"b02922eb1baadbfa38fd58d9c14db0157181b852","_id":"mafmt@8.0.1","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"integrity":"sha512-A2z9CQp8C9koExHLdYs2tGzwYgCWuEfp+M+QNKe+qQif+YwYRq0+wJ9019SP7Go9TLx0I6+ylx01RqIxZ8RuHw==","shasum":"2c2ba61a84a66e58552100f163caef1a1267b276","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-8.0.1.tgz","fileCount":33,"unpackedSize":1630086,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmAxFCRA9TVsSAnZWagAADowP/3XHTi6K+7Qm4aoyUnMZ\nUYvBn/rajQmx4UHSTWD9IDyNYQs+NDPx7nEX+kTEtBNiAOPp2j0cZnwt1l/Z\nbcym2RZiSxFiV8/H4p+FZk78xi3vPT+RiSHmlWK+ZtH/phL9UHVmuXI3XaZe\ngDW4DvxLHa8seynr8YgYHL/Ce7QVkfzM+oBzwNL8YA+nRWGmMK9y254Y4opJ\neLBk/s1mLKopHoTWH/GyDy4JrkFDekKzsPsCCYYUEeK9GON6XMZoau+S9mdE\nis6mx3eI4sL3Fu1caOKfJyrO/3tyfHrLE/0Rodo0w1BEZ05x21+nnL25CMTt\nspAOc824HuBf5XQn9lbiIHrprzqRqoc/DHnT1t42aAmq0WaA8YpHsk2gnUT4\nU+r0TamLcB5sqjAV/5rnOaiMlJ3Zjr+7tmviQkTwnTf0r8D0YgFtHkL+3lTH\nhRVsPDiN52Zovv6rNimo/GDzLesx/RTweiA/5iUbhysJXW+HhRird4RgWK79\nOwtonvpAOHIXAJMzYJiHSED0nTlC9NS1/Qui2oFsxtis5HlDE9y31RNQsiGh\nYe7LU5T8hQqeJCdXxrf+4O/HrmwQAhJ7omXLtzbOsh7j4a0+wSb86m3IpGmO\nGJxbs5CKGNbICZPCMZbIMxM75aeWnZiTu57wjEUnIMQwWWFYzMHcX9LdgAOl\nSfx0\r\n=caZn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFV4bRj/3wOlB9jDU0zGsLlhAGtuUAl+nKav7sdTGLSzAiEAuIzQ9XkMaav7TgSsWnUmBKnbsVIuuG5NZT8WbYOdyYk="}]},"maintainers":[{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"jacobheun","email":"jacobheun@gmail.com"},{"name":"daviddias","email":"mail@daviddias.me"},{"name":"whyrusleeping","email":"why@ipfs.io"},{"name":"vascosantos","email":"vasco.santos@moxy.studio"}],"_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_8.0.1_1603800132809_0.6891098116419954"},"_hasShrinkwrap":false},"3.0.1":{"name":"mafmt","version":"3.0.1","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^11.0.2","chai":"^4.1.2","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^3.0.1"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"}],"gitHead":"9ba1ad0bf8d79e5f7ad23c0c8d9a81238b84d37a","_id":"mafmt@3.0.1","_npmVersion":"5.4.0","_nodeVersion":"8.4.0","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"integrity":"sha512-Svj7qcKeIXArudzxDOKtpiwrpbGRDNMx3VJQa+PjF7m6Z55wGsgR1OAEoC+7+pG/+heHeUEGqtEL7V962FZKhw==","shasum":"f525838d5f5bd3ea2fc62985ee914e00b0f91687","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-3.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGwRi3TAHHaxJrqvQqo7VQpK+eMP0bu0RFToQLPG+WlUAiEA+rDLHocVclEeqwgLhahUZKeOR97i5VDWj8sI7rHnC9k="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt-3.0.1.tgz_1504700075065_0.8994074792135507"},"directories":{}},"3.0.2":{"name":"mafmt","version":"3.0.2","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^12.1.0","chai":"^4.1.2","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^3.0.1"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"}],"gitHead":"1903099088e0421d8f083dd141cf935527978391","_id":"mafmt@3.0.2","_npmVersion":"5.5.1","_nodeVersion":"8.4.0","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"integrity":"sha512-BUXP1OceVN2/t2SiMH8iNTGQZ4BQK4iVWUEIT/dIyUqHypiAcUZvtW5u+CSHGcmNT2KopqDkPzhWu1K7Fy8pqg==","shasum":"f13aafb6b1cae21fe5593423c1c5398815d4621a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-3.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDhPtMPSMMEx6GElt1HWd4a8gcDhMVTzkfdt3d/F1AuxAiEAtBcqOQDFJQdBzgWxHkgKex9C+zsX21Asw9HIo5JgyvY="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt-3.0.2.tgz_1508826912201_0.6294264730531722"},"directories":{}},"2.0.0":{"name":"mafmt","version":"2.0.0","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^3.0.4","chai":"^3.5.0","pre-commit":"^1.1.2"},"dependencies":{"multiaddr":"^2.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"bb32f0068db59b5c70df7855127c0a45498dc354","_id":"mafmt@2.0.0","_shasum":"4a29db0e82a3844aef195d92422b86b003db8fd2","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.3.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"4a29db0e82a3844aef195d92422b86b003db8fd2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.0.0.tgz","integrity":"sha512-jfORVSETJlYkQoui99wIBDSsl+navOytJyH/yPpz9fwMHUjZpoxm+sjusORt22VHrDp+qWo4+Lt4m+r2Plz80w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDfeIHYybaqBwi2KJ94up+EJ3RqVE2puLfc1pGtw31zbAiBUo2+xNSmF0MLtOcXcukto53TJNanlca0VHWqQhgF5ag=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mafmt-2.0.0.tgz_1463520734140_0.6736500870902091"},"directories":{}},"7.0.1":{"name":"mafmt","version":"7.0.1","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^20.0.0","chai":"^4.2.0"},"dependencies":{"multiaddr":"^7.0.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"52d9dfc0622a82c9c63db6179b2424ee0b7c7efc","_id":"mafmt@7.0.1","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-a/QLhrQiSOTXrfZYGovPETx7BLwwOI5v+OYrQzUllGZ8Q6M5QgRBtCc3dkZcpZfhv6+aRVjFFkhCcmQu4dEwkQ==","shasum":"24ad854f990718b8a541f6489604bc57ef15be6b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-7.0.1.tgz","fileCount":35,"unpackedSize":2421962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKcCVCRA9TVsSAnZWagAAH98QAKSDBOWIYMYDrl3zZWNZ\n+AcmY5OCC9PvUm66hZQ4ei9NMXIa6TAAuZHzlWdO7SUetVH55Cq9msbWgm4t\noApPG89iEGfr1FB4r4XNRPPyqoy03Kxf/P1IB4lMrxTrWfhttgmiE2oDPtpP\nUiL0ZQS7Kb6i9f8HMyMbDVfpE1K1rB/FJxRHkEO+Pvdp70WNR7FJWrj3p/Xb\nzmZkpm6E5Z8cRW0dl1+PQntrUG6IaVgzWmbYw8EtjLT1EL9pF3WN7ctAiN9o\n6UKfnpaCJln6ydupfCdbygi1tNAy4WX0HV6nl479hZfboIlW8NhWtATz9vQR\nSFVOcozWdnGZdUqHvhGlU/yXDovK8uRg1XbbI0J/Hzt/XAcKZohQdyPMwSSR\nJzv9TtPY2eUjBNCuo0dZSs9Aa0UkElvNVKDMABzktgSS+7LkI78hzCzy4q/8\n3chwW+w68sqM2QMaQtO4IFYCBvkEE+Been4uS1jpeQS9T7MuA9U9kLOMyOA7\n86fJhrw2hi92wZ92W2/75frjppubCe+uIkUTJhoqe1RpEi4QtKqPpjg/IIcL\nRDXizG5a/iXxX4I3UnxMUpnu9MlP0MXd3lZPCQARJP9uPbO5whltf4i5u4tt\nZSIYsbr8p1hkBcdQhzMQzB8kwYMpsToLHDDBYZjxfuaZlOPducw7pcXF/7f6\nW1jZ\r\n=VU+i\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNCgQziEcqH2C9wRG3uMy4Jy4bwBQuR7JL2LIlwc5XOQIhAKWyWXkDoxPZx5wwNYuQWDkDSsh3ColamKFmcFp4pVcd"}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmUser":{"name":"jacobheun","email":"jacobheun@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_7.0.1_1579794580909_0.5456637396050328"},"_hasShrinkwrap":false},"7.1.0":{"name":"mafmt","version":"7.1.0","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"@types/chai":"^4.2.8","@types/mocha":"^7.0.1","aegir":"^20.6.0","chai":"^4.2.0"},"dependencies":{"multiaddr":"^7.3.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"571d381385146458dff8122ad92f3258e7df57dc","_id":"mafmt@7.1.0","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-vpeo9S+hepT3k2h5iFxzEHvvR0GPBx9uKaErmnRzYNcaKb03DgOArjEMlgG4a9LcuZZ89a3I8xbeto487n26eA==","shasum":"4126f6d0eded070ace7dbbb6fb04977412d380b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-7.1.0.tgz","fileCount":37,"unpackedSize":2423881,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePA2lCRA9TVsSAnZWagAAgK4P/RmUJEXFx4PGVWuGTiJ8\niAxG5gTr73pD/eXG929dhF/HaYIb9GmTW5b6IU4tw70rVsPawUxq8WHYlEj3\nz3OzM9Js0k06gUIwYR9G2Q18+OIoCsn0CBHuz4KCkjSckQh2ZowLEJa4smRf\nJuVkCVfc6fPkVnq3AojiAOg64i86iflPr9zIOQy7KhRekXxQil5/pm+TUtWN\nvUx27HxXhtvBRh2LRfsfcLfjKmE7h26C2puxyPZayCjoR4zWBbhBFUPhXHrN\nMu8LeX7h201ZueCEnSNrBcEQTuZ4Tc290QaVx+KBfU9gF8wTDbyNLtBcm/gR\nwWnhdLxL2UvMgtorsonAT5ZxhU3ORakuOoVQ/lV6ZQk+KNvJ6n0YnAOYc3iX\nG3+RWqaSw0wjxhuAYgnbfyBpJUAS0y5Z9dVyKRecmJTlpvj2N6CePrF4wwLR\n7hovhhbNHx6rbAOOOyR5GYu9yChLv5M7QJvLQpaEvoQMhOgHVUEWulbeHHzD\nMchBKLA8iPaWObxlkTNdBtpXAd3GP9E12bQJPITY8+2HsBi//l0hlzviiW4s\nKEPy2KOPkNQpU0ZPXudhkw+joGhDiooxcds5FSkBEYz6yF+uvGnBYTGIG351\nDsiSUUFB6R86+cTzctO8Ml8A2ItR/EughImjyBMeoOYUi5F9n1JiefhxVq21\ntc6E\r\n=vIAL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFfCPTqf5ZYz5qfzWhn24sDCevN/3oWAJjyfV2gAueKYAiBWloN6oqzNWlnk+SsvGHRJKEFTnlQEKG2dFPxizMbmNQ=="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmUser":{"name":"jacobheun","email":"jacobheun@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_7.1.0_1580993956966_0.6611116689412289"},"_hasShrinkwrap":false},"2.0.1":{"name":"mafmt","version":"2.0.1","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^3.0.4","chai":"^3.5.0","pre-commit":"^1.1.2"},"dependencies":{"multiaddr":"^2.0.2"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"4ed44eb35a43609f554bbc147a7f2bfbf2ecf282","_id":"mafmt@2.0.1","_shasum":"fbd5cd631ef7ce4a0fa4a195c7a47dbf549d359d","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.3.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"fbd5cd631ef7ce4a0fa4a195c7a47dbf549d359d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.0.1.tgz","integrity":"sha512-uDCMUfx5uZt6mNhDcX/t8/GPd88Go21t0/iTn0ORR8BAv9k31Cdkzkf/FwaZj4HMYMTNDvIhQmdrtRDOKI2XWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICMEFjqbo46VFn2Xk1DKuMNV3PCBroSJ2gdTPFiActJqAiEAnraLWOGFnhSd4ZU08cw/qg0WlffvwLv9ooppA3yJIe8="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mafmt-2.0.1.tgz_1463857453339_0.7104919583071023"},"directories":{}},"2.1.0":{"name":"mafmt","version":"2.1.0","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^3.0.4","chai":"^3.5.0","pre-commit":"^1.1.2"},"dependencies":{"multiaddr":"^2.0.2"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"1023f70e295c77644415944e1cbc35de90fe0fb2","_id":"mafmt@2.1.0","_shasum":"6fd0d8058e541c5e156d2c053ffaa19b3de4da2e","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.3.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"6fd0d8058e541c5e156d2c053ffaa19b3de4da2e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.0.tgz","integrity":"sha512-AEgu6qzOzxiEnQ6fDB5dsq3+OhwueaBKD2kQs0L1cTdXvCP0FChUSNwH9rQyyVRWiJOsJ0bQN79MzEyIoTy8yg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBOTCoNfuOgzXksEMviSdWRK7T4XEVmhyOP17lT4ws1bAiEAwo4jpsYWZNPLUYRSEakYE9AvLpksiH8KqjaLPRQO6jU="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mafmt-2.1.0.tgz_1463929243690_0.38777740742079914"},"directories":{}},"7.0.0":{"name":"mafmt","version":"7.0.0","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^20.0.0","chai":"^4.2.0"},"dependencies":{"multiaddr":"^7.0.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"48a6c9f5bdd99b9382c7b408c508e2afa5166ff5","_id":"mafmt@7.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-F13BbCoroi9eS7/arL4xaYIzQq1nMJLU5Tfcpc443jeM+IOI7pLUOBeOqVj/r41uXXDm9azIL/eBnSR1RI9P0Q==","shasum":"0ad6152b8486953342859e214fac1ad50f35c2c0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-7.0.0.tgz","fileCount":34,"unpackedSize":2171939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeTTFCRA9TVsSAnZWagAAnvAP/11wofZ1gtn/Ibgq9mn/\nFQ05dn5GzCyHZD1SyfeWghS5Ueov4JsECSnd4gJCk6H0xFJUSivm4hIxcuxJ\n5PsceQgFbBOysXEsW0g7XpWFlWC5cqT7OYgSoJdZqXy3EMxbxi2CJHrL1Kx/\noMYjf+B/ErKhEE6FK0wkZEIGPw7YA/PDlEz8zLtM8wM5r3VBYJBdVoKl4F85\nB9oFI3wDICWRLmBhEs0/LLOZQnGF93DNhm4ZQlPoxg3LiXCi8xmB2T0QwSHJ\n9xyew9WSzbdonlAlMkIhMEC5h/TzlqK1iXkJS0HpwIGXox58n37DXc6mLhUW\nw+6Smy4XKOW5njRIrfX/v/ZIhe9yT9sDTV+3uZ+5B3HkQWKWX+BVDk9iRN55\nT197uPRi59tfliTDPFaqziG3593RwDo6nn9qJqR40INbkfhu3TkriNjdnm+y\n+dzUOsibpAese3X5mT7x4UP+8fxzmjmLH1P6Ody8HNga6nypcFUhE2lCROtA\ntDQIJeqbujl3ucnz4vI7En4/OqttK6C6MsURc8zFexvkEWX5h1dQwOG6A0Oh\nRfHDL04mVGTwHIc/8yb4htDd0Usx1cJa5B0osTyQgMBSAwtLWJVAt5+HQh3H\nNSJ/FzYyj2BiQfL/IF4truxZBW4tPp7YiPJQ2ViPeccw2zbK2exluotF2FS/\nFpiD\r\n=S+DX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBQP5Tq05nIC1xhg4ZOMoFZdYZLDPhGrY0u1mLuehKRwIgE+1FtnVRBxrzW3X90tdJD/vZ36Uqc/8sQjSQ+AjMvME="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_7.0.0_1568224452752_0.13787749300273933"},"_hasShrinkwrap":false},"2.1.7":{"name":"mafmt","version":"2.1.7","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^11.0.0","chai":"^3.5.0","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^2.2.2"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"}],"gitHead":"f259a87f8274c7e87151738cb1cc57b09805ce07","_id":"mafmt@2.1.7","_shasum":"f0556f5d140e8a7e22d719edf70e169a7b6ef25e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"shasum":"f0556f5d140e8a7e22d719edf70e169a7b6ef25e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.7.tgz","integrity":"sha512-QG9gqd1/ybT074U+50JFj7lybjo2NDl7ARLX4UO20GMdwSZIK5LreSPUIS6eFnLqgEn81nS3m7f6O9rjpSgZwA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBCvrJr4C+C8+PFChLb9aEcvy+Ch1ROJM4867p6PCVwgAiBE2HGUaByB1xRNNieLsLpS8lO0EAOfxnEES2bMEHIUPQ=="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mafmt-2.1.7.tgz_1490183635575_0.8936957162804902"},"directories":{}},"2.1.8":{"name":"mafmt","version":"2.1.8","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^11.0.1","chai":"^3.5.0","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^2.2.3"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"}],"gitHead":"4d3dd88619ad097728b141e81454b1b5f57d2560","_id":"mafmt@2.1.8","_shasum":"d8b7f763be56db62a0343bc5c47d38ab2cbef45e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"shasum":"d8b7f763be56db62a0343bc5c47d38ab2cbef45e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.8.tgz","integrity":"sha512-ZRgcM9mZP3VyBgoBiNSTDxguSr+lct/OvI/5u16J1OEpg83yxDgzUbEa2Qy95RJcejz2/Ttcgk91QyT57SIMew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGMD41hAHcvVK22n//Z3XB0qSxqB39MPA8Zan8V1wpYsAiBIAqawWlzCPV5raHD6QKUDRjGXmHrR8UySi3cup+EA1w=="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mafmt-2.1.8.tgz_1490647251170_0.6374174198135734"},"directories":{}},"2.1.5":{"name":"mafmt","version":"2.1.5","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^9.3.0","chai":"^3.5.0","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^2.1.3"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"7bee5c233e574bcde7d5daa236629bb0f0aa65c1","_id":"mafmt@2.1.5","_shasum":"9a1d6061e985b730fa48d8410ab0e571cfe89bbd","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"9a1d6061e985b730fa48d8410ab0e571cfe89bbd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.5.tgz","integrity":"sha512-wHoS9lx4yhaFbmNdcecK8dbQWiHvte75RjN6n+EdBRo3j8JTTO9y/koCDQadBdYSUc31Y6cbOCyCaA91hMkOuQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEMcwX0imjLwVz+1m8a+IB0uzsQJLUNZnzHGr2X+jn0bAiEAzwqaXTchKHVQVLZNkrDNJ+iC05pCUvVejedFv0RAIIg="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mafmt-2.1.5.tgz_1484584015918_0.7478134506382048"},"directories":{}},"8.0.4":{"name":"mafmt","version":"8.0.4","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"@types/chai":"^4.2.8","@types/mocha":"^8.0.0","aegir":"^29.0.1","uint8arrays":"^2.0.5"},"dependencies":{"multiaddr":"^8.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"João Antunes","email":"me@jgantunes.com"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"Hugo Dias","email":"mail@hugodias.me"}],"gitHead":"e1dedc8139ed5ec2c08441522f42cb920fa918e2","_id":"mafmt@8.0.4","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"integrity":"sha512-wwZ5+PU0vQw10kwQRyZin1Z0dqVOp0BnYlX1xvXHS2fmLwrrQCfU1+3tlW5MRcihUwGz1virnVhbRAU1biKfiw==","shasum":"5b158a28bd800fb8d0e5c28bd9ee15120bed2a61","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-8.0.4.tgz","fileCount":18,"unpackedSize":227904,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/wvRCRA9TVsSAnZWagAAzAIP/j1F66diYPZkgQOWXmHE\noNfdkzX+VVpdtBJ2vClGspj0iCStjyeyxmNWKbh/dSFIrKErVzrb+eRPOjb0\n4k5MCU8PIAq07ZyDLhk9MDk0sr3NP3D7QQoDueFsF9bf+V6F23qxzPLCOE4x\njCLnkJUJHDWBkrJmExquxZR7+4OzSL8QKOpo/39YXouu8PO29Jsr7UYO+Vut\niG0/TG08binVKQIZ8ADGbH8WEfBQRhSz9RZeEuoH7cGqCg8tB5DneuF2RVqd\nAkrTkf/8zQlDHIvxcGh4pEvh8zABruO3z6HDf5JI8GCKYptF+MC74iPj9R6a\nfb+B/O7FAp7I7FTrpINjTcKrevFcoUdTFEZclEiZsuY/QU7QYsG4Nj59rLLq\nCU0Luc8v2L5igxIMuaZf5R17m0mFf7A3hXty4J4Cslv/s9GeGgQOyZMYJQhV\nJmpFiaiAbM2VvG2yBVgdu57Z4ALwAoA+sBXDdwtOgxjOfgwjJ+g8cVZaIxd8\nuikvo727m0UqbLmnkjeqQR2WKK3SNt4ciry+e9hjS95maMf7ERrMCuUAWtWi\nAixUOZhmzH4/uLmiWCnmcJV7GlMby0zgTc7q2LfPUDIDnVFhDhQdI0E+QoMl\nFLy0zBSZcUxyEQ1TsSxV2ibQ0fPGSAkHICSPoFEQCrhfI1R/7l4W3/ybgVoj\nNYGS\r\n=92kI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIExUIGn18s/wcaJ7TqRtnZv4EGc8pmC9t54598TxHsuzAiEAwMLyvL5dYfCBF8etDfeS7Ypnu/dwhku2+uxSf9bFiGU="}]},"_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"directories":{},"maintainers":[{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"jacobheun","email":"jacobheun@gmail.com"},{"name":"daviddias","email":"mail@daviddias.me"},{"name":"whyrusleeping","email":"why@ipfs.io"},{"name":"vascosantos","email":"vasco.santos@moxy.studio"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_8.0.4_1610550224897_0.4305544816041449"},"_hasShrinkwrap":false},"2.1.6":{"name":"mafmt","version":"2.1.6","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^9.3.3","chai":"^3.5.0","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^2.2.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"43b401646f9965352f767f67f346d8244e1daa49","_id":"mafmt@2.1.6","_shasum":"34f2156c79b8f6be7ee756cd39620f0461f091a8","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"shasum":"34f2156c79b8f6be7ee756cd39620f0461f091a8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.6.tgz","integrity":"sha512-8YTE5XVpnws725lyXk1FEBFfH0VvaCN5KBg/Gk2142Pz1dl9LfhO62cZUvuKKw1V0agvZf7T5UTdbDuX8edIQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDJtsOp4nPea71O2ooXZPzLLgaJJ7gUZvsqCeZvRlHxOAIhAJSGV3RtbtyaWrK9eebk/OwBjaNAJCZi/XvV8gs4Wsf4"}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mafmt-2.1.6.tgz_1485096373493_0.3551114608999342"},"directories":{}},"2.1.3":{"name":"mafmt","version":"2.1.3","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^9.3.0","chai":"^3.5.0","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^2.1.1"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"d20d28ce5216a503b03186fef2e5f5f8820f1cc1","_id":"mafmt@2.1.3","_shasum":"a080ddcf9f6b21a9febd97c59ae5d8fb7a117208","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"a080ddcf9f6b21a9febd97c59ae5d8fb7a117208","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.3.tgz","integrity":"sha512-W2os2eV7sEgxIk+8gXCoHJRc9ojfUmPx2+QemjWlA+TjgXLQFqRNKGFzFFfz75iHnmHAEU771VL+0r/fgHMxcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6GhpwGdxAofLQMaMAO7932WfRSTUu2GCybKxJPyqIHwIgM1P8fMkZkBXC4l0Mf4zWDDkh3lCxB539+3ASq3z80K8="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mafmt-2.1.3.tgz_1484578432256_0.30668388470076025"},"directories":{}},"2.1.4":{"name":"mafmt","version":"2.1.4","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^9.3.0","chai":"^3.5.0","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^2.1.3"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"9c67badcbd3c8a43a7418d529cefa54a135b4403","_id":"mafmt@2.1.4","_shasum":"fcfcf2b56a93ee08e64960279b0df469a63184d3","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"fcfcf2b56a93ee08e64960279b0df469a63184d3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.4.tgz","integrity":"sha512-ExhSFXAACh4a0Y768+uPPuPk1bOg79698BVM70xhvECgMZORGOojIjEgGJoFUAPmgDTTDG7EZjJm+Dq0xZcxsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGR7A1fT83kc/ybSGRf9Pteogxh8cEHu3vhzPlTNNrMWAiBUgLPNaX7dEGr2W/NbjQBk7kD702hYv1lpAdXOEwUgDQ=="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mafmt-2.1.4.tgz_1484579628247_0.26739202067255974"},"directories":{}},"2.0.2":{"name":"mafmt","version":"2.0.2","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^3.0.4","chai":"^3.5.0","pre-commit":"^1.1.2"},"dependencies":{"multiaddr":"^2.0.2"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"73b3348cdc2fbd0d21aa05be527e8cf77eef8a8b","_id":"mafmt@2.0.2","_shasum":"72413716e5525d14a8734886951e9c7bfce94359","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.3.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"72413716e5525d14a8734886951e9c7bfce94359","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.0.2.tgz","integrity":"sha512-PiTCXQpM6BRtjuUq83k/kB7TMQsqjo8N3J8hMiG+m9qG5ciDPLQhqA4ytuRmKxpPYnEwiX5p+G5id5Lul2WqYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC1EpUT8rpa80nYgSLEpq4EClYWgWwtRD41BED8OdewDAiEAmyp0PhsI+kdwC5PfYywPnKPHI5Bd1OWFQ378Oh22FeM="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mafmt-2.0.2.tgz_1463870112437_0.5486227876972407"},"directories":{}},"2.1.1":{"name":"mafmt","version":"2.1.1","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^3.1.0","chai":"^3.5.0","pre-commit":"^1.1.2"},"dependencies":{"multiaddr":"^2.0.2"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"d9a62f0022e7048a7be3965eb026a3ad43ab3e0e","_id":"mafmt@2.1.1","_shasum":"a55196de194075fe5841f4c8fedc46d9b7827069","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.3.2","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"a55196de194075fe5841f4c8fedc46d9b7827069","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.1.tgz","integrity":"sha512-d5/6Mh3FL0zERGMHYEGm9vjzWJ69leejboe0PJNHRFHilL+N69xb49tq2gnVQaB4nSqKPCdsAF2oZ8LGPdCkhw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUXfxf2ckZh9H2senFosXQjAPUy8b6jS9jCtwwTv1ofQIhAJef1jTzzKO1AzddeuFB0QWGDglowHbZkxFmpsAgvUxA"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/mafmt-2.1.1.tgz_1464446650257_0.17839699727483094"},"directories":{}},"2.1.2":{"name":"mafmt","version":"2.1.2","description":"A multiaddr validator","main":"lib/index.js","jsnext:main":"src/index.js","scripts":{"lint":"aegir-lint","build":"aegir-build","test":"aegir-test","test:node":"aegir-test node","test:browser":"aegir-test browser","release":"aegir-release","release-minor":"aegir-release --type minor","release-major":"aegir-release --type major","coverage":"aegir-coverage","coverage-publish":"aegir-coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^7.0.0","chai":"^3.5.0","pre-commit":"^1.1.2"},"dependencies":{"multiaddr":"^2.0.2"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"}],"gitHead":"2b2c2ebc97b6eb8f85b3d9460ad4c60232edc58b","_id":"mafmt@2.1.2","_shasum":"cb06bc26c7f32b10fdb4a043e6d6370e51ea9a88","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"dist":{"shasum":"cb06bc26c7f32b10fdb4a043e6d6370e51ea9a88","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-2.1.2.tgz","integrity":"sha512-uBoRmfoeofFShxVqaGTWFdr7weQfky/yKQT9+KIKpzdrNTapnCLR9qLEcJObD20HPpU/ZV7/YZX07rU5PkOy2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDcREj0X8Ljp+bxZQIpkZf5WH7L2PO90kzPQC6R7zZdkAIhAMoPp2AvVGMZfwMd9vNhoeoq8XnM7rTDXMuNylsVdBOi"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mafmt-2.1.2.tgz_1471875324209_0.26228352449834347"},"directories":{}},"6.0.4":{"name":"mafmt","version":"6.0.4","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^18.0.3","chai":"^4.2.0"},"dependencies":{"multiaddr":"^6.0.3"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"0dc528650415a18d01f4d0078b8772ae874444d8","_id":"mafmt@6.0.4","_npmVersion":"6.5.0","_nodeVersion":"10.14.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-oU6GBDQ5nYCJOjzQ6MoSgYTNFN8gKcO6qW7/raqxo2WHT84c/JjOgtZjfoHMCpoE+x+cQt3gM5OCBHHmZ0eYEQ==","shasum":"61b70ef3908b503939685e78fa11121763f59d18","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.4.tgz","fileCount":10,"unpackedSize":517903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNNgUCRA9TVsSAnZWagAA8moP/0wYjouju1Bi3McCISn3\nDywaOMfi9+DU4wa2IowrFwVPJO3uHzHPl9ffEpsx8C+9lBvm/GJfkrBSTHRB\nMNLH56gXEu6WC4Aj0oMAtQg2+KJMGoqfZutdTH/Nj3WD1QNA7mZ/nHsEm5Vn\nUIlee7JVhcFMtLzaqafV/gnUOvlz79oEgu1JCHMxTxf3kUlCYgbYlKO9r0BR\nJJDJuoG77sWOSJkPMtbN5MxWeRvqwTqtUAC9+uouJLAPHGUJ02JF1F/N9Jbm\nWWrgHtapYwAqcjcjHXSuNaeXp7TjkoXPsKLPbLdArUteDVZTvU715zs/PfzQ\nn86aUDyKkpqtQDV/2aLUs+/U0LI/UT/7ko5h1ja8sHX4ZSQ1p2zTo+7IQSA0\np+uh7K/fFP2WvLEZic0c4IqeI4D97raWqye/GHhlkLXS5CtUYzZ4FYfsTyXK\nBOWB1cvv5ZI8kFxrBULeDsC9zjKskcskpg3SghpuGWVMhzyiyoZIxj2BosM3\n8jWkbKO3B+GvzrkdeYWyOg+0MvM6N8uInRHzlkrNgHnvpkXTGJm4OApkdSas\nTMUSKje7zVp3B48bhFz4VbGTiaol8F+WjL0pe8pt636pahmXYgRIs3bWurFr\n4L8KMWIJ+nq2JTWsSPndfnCa3U/Z0o7RJYtM0xohX8SxkUrm0H7VrGdfu0eL\n89J+\r\n=XKw0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA77uV6j6CHZwIHsCTn6LIz36ktlrPCcEQ73d4b/9rnXAiEAnUzaRFpbh53FdsKN7Rg7TZg9PTo9jZDprpibKWJf9ZU="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.4_1546967059843_0.548563912043978"},"_hasShrinkwrap":false},"6.0.5":{"name":"mafmt","version":"6.0.5","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^18.0.3","chai":"^4.2.0"},"dependencies":{"multiaddr":"^6.0.3"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"eee56af769dd58040b1696c2432a299abd36c991","_id":"mafmt@6.0.5","_npmVersion":"6.5.0","_nodeVersion":"10.14.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-EWVxw6KdSezUhKMN2vL7zEuBL7jtidy8N3oDIeAjCdpUo44+2a2j2vhNi94wEkbu0wa2pNQMWjFlSZYL9mOMfQ==","shasum":"22f4f277546aa5159213d359e87ff7333ccab005","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.5.tgz","fileCount":9,"unpackedSize":507580,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSwWZCRA9TVsSAnZWagAAE+cP/jel1fLC0XtiS3evYT4S\n2uBr9hjrh+wupw1isq6kysd7PTIrPIIGqhgDw5525U7keddEpv13Yr1Y671Z\nSWMM8eXj/AF1gxz5E+NBxYTFNnxCRRK2QNl7Lmltwv0QWduibbhy6iwXARUB\ndGKTGRyuBTY1PnXz5qYdnKj2aIeoFw2pkCdeY603LgmkPR7U4xXb/LWyHrcj\ny+lXdA2DDtDu6wvr8F0O78bEtKQ1+3fdVvE45thrtPje3FLw/kFYwz949yiJ\nGCNe8PsN23GcTXaNliDE9nAWFA2m/cIYCZzVS5AZJIA2K7oEZgFSP20gsip1\nMDtms2jbczM5OmpbM1UkJpKHIT1QLT4SyVCIqgbOTS2+06ok5LaCyGR06nZz\npAI5fa2h13R3ePBOYNpbgz5dzLg5ldo6AoAa7AkmRFzm/lh2DXqkp5VNBLZ+\nWTTLHUnxruRGmKZopCt+X6vNweMKbxYNO8gdao9NCSJIGKCaJeIntlJNSFAs\nDOxkRrf4it1SJIa4PxDPbXV31pVv5ZnO/UGtPOHXa7LLbFcS/eQso9nhOgSY\n0YpIJmQHMqlh5/jO13kMKUxMPHrs1k1UwXxQlJZbMmPI+JbWQSAo8JQ95k4f\nXgssG+pSwgqSzVjygxNQ/7PYhmMiNncq+cZvog60LMsmZ9T6CpmEiO73yoor\npp1T\r\n=zYoI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDanapruv+1L6dM1iU52E46MBGiD1/Gc7RJMo4y0CiuvAiEA/D3xJ6vC/Bj2v8HHEsGLA9tmRKwmLwO3SEfq+M2XtJI="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.5_1548420504909_0.019376136363659535"},"_hasShrinkwrap":false},"6.0.2":{"name":"mafmt","version":"6.0.2","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^14.0.0","chai":"^4.1.2"},"dependencies":{"multiaddr":"^5.0.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"}],"gitHead":"09c38d9f52c4d0e6580c33ebdc972daf5b7a1643","_id":"mafmt@6.0.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-+ydrVDp/bo2GPTNN0378AFX66IJBlbrIBY0RaILWC9AICr9kviX5fonHeKsZiesEuuYetQeRhnZPL/J2k8vHAA==","shasum":"236f08e35d37c4efd96f869ade919b71f5972992","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.2.tgz","fileCount":10,"unpackedSize":1238599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmNvCCRA9TVsSAnZWagAAxUIP/2GCdBZvB96WhLqSsOZj\nGDm3tTrpEnNiA6rEQJbmvk05dYSxprXqZTKAS9cZPoYjqImR0wfxm62VuPef\nLG2Im9lzGwbfee2waUa91r1yXFyFn4/sQBjtm+LSeI8R43fsmj4Ru9pflvTo\nY7aCik92NaVkVpApcb+2YGf5guR9cuHbs315VgDE83cZYspHKIKmg2ccJcSe\ni5hlaH1U23DzSDgjefEolq41HpRO9ccXzcNvSBLUmtY4bXd0FjomDdIY5Oif\nCaPCOncZi6iEj3t77pjjxbV0pkOdfLIXh9OMkvvgxW42bPY05+ZI9pEp2VBq\nXrgdsrCe7Pcm47VNI8ygEBh+6TOIG8S2CnPl2BZsBZyZIWgViG8w0F8F7KNU\nHODH41DSDw+Z3PPeLVnKfOtwBDdz+993bm5avnePsD+I55QPsd3OvyUkhOb+\nJ8XtRX5fi0i2Xz/sWfdHjhTsm5giLwM0rS2n2165jMOaxWGYQH35CpjGsKXC\n/R+b+/i4dxsOKM5RLzHCuOYxJbaPQ02NoXEGDNAiPOv5F8J7ZEEk90aGNE8D\nJS0z8WjubbvEMBhRTIoLoLfM0svjSvo86b7TseMdfY1b0kMOTte8O8LFWQZx\nO8yGGxDK/Fo6szEqPQWm/NWAq6iuXv3HEE1UGjfjkHvRwgulJUHpv3npVvUf\nbc+n\r\n=muUl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICoJmS58fAlgBmFPSj5y6TefBEYR6pac02sEmlaTdCbwAiEA4V53z33WYavUMfc6/540JinoRo6LKgK/MbqiNk1s8uw="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.2_1536744385751_0.05067979518945198"},"_hasShrinkwrap":false},"6.0.3":{"name":"mafmt","version":"6.0.3","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^17.1.1","chai":"^4.2.0"},"dependencies":{"multiaddr":"^6.0.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"}],"gitHead":"ff8bbfe37faf6a701709e3957baeba51a0bd420a","_id":"mafmt@6.0.3","_npmVersion":"6.4.1","_nodeVersion":"10.14.1","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-VtaYiM1oQu3zmT9iejn2fFkAse1PtG1ytWr+AqeydTqpIpnYp9ycipQEJSP9yeZnQSqVmXVlErkgjG4WnAkk8A==","shasum":"aa918c60237b8a7c4bc3872666674460b3341bdb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.3.tgz","fileCount":10,"unpackedSize":1475476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCBqoCRA9TVsSAnZWagAALTsP/0Jksb5rcMsbKosfPgHl\nDyO9NnXKR6iPNtwffICbpHmUOBENUMMWr8lodkuT3IlskKVjQJUMi6NHBLhn\ngX6Z4Zo1MYURp3FxtUqaoB22Bk4nyBpriSA1aobKqaihp4mob9a4fMec294b\nFg7wzeqIbTqyNu+pCc2KlJ4s8fsrxLihyXvPxqtUTzaQTT6GzGs56Uj0dFHC\n/y+44omPdjqc44ztfAleTPD+NUsQoG/IsszvNHEXX7ExywLJhFuIjNv2bmMm\n2UBbGiI1Y0JHtWM8/d+PG0sexYKz71r9evRnYuoh8fJ0yOqClOKRSfIPA+Rb\nDgs7sdH3oO+LlMl88vYOXUjW0fJiJu8K1fToWoaZU/fewvTimdbeSHkxPMqP\nBZJUIz2PLvRGE5LZk3Bh2US/dup5EVUXF2UOBZO/9cdTJLQoanN54Er9QJbO\n9kNfm1fqdvI1QNToW1oLec16R2b4VYQL4UiJ0+tiF1GfrnBM/Z3rx5jvlVaS\nPMvWHGeJEtdw6XJUod8TGuITiZnUrxcWsPrjyF82ElAgaoL0flJwvW5K6vqL\nLWoaUxGYahke75StYhgyvCy88O7x117WU+QV6tAbd3RnLAB+NOoYdHGxhzBF\n9SWXXmSWJcVTKQ0Jj+Zvzenq4gWUuTfCsvpnpmSGylzNCcr3zWiestqopinZ\nP/9w\r\n=b35V\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEppTAhZhk4Zg+bofzHVi+lYE+U4ffPaiufENplZY1lAIhALN2Y+bSWXPRSI2HA7LIv1CVIsbdnH7YeY2T9e+m+X/+"}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.3_1544034983498_0.04529401914277997"},"_hasShrinkwrap":false},"6.0.0":{"name":"mafmt","version":"6.0.0","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^13.0.6","chai":"^4.1.2","pre-commit":"^1.2.2"},"dependencies":{"multiaddr":"^4.0.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"}],"gitHead":"274bef70cdb5f4c474ae691dadc4e5c094b1fe8a","_id":"mafmt@6.0.0","_npmVersion":"5.8.0","_nodeVersion":"9.4.0","_npmUser":{"name":"daviddias","email":"daviddias.p@gmail.com"},"dist":{"integrity":"sha512-ikjvRXcbEu/kpSQSUlCX5mj2sRZs18rjFAR3azO7mTJ1HPtTcd1XL5y/ey5wSuRjX4dsgGIPEc9VYF3dUaudPw==","shasum":"ec13f8761253354c23420ae3903c837b6649caa6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.0.tgz","fileCount":10,"unpackedSize":657182,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDeE3WEtfddPKYAvSGSXEXSmpTxBF6w8u/a0Pn0QetrFAIgbeWHdStzZKUiBaptbFWe10gVYgsSCCqj1+qrtwMSaiQ="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.0_1522942786476_0.5485052781251876"},"_hasShrinkwrap":false},"10.0.0":{"name":"mafmt","version":"10.0.0","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","types":"dist/src/index.d.ts","scripts":{"lint":"aegir ts -p check && aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","test:types":"npx tsc","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint"],"repository":{"type":"git","url":"git+https://github.com/multiformats/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/multiformats/js-mafmt/issues"},"homepage":"https://github.com/multiformats/js-mafmt#readme","devDependencies":{"aegir":"^33.0.0","uint8arrays":"^2.0.5","util":"^0.12.3"},"dependencies":{"multiaddr":"^10.0.0"},"contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Jeromy Johnson","email":"whyrusleeping@users.noreply.github.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"wqsz7xn","email":"67990210+wqsz7xn@users.noreply.github.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"João Antunes","email":"me@jgantunes.com"}],"gitHead":"41dfe7c9b23efa1fa8212b3481a72760142439df","_id":"mafmt@10.0.0","_nodeVersion":"16.3.0","_npmVersion":"7.15.1","dist":{"integrity":"sha512-K1bziJOXcnepfztu+2Xy9FLKVLaFMDuspmiyJIYRxnO0WOxFSV7XKSdMxMrVZxcvg1+YjlTIvSGTImUHU2k4Aw==","shasum":"431726f16e51090b32ada621c402acbdb64fce9c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-10.0.0.tgz","fileCount":8,"unpackedSize":48804,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5Xm8CRA9TVsSAnZWagAA2CoP/iyX1GcsO/idyFYVzHr8\n3kPp9XAB/c0Q31JLDUwrusvlri5IvKSC7oWLYT7AwzmZfYk0AfCggaq7olUK\njKR00YKJ6ujWzEcdnALuHFUkqyt0JRbQ1qRPQvgrMAP4QwdYn7+WWSPp/WUZ\nPCgTzPyfpYYRTXrSAjGDYjXQEH+6hkAy0+zFfJ3hBoUG5uWz0tMM+tf4v4sU\nIJRSLYl6AP+enV4moTjx/XI6VaWnJZuHTdHZgjeL18M+4TwYJ2NKDAASyhjg\ncHnRpyAhUvUXymjPz3Q88Rkpm2wnag1kvR8pn4igzTzXpe3k9XDOsstt7Smj\nOIeTCs7ASu0W6LFRatHUu0uDzQR/7RIamkq2RM5PDK9OwJt6AoTEQ7Wjh8t2\nLMkuBfBxvFk0Y4YIy9OJBzTQ/HqA78nBg0pzn3XdL1HQkRlthzQxYTA9Ld10\nuEdL5TFdHIvCGE8xtr39Ovr/+PtZL54foCdp7xyHEX/un57DAE9N1CVkchq7\nyP5HG9J86vZE7o5MsFWMTRK+qi5GnBOdJ5L81MCh3Zy/zxbT0/JzZbnNCMwF\n5XN77rn4iU1iuxrzJGRRCack4MNg5fImQzRz4RN6h5yWlEcH5h4aBMAERXc2\nQTIAUFHATs3fuXW4O2KIXrgn6vv3L4w5Pfe7EpB1wpm6Eo1b/i356ODfo71b\nUZVd\r\n=+wbE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBGQ7Hz7Yidld8rRnBcOYv9rp2rFj4MPt8vWwgpvaHHQIhAN2DS43rqOSELrsGscvhweYveeg3K55UgA06/PsCJBke"}]},"_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"directories":{},"maintainers":[{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"jacobheun","email":"jacobheun@gmail.com"},{"name":"daviddias","email":"mail@daviddias.me"},{"name":"achingbrain","email":"alex@achingbrain.net"},{"name":"whyrusleeping","email":"why@ipfs.io"},{"name":"vascosantos","email":"vasco.santos@moxy.studio"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_10.0.0_1625651644286_0.00989428740503917"},"_hasShrinkwrap":false},"6.0.1":{"name":"mafmt","version":"6.0.1","description":"A multiaddr validator","leadMaintainer":"Vasco Santos <vasco.santos@moxy.studio>","main":"src/index.js","scripts":{"lint":"aegir lint","build":"aegir build","test":"aegir test","test:node":"aegir test --target node","test:browser":"aegir test --target browser","release":"aegir release","release-minor":"aegir release --type minor","release-major":"aegir release --type major","coverage":"aegir coverage","coverage-publish":"aegir coverage publish"},"pre-push":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"aegir":"^14.0.0","chai":"^4.1.2"},"dependencies":{"multiaddr":"^5.0.0"},"contributors":[{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"Jeromy Johnson","email":"why@ipfs.io"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@ua.pt"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ","email":"victorbjelkholm@gmail.com"}],"gitHead":"de38b46c46b9b25a78ae041cd2b335470a0bf31a","_id":"mafmt@6.0.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"vascosantos","email":"vasco.santos@moxy.studio"},"dist":{"integrity":"sha512-towlQHptZPnx6wizscIxMABgILUBCKJBhoI0laX/9SUf6LtkoodsbNp3XY9Er8JgKRc8HgfnmEzDRpFvqtgAbQ==","shasum":"66100837e87f727339a40f1f24ae67e8b79520ff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-6.0.1.tgz","fileCount":10,"unpackedSize":1238094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhQtlCRA9TVsSAnZWagAAWyUP/17hygVmuXQ1Dju8awxq\nimqJgyBLgGxmV9Rzb12cKTGAsVnIstv1MyGS8m0Vxuc1vC3IdXqNIbJc3e2v\nDgQQxpr7iU3mlx4hVWAQfjPwftRAb3uB2U/qN0AEJXWmAxPa8RqqatMZf/nA\n48A0C/xWJBlaT50E5Q+4pDQB2hAqFijjYoF67+doQ3YWWQGxuc5SB/Aj8cQv\nlgH0jlLQLlaX6PI/fERWp/LEO8GJ6SO2tpXMJqdI9XdBUqYUDTV6zkkPt98/\nhIVQMw3dNWsvTUjKy2SK7Hp+dubAi4Hlnpqj3lRxO6Ac5WHU5z8s58m7gXXY\nF66oFdhVPks5c/PLRIbj0TUHge9kBmLRP3fofqEmNx4ogehMEf28SG5wgYik\nbeuXJ2FXmS6nLuMdO3UtyMhTCTO1N9nIlExWv7TvR7s2hSDTNQ2tE2Go8FnC\nckSBRvg2jc5+R8CtEkamSDA5nqUxRbXcALhSI0dPOT6ZkCuQwhaJ0rcOnllB\nN7aq5RMeL/kfYoJaGOkQyae6wJLTnl88mGYLJ/IXAgj/fUU7MpENQCzjBs/Z\nY/kpSdev1m0dxYKKhqPup9rwtdcLGIXVy+zQg1mzKNIH9/UtgeiQxND66cCv\n3VXemyqqLFnOpO/WuMBf/TDB+jNFWO3sGrGkQKLLG2vab0ioR5W7NyTV7tni\nH3AU\r\n=FB/n\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJ96kCTSyttt+UKqNEzCOGMeH2aIvMaEvL4ECNVh605gIgPymlapBoyOerPkkjmQGhQIXthzarqXI2Foh02sTrdFA="}]},"maintainers":[{"name":"daviddias","email":"daviddias.p@gmail.com"},{"name":"vmx","email":"volker.mische@gmail.com"},{"name":"whyrusleeping","email":"why@ipfs.io"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mafmt_6.0.1_1535445860945_0.6146089976122899"},"_hasShrinkwrap":false},"1.0.1":{"name":"mafmt","version":"1.0.1","description":"A multiaddr validator","main":"src/index.js","scripts":{"lint":"standard","test":"node tests/test.js"},"pre-commit":["lint","test"],"repository":{"type":"git","url":"git+https://github.com/whyrusleeping/js-mafmt.git"},"keywords":["multiaddr"],"author":{"name":"whyrusleeping"},"license":"MIT","bugs":{"url":"https://github.com/whyrusleeping/js-mafmt/issues"},"homepage":"https://github.com/whyrusleeping/js-mafmt#readme","devDependencies":{"pre-commit":"^1.1.2","standard":"^6.0.8","tape":"^4.4.0"},"dependencies":{"multiaddr":"^1.3.0"},"gitHead":"57aa0849a845ef8d67dae0b9cf282ec2de72dfdf","_id":"mafmt@1.0.1","_shasum":"2ee5fabcb18e78adc7dcf67a8a06a7c5ec55e6d5","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"whyrusleeping","email":"why@ipfs.io"},"dist":{"shasum":"2ee5fabcb18e78adc7dcf67a8a06a7c5ec55e6d5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/mafmt/-/mafmt-1.0.1.tgz","integrity":"sha512-BY9vO80HhUVOn6QyqlYCdLo61DHXcuLOcZ2jLtKh6WV4g8m5ZP3kY64oTP3nokoVnT1bhoxI7W4gwLO87Nvcfw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC+EZL1JzfKrN7lIZYmGziisbGAkZXm5KaXuyLFAl1OSAIhAM3EEhFnTkDlunR3lKf8wJc5PNFhwo1eevL8CX9mxKfK"}]},"maintainers":[{"name":"whyrusleeping","email":"why@ipfs.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mafmt-1.0.1.tgz_1457973426235_0.559896846069023"},"directories":{}}},"name":"mafmt","time":{"9.0.0":"2021-04-11T17:17:16.047Z","4.0.0":"2018-02-12T10:17:46.805Z","6.0.8":"2019-08-08T10:07:56.927Z","6.0.9":"2019-09-10T13:13:05.475Z","6.0.6":"2019-02-07T11:10:28.665Z","6.0.7":"2019-02-26T15:33:48.432Z","6.0.10":"2019-09-11T17:34:57.765Z","3.0.0":"2017-09-03T08:47:53.571Z","8.0.2":"2020-12-28T10:19:50.792Z","8.0.3":"2021-01-11T09:21:15.291Z","8.0.0":"2020-08-10T13:38:10.284Z","8.0.1":"2020-10-27T12:02:13.102Z","modified":"2025-05-13T06:41:11.540Z","3.0.1":"2017-09-06T12:14:36.311Z","3.0.2":"2017-10-24T06:35:13.443Z","2.0.0":"2016-05-17T21:32:16.837Z","7.0.1":"2020-01-23T15:49:41.147Z","7.1.0":"2020-02-06T12:59:17.134Z","2.0.1":"2016-05-21T19:04:14.325Z","2.1.0":"2016-05-22T15:00:46.379Z","created":"2016-03-14T16:37:06.718Z","7.0.0":"2019-09-11T17:54:12.969Z","2.1.7":"2017-03-22T11:53:57.829Z","2.1.8":"2017-03-27T20:40:53.321Z","2.1.5":"2017-01-16T16:26:56.796Z","8.0.4":"2021-01-13T15:03:45.086Z","2.1.6":"2017-01-22T14:46:15.376Z","2.1.3":"2017-01-16T14:53:52.914Z","2.1.4":"2017-01-16T15:13:48.902Z","2.0.2":"2016-05-21T22:35:15.048Z","2.1.1":"2016-05-28T14:44:12.279Z","2.1.2":"2016-08-22T14:15:26.281Z","6.0.4":"2019-01-08T17:04:20.030Z","6.0.5":"2019-01-25T12:48:25.043Z","6.0.2":"2018-09-12T09:26:25.953Z","6.0.3":"2018-12-05T18:36:23.714Z","6.0.0":"2018-04-05T15:39:46.622Z","10.0.0":"2021-07-07T09:54:04.546Z","6.0.1":"2018-08-28T08:44:21.091Z","1.0.1":"2016-03-14T16:37:06.718Z"},"readmeFilename":"README.md","contributors":[{"name":"David Dias","email":"daviddias.p@gmail.com"},{"name":"Vasco Santos","email":"vasco.santos@moxy.studio"},{"name":"Jacob Heun","email":"jacobheun@gmail.com"},{"name":"dmitriy ryajov","email":"dryajov@dmitriys-MBP.HomeNET"},{"name":"Jeromy Johnson","email":"whyrusleeping@users.noreply.github.com"},{"name":"Maciej Krüger","email":"mkg20001@gmail.com"},{"name":"Alan Shaw","email":"alan@tableflip.io"},{"name":"Alex Potsides","email":"alex@achingbrain.net"},{"name":"Jeromy","email":"jeromyj@gmail.com"},{"name":"dignifiedquire","email":"dignifiedquire@gmail.com"},{"name":"victorbjelkholm","email":"victorbjelkholm@gmail.com"},{"name":"Hugo Dias","email":"mail@hugodias.me"},{"name":"Cayman","email":"caymannava@gmail.com"},{"name":"wqsz7xn","email":"67990210+wqsz7xn@users.noreply.github.com"},{"name":"Marcin Rataj","email":"lidel@lidel.org"},{"name":"João Antunes","email":"me@jgantunes.com"}],"homepage":"https://github.com/multiformats/js-mafmt#readme"}