{"_id":"utp-native","maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"dist-tags":{"latest":"2.5.3"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"description":"Native bindings for libutp","readme":"# utp-native\n\nNative bindings for [libutp](https://github.com/bittorrent/libutp). For more information about utp read [BEP 29](http://www.bittorrent.org/beps/bep_0029.html).\n\n```\nnpm install utp-native\n```\n\n[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)\n\n## Usage\n\n``` js\nconst utp = require('utp-native')\n\nconst server = utp.createServer(function (socket) {\n  socket.pipe(socket) // echo server\n})\n\nserver.listen(10000, function () {\n  const socket = utp.connect(10000)\n\n  socket.write('hello world')\n  socket.end()\n\n  socket.on('data', function (data) {\n    console.log('echo: ' + data)\n  })\n  socket.on('end', function () {\n    console.log('echo: (ended)')\n  })\n})\n```\n\n## API\n\nThere two APIs available. One that mimicks the net core module in Node as much as possible and another one that allows you to reuse the same udp socket for both the client and server. The last one is useful if you plan on using this in combination with NAT hole punching.\n\n## [net](http://nodejs.org/api/net.html)-like API\n\n#### `server = utp.createServer([options], [onconnection])`\n\nCreate a new utp server instance.\n\nOptions include\n\n```js\n{\n  allowHalfOpen: true // set to false to disallow half open connections\n}\n```\n\n#### `server.listen([port], [address], [onlistening])`\n\nListen for on port. If you don't provide a port or pass in `0` a free port will be used. Optionally you can provide an interface address as well, defaults to `0.0.0.0`.\n\n#### `addr = server.address()`\n\nReturns an address object, `{port, address}` that tell you which port / address this server is bound to.\n\n#### `server.on('listening')`\n\nEmitted when the server is listening\n\n#### `server.on('connection', connection)`\n\nEmitted when a client has connected to this server\n\n#### `server.on('error', err)`\n\nEmitted when a critical error happened\n\n#### `server.close()`\n\nCloses the server.\n\n#### `server.on('close')`\n\nEmitted when the server is fully closed. Note that this will only happen after all connections to the server are closed.\n\n#### `server.maxConnections`\n\nSet this property is you want to limit the max amount of connections you want to receive\n\n#### `server.connections`\n\nAn array of all the connections the server has.\n\n#### `server.ref()`\n\nOpposite of unref.\n\n#### `server.unref()`\n\nUnreferences the server from the node event loop.\n\n#### `connection = utp.connect(port, [host], [options])`\n\nCreate a new client connection. host defaults to localhost.\nThe client connection is a duplex stream that you can write / read from.\n\nOptions include:\n\n```js\n{\n  allowHalfOpen: true // set to false to disallow half open connections\n}\n```\n\n#### `address = connection.address()`\n\nSimilar to `server.address`.\n\n#### `connection.remoteAddress`\n\nThe address of the remote peer.\n\n#### `connection.remotePort`\n\nThe port of the remote peer.\n\n#### `connection.setInteractive(interactive)`\n\nIf you don't need every packet as soon as they arrive\nset `connection.setInteractive(false)`.\n\nThis might greatly improve performance\n\n#### `connection.setContentSize(size)`\n\nSet the expected content size. This will make utp-native\nbuffer larger chunks of data until `size` bytes have been read.\n\nThis might greatly improve performance\n\n#### `connection.setTimeout(ms, [ontimeout])`\n\nSet a continuous timeout. If no packets have been received within `ms`\na timeout event is triggered. Up to you to listen for this event and\npotentially destroy the socket. All timeouts are cancelled on socket end.\n\n#### `connection.on('close')`\n\nEmitted when the connection is fully closed.\n\n#### `connection.on('error', err)`\n\nEmitted if an unexpected error happens.\n\n#### `connection.destroy()`\n\nForcefully destroys the connection.\n\nIn addition to this the connection has all the classic stream methods such as `.write` etc.\n\nNote that utp requires the first data message to be sent from the client in a client/server scenario.\nIn most cases this is what happens anyway but something to be aware of. This module will cork the server stream until it\nreceives a client message because of that.\n\n## Socket API\n\nThe socket api allows you to reuse the same underlying UDP socket to both connect to other clients on accept incoming connections. It also mimicks the node core [dgram socket](https://nodejs.org/api/dgram.html#dgram_class_dgram_socket) api.\n\n#### `socket = utp([options])`\n\nCreate a new utp socket.\n\nOptions include:\n\n```js\n{\n  allowHalfOpen: true // set to false to disallow half open connections\n}\n```\n\n#### `socket.bind([port], [host], [onlistening])`\n\nBind the socket.\n\n#### `socket.on('listening')`\n\nEmitted when the socket is bound.\n\n#### `socket.send(buf, offset, len, port, host, [callback])`\n\nSend a udp message.\n\n#### `socket.on('message', buffer, rinfo)`\n\nListen for a udp message.\n\n#### `socket.close()`\n\nClose the socket.\n\n#### `address = socket.address()`\n\nReturns an address object, `{port, address}` that tell you which port / address this socket is bound to.\n\n#### `socket.on('close')`\n\nEmitted when the socket is fully closed.\n\n#### `socket.on('error')`\n\nEmitted if the socket experiences an error.\n\n#### `socket.listen([port], [host], [onlistening])`\n\nStart listening for incoming connections. Performs a bind as well.\n\n#### `socket.on('connection', connection)`\n\nEmitted after you start listening and a client connects to this socket.\nConnection is similar to the connection used in the net api.\n\n#### `connection = socket.connect(port, host)`\n\nConnect to another socket. Connection is similar to the connection used in the net api.\n\n#### `socket.unref()`\n\nDereference the socket from the node event loop.\n\n#### `socket.ref()`\n\nOpposite of `socket.unref()`\n\n## Development\n\nWhen developing you'll need to install the build tools based on your platform to make node-gyp run.\nThen run:\n\n```sh\nnpm run fetch-libutp\n```\n\nThis will fetch the libutp dependency as a gitsubmodule.\nThen build it using\n\n```sh\nnpm install\n```\n\nTo rebuild it simply do:\n\n```sh\nnode-gyp build\n```\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"users":{"swordfeng":true,"temasm":true,"oleg_tsyba":true},"bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"license":"MIT","versions":{"2.1.10":{"name":"utp-native","version":"2.1.10","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"46e917db462a93562c48b1838a384532d92d6380","_id":"utp-native@2.1.10","_nodeVersion":"12.16.2","_npmVersion":"6.14.4","dist":{"integrity":"sha512-VTjBvb/uE9gYqx2NGVPtAWhqv9itieW+wJceJg5G6Cl/2kBCnHDaFafw3fNgCvii7meTpC4AoZfy6OG0pnuQ/Q==","shasum":"7bea315d71478a5c9466cf3ee7f7bd2b09c66a2c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.10.tgz","fileCount":58,"unpackedSize":2473463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqV/dCRA9TVsSAnZWagAAgnkQAJave5qHHaz9iAnNHc2I\n3H2MWJ1qMbNKgAaFslIhfqYQBU0UPfT9y9Br7WYB2Sld8THHT1SPUYuzMoWX\n+IvWLMhR4HlnrKs7KtLzTlH55cyyUH99TOd5IKCGsrZaJpAyPLJwadhx/2bw\npA0zE17VnQwFk9umNSeE9VeaNSoknnXx0+yeSa1kpJEbYorV3MmPxfhrbmM9\nZKANKZlBH12x20TbQ+SnAwOFoPvVuZbKLltN3PIphXp+Ar+OUz4DwBa0Im45\n/ZeCr62AZcw+x3wyTTGZSPRHM84naf+0Li3mzVWldTO9wSr6gStaSSmb8RDC\nVMdGI4qdUajypKf3Y93JraepYNMHqem6gQg9c/V81SZcUB+cNuU4VF/ZJ+MK\n6a8knYFm44h4Afv43R9BHb9HiIF1BrFAAue2LFZAKhj/AXZ3mHj6cIR4MJwC\nBiBMcnqsmOKudZlTQdLpWyLmwHyBM3zw3N31w+fpGVqLmX52OuU7w5PFoMtZ\nZ2BXMjoMH7OdgwME3QAJQD1FMLdpoCY8T2n2Rjo9Z1wRkxTb84AGzbuTkK92\nYi5fPiqB5vPq7ePESrQBPZjqmyQJjYZ6jLkNP8/sGTLeiAFEW7mIGedZA47r\ndE4AXREhpaUgcrCycQJnZxt5XBYg2wsqc5qMyfJB5xcalK721Xem5srhh3qb\n9EjI\r\n=m6Nu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDL7k9+wHoq3VJCirYfnW0tBM5cFvcUkpAcAG0UabdrTgIgP3PP2Sku4W7OAlC0Ykfy4HzMGXriAvQdFV/OzqXOmEA="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.10_1588158428579_0.3024504176860341"},"_hasShrinkwrap":false},"0.0.0":{"name":"utp-native","version":"0.0.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"install":"cd deps/libutp && make && cd ../.. && node-gyp rebuild","test":"echo \"Error: no test specified\" && exit 1"},"dependencies":{"bindings":"^1.2.1","nan":"^1.7.0"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"631041ff1041f6bed9d8cfe9c198ac2ce013c986","_id":"utp-native@0.0.0","_shasum":"12935f0fe7430ad90b98803596add7085d4e346c","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.4","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"dist":{"shasum":"12935f0fe7430ad90b98803596add7085d4e346c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-0.0.0.tgz","integrity":"sha512-PqTydZriOYs66KAGCBQRuE1Wh2jEfWje6eTuJ9PSHEt9c0sKGKvgfDOxDTMiF/SFdjpfpBSFMQsOtvDSWjOPIA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCausY5580rPeAPPY59tbsVkFnSaOBbo029TreaMrkPrgIhAOSxKQSFvHIphh7rcw4lJSbTbPAxdVzFyCfyJUwAw6fG"}]},"directories":{}},"0.0.1":{"name":"utp-native","version":"0.0.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"install":"cd deps/libutp && make && cd ../.. && node-gyp rebuild","test":"standard"},"dependencies":{"bindings":"^1.2.1","nan":"^2.2.0","readable-stream":"^2.0.5"},"devDependencies":{"standard":"^5.4.1"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"a0235312a881fe31f50e719c00ea8207b1caa7f8","_id":"utp-native@0.0.1","_shasum":"4383dfbbbe01bbd23aa777101ba2f9e0666418fb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"4383dfbbbe01bbd23aa777101ba2f9e0666418fb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-0.0.1.tgz","integrity":"sha512-hCWpHDY8nERhVG4Yi5krXCFCpLh7f/KSsdi5d1ValHOP1NGbJ21QAcAqXoYDx7hTPr3+87eHRV82WW4Tjm5/xQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGNHwyTvrU7CmMX43Fvn3d9ZZQNqvREvAFcf5/vVd7HRAiEA2o/f2kAyrX3gqdeiL2NvnzF2bx17p6lF6dhapAstqEM="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{}},"2.1.9":{"name":"utp-native","version":"2.1.9","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"f20fabaac1c8c225bd40a406dc8184dd86ae5869","_id":"utp-native@2.1.9","_nodeVersion":"12.16.2","_npmVersion":"6.14.4","dist":{"integrity":"sha512-0dsJsqD/oynpD1xL6fQgk6kX6GDiS36i2tvRkOkBoKyyoFzBey7bjt7ObnJyx7qUYJyWe5BqpH0meqD2thfTTA==","shasum":"2d55955aa7db4b9b42b97d2ac65aaad0f43c1cae","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.9.tgz","fileCount":58,"unpackedSize":2473098,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqVlQCRA9TVsSAnZWagAA204QAIeL0F4vSJBD7zz9ZJOZ\nzZaBeVrnLU1GceNlNQodSHs+nvHkJ8ngrVouMAOI3IQpzqzLhe4G8re926P8\nhOWqkrdwwA/kNp0b3Mys8Z5QcG50WeDu1pPYk1cq6Du+R1StOISixd7pw1/T\nGGfxkDPugDtV4TsjeV5f5FCsCElag/lewIlWoXI1h1/LvvpnOs/UW3vnoO65\n3RsdBPxxRPpASoAyaW860YlcnXe5z7ViTyIjIxyw/9098qDcrQEF3cbtH+9F\nHttsWvzK7PPpS9XAWehOLrn7HXVNHb5/znDyfbqDFovhmtvj78mBGaHIdR6x\nVXcyQ9oF4NS/pcgMHGFzT48IwL8yuksCoVhW7aUeDlwf9CISP9twcaIZR1c+\neKpVx7OhEkzvjUS6CSvphgQwJotq0Fw/puquu4eNp3R3mp5Wu5ITOfcvfYTj\n1y7wd6Hi+0Q4DptePPsHWwwSblwXXgwJKkMdONt+lQOqQxHIedrgqHDeemzD\nDl9uZqiHVSOFDrwm9aORdgCxarxwDucUwz2pyBJBEtZYRNxLM6vvSZm3FYvA\ntYSwR9CicpnRePOqNA7EkYxRBjl4VG8WBtSXWKgzwHgV90Zxb2ptOGyj7J5b\nnFeSFiBZEdx/0HsFG/gygiK6Seb982hWA/ee93q4wxKc/zy2mxKse71H/hUy\nz8Gk\r\n=X189\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHJ+6BYvkCuq99Z1FdJoHD+/k7qcR50hW9ZZbm4XdpIeAiAlbQYxTKjDGRDVE35L3ujuWL0NBraiY3E66TN/gOc+CA=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.9_1588156751876_0.3670521588043605"},"_hasShrinkwrap":false},"2.0.0":{"name":"utp-native","version":"2.0.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"dependencies":{"napi-macros":"^1.8.1","node-gyp-build":"^3.4.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^2.7.0","standard":"^11.0.1","tape":"^4.9.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"380b820f88b8aa93064e8a448a9165a38ae3d146","_id":"utp-native@2.0.0","_npmVersion":"6.2.0","_nodeVersion":"10.9.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-e7stzY8ICsY3CCfv6YQfOaFhQufkQsTBFnnAkh3BqKXgTmhFWrokbHnm5552uy49uF+1d8OF6cusNnStjKFbLQ==","shasum":"68e640555fcdcb74e9ba0297c3a8598d16472a02","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.0.0.tgz","fileCount":53,"unpackedSize":908353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjUWjCRA9TVsSAnZWagAAlu8P/1Lgck3MmMEJdBJfbdwf\n3dzVvoNqO9iuiTCh7G5FqnSrXgR7gXy0HovXAq9P/xGn586e72sMAHbhoUoy\njQpmWze8QP/2HJp6GSgJXYnF8GzPtQhr31CW9g0raUNX/3vPE91qzJPMbvbK\nEYgzgYm6WZV3bODuTbzQcj25D8zrgMz8wKgL3PtKj5kzdhMp8c+qgZ86kKMK\nF9alqrvatx8BHni0cfLjKDSn/g4W7PBm0XVI4LQtd6JouzlofbyqMephFJG7\nb9TeC6+AFg5w4z3bn0DIpGz1IJmu+mKz25wyfhXQVyDXUm0dSU/lXY4kFV4R\nk+CqB36qZML5OkYizXFBIE5L1+C3D6DevtiyPv8M5+UAI7Miq0FJ9YMirSIK\nfnueXGFEWKNt1b8RCepYRarLSUx9aR0cwWA/H7g1Z+m+XYfh2FHub0S3k4tV\nBJMJh0qBzmej+uepGR7Tt89fG9mPXwpAE/PK8z4bzxwe3Tj9A0nfeRtqB0sj\npoMJy1WS7DKtJA9XEAYB/adlz5dk7+E88scxj/1ULjFL3V2rtYhD4cK/V+5i\n+DRGPxN6Vb4W107KD+lQYS7ChYRmOpFQmw/SFP4edk50Rkxn7xxBfAO7K9U4\nfXayPUALQ/djTKWjNG0AKPqL8Ua4zJvHKvIT4xVZxliXprqItSjsiP9axA4x\nL0gH\r\n=rQmY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFosCOzJo4b1zo0pKjXPPZJ3xfsReuThBMBEVmPwZorgIhAKtbZOoX9XXSIHpOaBsd+ieG+RS2c76+tVzDbhnKKYrH"}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.0.0_1535985058834_0.09688576362017232"},"_hasShrinkwrap":false},"2.0.1":{"name":"utp-native","version":"2.0.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"dependencies":{"napi-macros":"^1.8.1","node-gyp-build":"^3.4.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^2.7.0","standard":"^11.0.1","tape":"^4.9.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"a9b5d088fb98a9722a53a7e48df54bc6fb5148aa","_id":"utp-native@2.0.1","_npmVersion":"6.2.0","_nodeVersion":"10.9.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-2tHf9YTUaV/yvP6ZHZU9ZngA+3TtTpRiBkNZqCEksk5bSNwnOsUNl3K3cdQqoGg0XnOl2pYqIy1I5o2nhZc/Gw==","shasum":"5468c4184d60abbb914f6acd76c9cb3d60deb1e6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.0.1.tgz","fileCount":54,"unpackedSize":980141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjajiCRA9TVsSAnZWagAARlcP/0gZseoUTy9oorTyGEfP\nDyTCZxhZxktmhgXHbFF3cX6/K1Gnpfe9or2l55nallYB96pC3qoukwVmKT1M\nil+7Klk2unE176XeXmJns1aOwxVYNOj94wL1XeQo5ZntgwoDE+9/laHJORhE\n+gt/Rs5Me75nSeUGEWuj0dG+XWTnTHoFh41U+iI27RU5W3r1+YsyW+6YM/gU\niLSYa/9vbkNbueH6DYx60GBXsv8dQuRfXynD3y+41YVMCdenWpCeBa1kdaan\nEeDCuJtM9WvLdHR8IQ37Z6dVKFNxMd8KSB/2544oMuwD3nye3yNAjIb+C/2G\nuia386mbc+m/4mNS2qiJqWSysy+S7FaaBQK1nqlfYJKJhezp8Rl8wVJKFQIw\ntxyNjz6IpGBS/dC64hNjaPvIPWxtS+KfkxC4xTRnqIA8uUd4ye33+beIOZJD\nmdM1hlLXTy//MWyaffWoaqKalkhU4yH4KI7vsDDyjWbluMIxpv3NnjKH8++o\nR3Z5Tx/GnIg9xw657bYPSfOxU6cdae2Wnso4jAaY1VbW8FQq2Tf4vf/GbYx5\nc9QUGsXqYAHBhQVUm5CMKF6TRL4WQt2dWEcfLycrh1hiEEWbQzT699pa2Uzy\nMUXIijhG6vX47fNpyetRstNYg2a1uaTea4G10KzSPodNA/4vSxteu1nA8+aa\nQZ4o\r\n=jpdZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCufmXJ/9szoyh4Wz288MW21jsWyg4gujBspG4rFs8Z3AIgBRgC9al1pblXYZJ14eAj2W6wcXf2oodB5pd/nOtfz8A="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.0.1_1536010465829_0.5648186428433115"},"_hasShrinkwrap":false},"2.1.0":{"name":"utp-native","version":"2.1.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"dependencies":{"napi-macros":"^1.8.1","node-gyp-build":"^3.5.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^2.9.0","standard":"^11.0.1","tape":"^4.9.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"6be4ea0a6cbda70a9509468cfef8d845148243b0","_id":"utp-native@2.1.0","_npmVersion":"6.4.1","_nodeVersion":"10.11.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-P/XNPuFzCuxpedbezEwD4Ign0/JWEUtPbPjC3NwqX7tyo0k8sk057MG4uziNUwRSZ3zA38ltITPN3NG5DTejog==","shasum":"6a7b4aa03b40774bf7a1fdb7f8be2e82563785fc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.0.tgz","fileCount":58,"unpackedSize":1526485,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbv43yCRA9TVsSAnZWagAAlSYP/2z5KzkkPvcCHADqVkEj\nEjaMCzRy/YtwGW+OLFBN/IbSLWfQWiPiYooG7WZVafXGaXqH2U6e5ZrnT4oc\nGbRS5hguWtlv+gNgE4NgPtGd44HxMgC0R4QNteypdN9ATN2umkLEtkuY2+qK\nRyVegzj20NNjUgTzamNAI2ESoLo2uYh9IuqHZX8tMSXkYQwNrwVusgjF0X4k\nehpquLXjkAezy3XOg5sfEHmD1ZLvQ29q4Ic20WqTsPytPp7h0uAYa9SpOWXI\nPQ3R/f9GUlCEIeAu/wzke1hQl/9f6/0VDenD+DQm8DLZvWbnlVGjxcTIy91Z\nyte0MP/CnKIH45j47QiPLdKCHZz4SH7daCHv5tkYyICixCksSJShKHot6sz5\nkm+fImjE1E3YVWhJYydx+6y1l/9R0hDZUeB9nsZiqukDlykXhYtDfXRWqDiN\npizjNsEYzEb/spav3T2G51j1UU2peuS7/LHJdYtPWqm0lYUwDn2t7B9wrS1y\nJ56FJX24JxtNdp4G36tuJ7ivyMLh1caF6XtO4rCfQzBzAzjQS+vWbPi5c19X\ntCFOek/Kx+OuW3QkHvFDLcjpqjLa+cp2UNcVwGHEx7Dl87JFYPCi8CBSTtTf\nBMhQg1oyDXl+5sC9waGYQ5z685qco7iYbRf1692lsmf8rEN4aLOvPaCEk4yt\nWEUm\r\n=urGn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGuzDihqP2J21owN0W3MCCTU3Y2GybamLOGbwSFBRealAiEAqmvQ6ZEaUqGN1z4w7F/rP4hP09hW6/PPW4/ekhexJeg="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.0_1539280369288_0.8026331312533195"},"_hasShrinkwrap":false},"2.1.7":{"name":"utp-native","version":"2.1.7","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"833be8437fb2a51401f6d316aa274decffb81e62","_id":"utp-native@2.1.7","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-PQmXCdZOkmADtIqmhoiFEIdNlvkPouO8ktXqThFDBAt850B752bjQMF5KAJeMBJ5gzuI70ZiP9Qsr9mwCwzSyg==","shasum":"796f71a5ad94ebbeb316c7dd7b62317d55111b3c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.7.tgz","fileCount":58,"unpackedSize":3249452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMYV0CRA9TVsSAnZWagAAFioP/01UITZKTZmyf2GGndgk\nLIHnp67iujvPvZ7HFLGYiKL7IA6hMCfZAZOKRApbEARGAxEInHPOLbg6xypT\njSqRF+pSnmlNKuPXV9x4Y8iQL/VXhf5Yba9VJLe6/ATasq6iN/KDMZdWXxY8\nPLxIsZPpVh4NUpP6ARHH2Os/QO51l6qaWzID2jTLrqAKsN2RVsXZu7fRCD3J\ngK6gVyuOL3jX3uNJ3d51hVfAAKcgauifnAOIi0XPzRCFS0Zrq0xrW3MVEUgx\nJR2wYycbhruGCuPgS2Dw9VJra9fxuz/on34bCOukSTOsM9JX4EoZOR+AO+aM\naj8g2ZF2WVfhM5PQzCO0j1B5TXTw7AgTn4uEmsN0g0sJri8zJNJopfWWn3cm\ny1/+klrwAyNeZOFIJEuPISapDKtYhg1nRMaKCLn2c91KddNffXhcwVOpO/wr\nA/thcJwvozLVcOWzeCESTYFQ/lgJn3Z2v4cU6I5I+iPWnCaCYD81lRf2SMHq\n/aITG9yxuWcg5tYV62554075MpCNlmo8ecMO7xpPLwuQf+rMb7YzUvTJK/X9\naUbMaycjFwsKYTGSeOU0iYED6sbVsM4nidhoGeK0RRNXTw/i2NRfINxmy+MQ\nS9W+15SEFK6avqFxDc6nd0MIshfJQwgMzzesWJHbMOjeYfIX2f76u/meA3Cw\nhnRI\r\n=VWDq\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICZ421XLK9UdHMGNP/nATxRrz45cVj4ikdE2JIpL9Mf4AiBsvjpdnYq1A6MM5U+iNSCuu49/y6deOhHT98wcBVK/3A=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.7_1580303732009_0.8833596098934315"},"_hasShrinkwrap":false},"2.5.3":{"name":"utp-native","version":"2.5.3","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^4.1.2","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"1389d28a24e8d28a0cf5a6a91ecf78d87df66d7b","_id":"utp-native@2.5.3","_nodeVersion":"16.1.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-sWTrWYXPhhWJh+cS2baPzhaZc89zwlWCfwSthUjGhLkZztyPhcQllo+XVVCbNGi7dhyRlxkWxN4NKU6FbA9Y8w==","shasum":"7c04c2a8c2858716555a77d10adb9819e3119b25","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.5.3.tgz","fileCount":52,"unpackedSize":1777583,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3a3xCRA9TVsSAnZWagAAPEkP/jvqtJMo1RS0ZMWjA7re\nI9LM24yLz/vrV7+9PcDacGeJDvcZkcierh5Rzwnb4vEcGk/5/elWAjn2FrrM\ngWYJYI0FV79f7c0msDzl46pvXRPOfDK5us5d6pMmRKIoxx3W/j5rNTxASkcW\nVf12LJtOvfJjKDfPiH+H9HppIhVkSfyLq1ybtt3yPvpPfkRz2oJWU+gIJxKu\n9sEGwn5UgFupRuwUMbWfQSwUL7QNSn/SIJWYOjxwD9cVSMLA8ZnV7c4/y0+S\n/Ul3LhEhMwfAWmZirhstJfZIrTxaJY99F25ZtrAJ3kGhPa1emra8ExLWS+1u\nHY3cnOaAgiZqw9NSlffW/a20zNtE1/qX5c3Nrz5b0wdP91ZRQgT/VQgfF8el\nFp/ubpuYxzBArrSCPlsIUrIajQFgcU5uy0I2o4ls4IAb3BAmFApKPQ3Yc7vT\nsCdTOGeIBkAf0TcXk79OVnGlNiPhzTWQyQpBSAO18PRoSz+uyOugtswJb7Nn\no9PdixOgN2a6zbVyfcvxTpW0YDbhhDAH8yjtGTcvla8valWu595ZggoWQYXU\nOfM4INh4dhhqO/N+RVtxIrgtiGtyF5x+Sw9dazMXd0w4RHO8DXbgtE+jsDcY\neYgDNONJvwhAOSKmtZBpdK8Wy9eegi0I+4wcVg3//xHSDunELpPdQ5vsN7Lm\nxIpg\r\n=0ld0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCm7lRRZLo5PeSmbLSTVR5qn+v6jXrvHN9r8iDqZG0MogIgewwcqLotSon/x8fgpKMUyrURjfWa9Fv4P9ZJP9To+4A="}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.5.3_1625140720721_0.9088224933112907"},"_hasShrinkwrap":false},"2.1.8":{"name":"utp-native","version":"2.1.8","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"5cbfc603842ca9ec7a97d0d1de08b9e4391b0a94","_id":"utp-native@2.1.8","_nodeVersion":"12.16.2","_npmVersion":"6.14.4","dist":{"integrity":"sha512-3d2bp7Ltuply63Zp0l509QOiijXCo4YUx2wHJr20gFX+cmhh5U3k7GKTmwMHns8bo+ckR12ZZn6n+lHqpwLa3Q==","shasum":"6b3b8b8330a9aa54883b50eceffbabf57d1d6cc3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.8.tgz","fileCount":46,"unpackedSize":285650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJep+2nCRA9TVsSAnZWagAA6/UP/0Dg5arMaWbCUuqIdmey\n3NDoHr6Pf5GpjZCEJIRSXUTF0XDV/SwKAP7rmzbav+gjuTQ7aLP6HwX12rcv\n4rhWcCLL8UMU55fwaW0EFmzZ/Ip8YR8P1F+QzzUR3A96QhiXE1yFeX0QaJvR\nlqnnLl+mggav0BFrLMkTyjwxmIyOznJ7Y+R9C6Ggl+cJ0fYzIpkpXvaw814I\nsF3KNtOFQeOlOMvPTZrbdwM508B+juuWAL0VdufYDn1Aa3xYIi9ITzMSWD83\nUweocjoDIahUlG+0LQLBEl70Udk8rCzgZrpmfBmpPbgaehIG5u3BQ8j/0OPy\nHeBBlxSJgWlwM5ShhU+wl+hwPGm1Xn/YXqz57A5008+TbauZJGrEBnjAKBbY\nwLCZqI9FFQUZw3TDkV4uLQd/58fCov8JgyEtbHFbHeowM1ubkQRQteqNi7fl\nXM57k1ngOPX44MFxvsPAjg2BTifFGsrba2wT3jny1FOhNlX0fe8DLG2VjKmZ\njSQqzl01ST3JFdrAyYO+u9cZP+WJ4WEg1TAXcZjwlbpNAWz18VhEgVk6HcW5\n9SDoOELWDAM82F92y5wLGbVoEgZYK8rL2JyDpObHoEHtIcNLKttZLnmYZKhj\nV/xttEbGX69Mn1ye7jTNaU40eosM6qHnwjHE6pyEGxSb8iGW5u300+DXfySp\nEz8t\r\n=PuZ4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDFVlxshtOa1i5UUPMecJCijOQOeey+OBn1yCGpcSTo7wIgGZUFotQ5FTYlVfBT1ceeo5npAd/tsttNMsubtDlkCYA="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.8_1588063654682_0.5072391248367947"},"_hasShrinkwrap":false},"2.1.5":{"name":"utp-native","version":"2.1.5","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"196d6750c0e36e39451e6d1babd01a1719589f38","_id":"utp-native@2.1.5","_nodeVersion":"12.13.0","_npmVersion":"6.12.1","dist":{"integrity":"sha512-vQ193WXyOOo+LikYgXlhFLVU7w9zdLOuXr1mgmS/kRMtq/B7DgVbPPSWzKzfcUnBeS1vRApVzR8+o4xYItObcw==","shasum":"33515a8fa95b7697d8bc62e2e8909dd2f5ad3c09","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.5.tgz","fileCount":56,"unpackedSize":3106002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd0vBoCRA9TVsSAnZWagAACW0P/35i8c5rS5pxl7hM3aL6\nECR3cO+7VWB0jfjfGSP7+i6lvX6gKMjYYappqB6pcbM1j/8IomTB0aSi+nJK\nO/97hxQAADYBcmM5ckKaVE86B/R1Z9ecx6QMOzlZXrtp/mrETMj2NC0ZuFiK\nqavJ86y1W8WNx3QBpEKXuGnBi6hXWAhGqk5lDyrS3gru34lrBCPzSWqbPudi\n6KQAqMABOCmPslWavzcrrE75vIEi4v62PlSvI+U3YUBNcjkQK5JM7BDgZGUI\nSfITdixuDlosiSt1+eSfRIO9eMhID4S0HiGzxYDIocVIXYYWh0wn4QMQQ6TF\n6sx4ZxfdyRe7u4pIyrD/vbWt0N3/8PtOGLDPH6fcMeMeqfu00LtjEqcbMYsl\nfNGAWY/6FvE0p03WPD1SonqV2AXUSWzKjLvhMdNyy5s9BkHXNM8w58fl9BGd\nA/IGvpGsZ4M9Tc/taMCMoUgwqMizDBRybWan6I2CbA3KwRjeCyAJjTHRDqc/\nv9bNphltkmkXLVfA2zqmW4/OcwQylUiieFV0kpaJq+Xzy7fsuLyltcFkDR9z\nKrpPX8Myeopam1bZT8s6eOxOGKQ4EorI6d8hLXovqjt1ky8P+QaCLdtc4T7T\nB+w1o5pOC94/YQYh5aM5w05DLDDvwh/A9OQwD+jI6vMU8zgtXnZ/znBoMxg3\ngkFh\r\n=WdhM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDgf7gUlNrI31j06fPg8myzovYG5eQc5AlkqGFrJ8rTdAIgG3p3pGHCiuZSR0ZpHocjdM+QmIIBq2mfjheebpbF4Q0="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.5_1574105191786_0.4932103108903809"},"_hasShrinkwrap":false},"2.5.1":{"name":"utp-native","version":"2.5.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^4.1.2","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"b83b066fc4eaed4c182b7450aaeef1e8bacc3959","_id":"utp-native@2.5.1","_nodeVersion":"16.1.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-wbrJwR8DZx8N9s1ffTcMuBK7tMBQ9tvKpIL+mWHrDvGUYfV7ivroEGFTXUr4meqy/PVbUdMfURSoBbwuGtt/YQ==","shasum":"445a3fcf23db0a841a48c4e353f8900ea852b3e8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.5.1.tgz","fileCount":52,"unpackedSize":1776378,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzEkrCRA9TVsSAnZWagAAEI4P/2ERgDa7jp8sw/aiDe86\nV55L8j1aLztmEefK6D9sPxGQI3KsWq8jQhRAvA+u1oqvLaANGigQ+e0RQHII\nlfFedXtUrD2Eq+2oJ+YD556i8RWWq/z03fXeGWo112GRBm1OFVCOsJ+/PzEp\nQAHajBNYZdMN5OWYYDSNgoWAN/XXqjQkVP6PLvbaBMbwi3K6Akh4JZ0B2Vqd\ngzIcFYiUKqSZaqewvu02C2rFnG0JNkP3/FRUXc16xX42c542lEUVETSHcUob\nURkpaoHfk0TKjZXnfkkdYN4+iZFoo2ZF0BWcoUlrWonMiASOPnGz58yVdbbB\nn+AvseQiMEUTKZ6uWPdpmsVUZWG4xJn1SavObPKO1MHjIgfP0UGC0Uhex62w\nSUNyNx6XSFCzg83rAqGxvtsalLFR9xK9+94wsGQoT1hRp6Ucs7krk/azlC9X\nFWzK2dmFoAiSX0eHKJuL00libZ6DXvFfhHB0evoySKhFIk3W9JPOFPumpkj6\ng3gmTKJ6W+6XLxNlmGyzJEyExsLrLZLKGYrywg36Rm8iVDNQdoe8kZS2tRJF\nxKMC01o/a9n5V69qKN6F5hsrQXNxp1/QuKMtZO0vLRUzaOE/5LeH0ZJkJv3P\ngqO+2kXEF6v+QFOeyDaR4mXqip0CketO0QRtd1n9H4zi09me9h1uCXUqnKA4\nyl+e\r\n=4ghR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCV/6cffqyUUdxNly0D1NGSvdB2qJ4XAEAJqHQTnWgz5AIgKs8Lmus0yWbCOHRerie7xDgrZmCsb79UFhJEdNZ25To="}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.5.1_1624000810839_0.9223230506019113"},"_hasShrinkwrap":false},"2.1.6":{"name":"utp-native","version":"2.1.6","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"6f28289b79e36ff077fbaf50df1f8ff4c86312a7","_id":"utp-native@2.1.6","_nodeVersion":"12.14.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-5I26dyWbRNR7ZLcMaNOxURSAnlJvMMr2FCPrVEQHOJdIXYnOyfQdv2pyZvFxyTDmZxcl5P+kVsISKk5e69agtw==","shasum":"c515b3f094fcb7809a408fd77d8b8af636867432","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.6.tgz","fileCount":58,"unpackedSize":3249426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeF0yZCRA9TVsSAnZWagAAC4gP/i9XAxy8FY4KzJydgHXe\nV9LIYsG/AarOIXmWz9Mvgn9QU+4sbWPy3jDGBUR2TYy5NbrmfWdmALfR2asH\nyh9A7g5Tmb6AfwXFFhlwJhpG+AdGpbswpgZr4I/+YZFQTY9TwxM1M3qhkFG5\n4P7xAvA7wCme8b3K4kFdFcG9FpZulK3C/1U5hQSpzrJjCHRq+uyFE8WITGpG\n7H05Cv9+FZxcpHH9ge+syjpGd+FJSImefuAj2EuTrjNBOwQEO0e+LzLwlkY2\n/LnG4ygA8uqKMcc46OI8/A1C6fcfiwvlMHPi0rHPHQLTbmO0tMciRqq4Hpab\nv3eqoyCM1lDPLQO8/LyaTOKFxk5uDDTuDCCP/Po6EcPMzv+tDDPwzdPP9LEm\n8w1tAC5GW5ZraFBQpLqcQIYzwIakbM9jjsfMnocnA2APBTb+oH7D100QvgCZ\nVrcE1hHI1Oe8brNn/N/nJKLvYsFDJku5btQgDFu05xHZxGWXapfCinqyZdCH\n3LqSLyBTg1fXz+PgEqtptzdFe1kUYgDPJ0CP+yql1XxXVaV3JSP3Kex0TioQ\nm9Wrvx3v0SHaS1A5gYuOfQalV2qMVcdX36gNZHe0xpA5o2jRrm1ZoVpxJmw4\nHq6AFMvfuS3eClJlkxRIx2RTS6DZaN0Phd3CCae9ZSpXKVwQKpPVU9YONCZo\ng4Gr\r\n=OSSH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDoxJNXxztFfIG1W3aGdsewNSbq5LpvjJQhGNDSVLnWXAIhAI8tU9/6bX0BrSEg/wGVq6OvzEDkBbUl235CcjmnJPfx"}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.6_1578585241045_0.41342161796737975"},"_hasShrinkwrap":false},"2.5.2":{"name":"utp-native","version":"2.5.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^4.1.2","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"9abe25643a190a2a8e69f43b14d0a04aa68b4f17","_id":"utp-native@2.5.2","_nodeVersion":"16.1.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-E3bxe7rMfpq3HKf6+1dN0QIK+gLobRIcjN/UqabOmwLjMoyB8E2Hkop6OxCHvO1W6mOFozVKSnHGs19F6Tyf2w==","shasum":"6ed4977ad73b76b2375a10c83846b940345e928e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.5.2.tgz","fileCount":53,"unpackedSize":2359084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3ChCCRA9TVsSAnZWagAAys8P/RU+eDro21SzOEUnJ3cE\ngdnkVL2bDo2cLr8xtSfSg1ilcPTO5fa9nG4ljN1M91ejoXYmE5Y2FqHZfcoH\nST6PmY9kx3hb/FkS6KUM/yQh2Mb4qJXbPIbPH8DbrSa5KXiLljWF1I6QLhMg\nlBVWyTzScGCy1uqfUfF0hDASa5sn6za91sjn4BtHthJvECRreEPkCp60pJBq\nkw9l5TxaEb2Wp2w8SsrBjrTuC26yAsw4FxBLnCu+JHnTYfRZknPYjuTEgoex\n4/8Uk+PgE8hcy3EIAErYZ50PBbMEaeGlKuDs+46CAzrUA+INSvHFo4I4hYZI\ncEp8aq4oylA4NsXSboDdtmmn33jDNfFAK/wTMoYWs31xzdoMrpqSqo5J59yA\nJYZG9FQgZJafST6cbfHZKsTuV/i3bIPwBtH1KRfvK2vq+ueAhgwE+gdu0Fxu\n5C4dAq26dgYmd3laxTZwF6hU8JGcc+sEgE8y43P85wI7qimXvw5OcXeRBAlF\nPxXDIkJ1TzH6Kl6hBGtfSIH++P2Z9T53fhG8GVj0jgfko/VCfcfK7nVUefwa\n6r/NNT8sJrN9gYDweaSYI96J+SkeiZY5c//0R/Z+ixxZ6WcehagGOAx5KBVY\nLtiY6LO22Iiv9B+SJMO7BY2Fv8XMvMODxCiyxPCLfHAGW0R5IrsTl/TRJk2a\nsjL4\r\n=9Du2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYYY+OUnojecPsFmqsYrTvYvw5RTLApC3ouXZYUhybUQIgXsSeKIV4ZCI2PzLOQWE0d9ZosEmigcHKAHLCX7RP+gY="}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.5.2_1625040961826_0.4778123498658353"},"_hasShrinkwrap":false},"2.1.3":{"name":"utp-native","version":"2.1.3","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^1.8.1","node-gyp-build":"^3.5.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^2.9.0","standard":"^12.0.1","tape":"^4.9.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"435c3d00c5d35708a1568537b2d5d3baf41b919d","_id":"utp-native@2.1.3","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-lXjmAJxlaz58GDFlEqKYkNzO5rqttA+/TVHl7UUAs8Saj1QJq/3D4IckuVpsmCsjjZod5N7sE8QMUCYScVHDpg==","shasum":"139f8724a171091aa3f8be580ccce1174ee252f2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.3.tgz","fileCount":59,"unpackedSize":1729276,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6YXsCRA9TVsSAnZWagAA88gQAJNBUC3lOx0g5IvSrt6p\nwMcGH0af7peQV0n/dJUHi6E19UQ7c38VRGLwjEpA5j/kfL8GvT4mHq9l1WZb\nuscviab4pktSpDfn1pJ6o+PNEtwRDqjXNkASwEnvp2FGdNr+DZhXV6xsl72q\n3xoOcaUw9VCQXyURtt48cqDU81h1DKwjvy8o25Y27hHVJOYJ6WN7kwo5uQyR\n38KoDiNjHpB8tohik0lbWb+RQpgPBbTLX3s4SqnJtPKBXrrevkIuX5S1NCWv\nMX8lsK5+13NxsQkhBDrBqJVwdwLp5KiDx98riCZsCsGdwzR9xuJ87MZ/FyXB\nvfSvLyrOmIqHorG6hB21MsIBTqUWJeg1y+CH+bIW0gRV9TMvSB46wjtoFV9N\nOfUqv/rdUrVN1CTHLy4g4gTE5jQixJUUkv0IHgA2dQNl01rBpWwh1h6xtxll\noHKpRMzrUO2qdIhMopIrSgz6RaNJ890HcvCEqxEV0H9y+7o+KYSmUHgD1XJ3\noDw+WMKWN30knvZ+i8zVWdhXf4oK8Hic1VKQKVC2fmsG01PVfNYaqshF7YFl\nWbYCUtfUwKo1CRM9JJFy9wxIAPWa7EljduMaObDWfwASJTjxX/g3u60ln3pW\nu6zCrUZ+2v7cKX7hM/tAxF0Avpl0KmRncweLlmWWwcbPVKHciwMeDTaXE1nM\nFnjv\r\n=nnw8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDuGO3oY+SrjZluzAiftEszw95r3ZORDlOV8P+Zdqk+QQIgZo+U60a0iBznGzKhrgIYg/2ABqASp5ClvjJ9B5DyYkk="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.3_1542030827232_0.3754959048347386"},"_hasShrinkwrap":false},"2.2.2":{"name":"utp-native","version":"2.2.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"82278161e5f571a61e4865b31c0bc0abbc6e27a7","_id":"utp-native@2.2.2","_nodeVersion":"14.15.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-xwn5neM3aKgRCNYaiENRf2pwPa2G79O7r+OCZJDiy92x2q58Ez9hFUPeAW0IQcv0Ii5l1ytDIFWWyaiYVOtlng==","shasum":"15495cbab4b81294fe53d62418e252f85402757b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.2.2.tgz","fileCount":59,"unpackedSize":2516527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxoOtCRA9TVsSAnZWagAAlTYP/jNN/XcnFU+imMuxlHve\nvHis32abZEArIX/dRViMIAiLAsXhS1EGQF0j+zdSAxdXR5nvv7v3g17C6a0h\nCp6vabaw2F6Y5n6VvgzhxkkgwwsyTokjRKPH1oc9ocxqylIfUp5/AmLhZtK8\nbJhikG+vdeHNPGqVi3eNIXaSWuTzusBK3drHqAfrzdYJpuxdyah/cTk0ZZNZ\n8brMcSEuEhtb8E7SWuzj7bMCS+dquP+fkYzIY/QQ5XS+eVzKxLHkZIhQLzvi\nwjKdkSDh8131pboWAyuED7Cjy45pmv7iZUC0MdKb3YM7QBvr4jra9jI7/hxH\n/7TSy76bsXwiAezJTn6VctzSN/6FxQ30kPfQ6TGzRhRAeO4hIKNnQB3rO08t\nanWOOQCuznZn2Fa9k5PCym5bsMRRIs7K+bM1/jUYR4NZ3TaXiaH1ApspGSe5\n/D+/BVvZ/YthdOxSCEAj4wT3WIZFjxKE9JVVoqUstdXYRSnsMV+Dni1BzqZy\n3skvMnEpBIOvCw6QwG0O2/H7JGepU+TLPnjOeyoEEPM3rC/X0qT+cHyxagNZ\nJCAsbsMzQ+hS7AUHhZiLeA2P543nFbWHxp21Gx3MkAreYyihQxS09nviARV3\nWBlluaUM/Ej0IANqcq2GIUEj2+CsCE15Pf1IPZ94jbDbiicMZACrU/7+3p+O\n1A7/\r\n=br17\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICyNs0W7QPWYPN0ylTUhKCXxE2/JlD5kkS4m7vYi3pR3AiEAsqsDMxmchpiq8XkbeI5PZZX3a/Gsex4jtffszolzN8c="}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.2.2_1606845357179_0.9533496717298433"},"_hasShrinkwrap":false},"2.4.0":{"name":"utp-native","version":"2.4.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^4.1.2","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"f4bfe572a50ecfdf90ed83d956c3947a4bb3bfaf","_id":"utp-native@2.4.0","_nodeVersion":"15.7.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-jKwpFiEaDUuNH5S4vVk/+waAX+yA6f3Lw4flqOROH1ZE/jcT4mh0/hjIGSuPP9j9RbQcsBG6Fu6LaFk4ojXFxw==","shasum":"7010de2134e9d767be0ec34e817c3300592befc0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.4.0.tgz","fileCount":52,"unpackedSize":1764843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZCAfCRA9TVsSAnZWagAAW1wP/RSBZ17d41gBcjOtf3NX\np+mTRLJ5p+shCmkwozqE83oWJWh7hP+bH9+AZJW4nICEvaBmSZilWvgc5R3n\nHdZjxN3Kx/3h+UbNNEXNvQXx/+GeShimGV8iwuEovhkBwkUm0oGgH4WGR3Nc\ncyVHkVE2Lbe6w6j7rvULRSmipztS3crJlasKnTTOaZ2BxQYSL+bDFI/vANS8\nsIZf+4hpkgA7O+cX/poifxuMvqA3ssKT09mtXpCQdx4pKiJKXAwAn/X0/6Cs\nXZ/usSXqWEH4sN7JtDN7c6V78/wy5a8EkE1LwehmVc2MhM5JG33hJDVfVBKL\nEJB84ARIZK6RcAry/iVgsP2dBiNZYKXOKLrHPfakXFXvydfGNrt31V9hhXMJ\nOf5vZ4rrkRiyvM7JCRDvgdIk7S17tGBcjvxILxaqMoE7uB4tzw6GrA4hmx3R\nciByKMkCVtd/UQwpwcga2Y3qoEqSnD0Bb8Ou33/pbLctzTxFSh8b/VCrIVUe\nh+dTm0c6InfDbrHYV7uZ7dvMecAbWYOMvHcESVzEfBYwa9Qk7d7k4lm3E2+U\nJGX3Ud1GRjPMPaA3JFIn5o4Y9FSqydgO6RWz6Q+jCCsmtQbiOkL3sYZai083\n1v6kMYUpvdSdsd8uPmSfN6uOo58F76Igl8tR3OFRs/aFRZJbcSgvTiGNE6nE\nF4Nj\r\n=b6VV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCVvDfTkR7IS3akuNz368FJIKNSyybdRJznzIBXMVbbjAIhAOVHMOFmGgl2pJKW5ljQJXBd6XOB7zZThPlU5z+zyhAx"}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.4.0_1617174559284_0.05326007480429018"},"_hasShrinkwrap":false},"2.1.4":{"name":"utp-native","version":"2.1.4","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^1.8.1","node-gyp-build":"^3.5.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^2.9.0","standard":"^12.0.1","tape":"^4.9.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"6b978f1b9d707860bcfb45d23d3e5aab71709183","_id":"utp-native@2.1.4","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-FYjr3bHBnJpw8yD0CmFCh5USyDgr6VtuncEIun100GqCUdgqnkAx9irSY3tA4UrzRH56qmiocP2fs1QjQ7ZDZA==","shasum":"fa7063d143c690e65064317fe17f8829dabfa3ce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.4.tgz","fileCount":58,"unpackedSize":3257265,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJkX0CRA9TVsSAnZWagAAdCIQAJ74b2oLPGloazufkSFC\nhnTKUMIym2FQV9Yvap9xHuRBRshnslwMEIEYmOneaghcyFTRSBIuN5+gPdEx\nwvYUJiD5YaVQ38JT2ANiPLqvjr/8/oY4ZxZuc0Az8Zv+WWoRlJeLU1uSHt29\nslDBd8EnkejfZCTRFqzxPiKjhtdNZkydh7wjJxzKGG74pBCWJSg+Coo/voDr\nVruCWnm4c02G3mvWVq1YaKT1kljMAnFjiUYZJ8GXUyCea8kah+ZySysABZQA\nBBiPeLKV381VV1FbBYhES/L98xIwXXGnrhhH6/Oy4q01lNrnBxedsZrv46IE\n3jv7gDwih6ATi5QLZ84K9U3mnR5aQhLKm9XtmNGm7jRREGQtf/YNiiI8AH4f\n4yOfSPkQQmI6fic+7n662/T4XkANPs36QfIwZLuQdYQ1fmUvV2B70L+b9Zeh\nsibjn3v+YPgrQV5p7O6u4vKxIXF5XSKvOzKIRtmIIfFY/7Jw6cm4dVmjpLuk\nqbKMEM9q7MxVGWj8rMps+PqFcs+EKI6FRV8Z5KbUNsW3Kb5IpINFE3h9RYSI\nD3GOHsf7UHZJt7Ij7xQziNsUfKdoy97ARFWec+HIe4hM/4vHxpq88GHzyNqS\nXvG2qAbA9A4RC83wq9EdpG1slfW63GIkS3PP8e8RqeXy7B2ItO9UqBRkHeqU\nBn01\r\n=TSY3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCkNTfFmRPhccnZcRaEJkCXdZV5UrrjlnC5imuwIRoWCAIgJOQH1h/mdtMS/xM6eA06F7xGgPR6KzecCd7UnsgrCGo="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.4_1562789363127_0.92767504536581"},"_hasShrinkwrap":false},"2.2.3":{"name":"utp-native","version":"2.2.3","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"76ce87dc37c1bac965a35637251f7fac7380ae9c","_id":"utp-native@2.2.3","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"integrity":"sha512-IBZngjKZCpOfjNW3xPMZLM63PfZckWXUgqLP7NJKCihyjMuRYKEXUuHAQjZHbwdKlk8Eyumw2kQhaqabkK4JoA==","shasum":"0b9ff611f98ea02b7b76658de0ca29b342d3ce36","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.2.3.tgz","fileCount":61,"unpackedSize":2730407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgEXPjCRA9TVsSAnZWagAAovQP/ROWd/aC3GbfpR7Gd0xr\nf0FSPSff0xkmPceBVgdHdFh26bF29a2HgEdQ5Pq2I9+MDEhouVDM4xMu2jyR\ntrWCmX0IXaCOHqamJCwg/IJa/+aCZgadpNCGbufUYkteqjDEQFHu/gmS56sT\n5xzh5ooZOCVkP3z+YKEy2z007N2s/k5whnqs6nU8Vm/5spkT3gSmj5VafW53\n690T0zgHpnD3ZqEolBj12r4PO3xLtEbF7jl/zoNEb6MWiCqxl0HtloO1sHQ1\nKxMhK3uiiLXUHbBfgzxu1SNmqdEmZCuUmc1stwkOzhhnaolhMQz82x1F2Jd7\n1Rd8F9Qa+rWZlwJDPJu9lTqSSLKVApwNvGoScSnQ4tFhsEBvY9aX20oYm1fT\n0EcwG9M4oluXg7NTgNK5rjHgoa0biyx9I56VdJRQJcdPuCpiHiSIcy/zT3Ik\nuU4G/y7zA5mOvU3moM8d30wfHLNVLFI/Tjo45/gTXT8RIAMafI2FiN9AYDQ2\nSk9ElKbM4Ft4qWPFob6ENOmXeajEVFfy5KLsH3qxUE8GYT4HW/smwY8FS/7A\nz+xEWLUiU5cYlYdLxlj8DpD55rwXE1eHxBdZU0GC3izw23dzZ34LrbUTUmzF\nluBqbmoYKbRbiYBmu9AptDmRQ9a48B59uvaWhDTGwubFZpRgKSlZoaldcdwH\nWBRf\r\n=AVkE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH61VnHehYxumDMA3e2Ug7Xzfz/nNslFrrKNcyvIk+P3AiEAnf5SOs9YE2z93+c5GhOr/vws6aC+MBBdHVrg/I8TDv0="}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.2.3_1611756515128_0.3700818362413665"},"_hasShrinkwrap":false},"2.5.0":{"name":"utp-native","version":"2.5.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^4.1.2","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"471f6c43ecc2be6fe8568a7073d3c9802b63ecf9","_id":"utp-native@2.5.0","_nodeVersion":"16.1.0","_npmVersion":"6.14.13","dist":{"integrity":"sha512-HoHPE6gwLxC0xlpYJUl+Xw2sh809lhXx3TexHsb2/xY8vEd6NwuvAxOI/X27dBTc/TOT5diWUpCJWDaunkcVvA==","shasum":"3d8321760108b30cb15391196c8cc93db85b61ce","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.5.0.tgz","fileCount":52,"unpackedSize":1776213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgr36ECRA9TVsSAnZWagAAowYQAIj4s0yA663tUPy7+aOe\njGCOx3ltm4GxZhJlZXrab/E8CfUX1x0QTZpkOsgZeHjheh1y7Rc3qHB3NpS9\nvXxg95OGG0qAShDck+0a3IvA8XbtrCXTQPZO2V4J7TYi2eeAyEsX9M/XtSJF\nikMyQ15zxXJACeDhj/6N59edIPuAhuh/t4UabdYgPsVkCumov9CTUd+s083s\n7ZT9GZAqNqK/p01OUkqrJMj5ZQyxeUH7J/x9q2clMDfTbWMVB7x97MY2TlN1\nTKca0evWRon+XC+wvkQO6ikkfeyAltOiyJN+x7A+0EXnQZiBgYElypNnpPUW\ndTEfM9Sq7TaVjWm14Sh3ln8EWje2Zb0nU+EBcgvLMFf1+UJHcKOs5Y+yJlxZ\nsCkod3Nbx4VeJ2TWwRgfeC35FLo3yt0/ZNooIP50/Jr3bul4+f7rol4+XfZB\nBjToRe1e+35+5UdVK3gAzqpZjBGOr4RiOcNRDqI1moW+syP0Y33YcYRP+WW0\n6LJFcbTFQnuvYNYnERHFrNYTQzF8wTKLh/+1JigCkQBWhFJT6D66EsDpgOfo\nzrNhseIoqDcjoqVvNoe1lMEwon8T4uelrQ4K1Zmoaxc9SzONaqmtyymXO+0x\nf02iDiwjR43yZpDMlpsNzBA2rx8TnOUAcmu6eduetkfZk0LF8y143+hK/PJu\nESBq\r\n=LFec\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDElizhBRC2JK3NWabsEBpeUsRzl1kyJE/1C1wTuFq3xgIgAJP1PYcNcoiG7jLxbkAaRPrGFNPBw0DJbe6qdMP4YJQ="}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.5.0_1622113923401_0.733131860041021"},"_hasShrinkwrap":false},"2.1.1":{"name":"utp-native","version":"2.1.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^1.8.1","node-gyp-build":"^3.5.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^2.9.0","standard":"^11.0.1","tape":"^4.9.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"1ce1ed1ba95fffdeb6dac6d69033936cb6d7ade0","_id":"utp-native@2.1.1","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-l/fX6u/Fx0Mz1CGh3PRNpDQgof7nuLyyvHNPvzBRLUHJ6WNlOD3mFs11gzTykqMaYFn/TTOEIR0Fy6UiAYdwKg==","shasum":"97d9bf09b5b9bf8bf7c6b0c2b73186bf3c55025f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.1.tgz","fileCount":58,"unpackedSize":1526539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5UGKCRA9TVsSAnZWagAAE2sQAIowh0eEJ7XcoO4j3qZm\nUjkSLxosx+CZU4IkT2/WSzqcIQzJFXrjvrT2VZdElrkObMUXA2zLF45LZhaY\nxSROuAGIgYeFQCJK/phmWzEv6Vyjo1e+6MsEZdqa0LfFBK0KZurr55+TCwjC\nIn+WplHS9kX7W+1Szzri+tSL9azTKrizw4nxTUvzrMCwJYjA82rg5CAd4ulQ\nBSIQmzjuGthBhWJWyxLsadmu2wMRHKP/5w/kDk582SHwIzGFamA27kqKvIyk\nKYkB4GDkTlt6aHzGuHTKdYQeS0aew93VAGLbBXH+0no8mnWfpB3NuocoPKOQ\nixk3PRdiPOFyQHXKL88rhFTmRuuS/QJzZPCmOHwRrzkxUYCBATdB8w4s7Tlp\nzQOhO6kqN4DzKGHTUMZLcv4E9Xla00ljVtCf6S9f2NvcbCX1ni8Y/pvainai\nHPLSDqpdvla3Li4eyHNlolJuuGxh6ILFeziR+Q3UrSx5ijnykrwHHjKxQYUi\n1Pga7eUSCchihozUrrGvxwZUiJg9bh6H9sQGNwuYRJPqCTFovRsweQivuuNu\nUYf+zjemfMkeDed5udNzkGstx5IMkLOP+1UJyT2wSYTEmkDkNBVSjntLGpnG\nYaPPZ+80pcVydW8cy7NLae6n4YHuZisg8J7gDpsEgm1SqLiY2/NV5KKpoXSK\na+Qm\r\n=1dUE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZdDRptcwlPRRxKZ7uiIjrN9MO3Cc5fTi5vP8Or4RmfgIhAIYrlbYieWb3AXbzwsGCiyXF5koq1gjNEf+2ZhV9BKFT"}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.1_1541751177645_0.5921659943068387"},"_hasShrinkwrap":false},"2.2.0":{"name":"utp-native","version":"2.2.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"379562739f338b8ec52c2320e25fbbe394c3bc3d","_id":"utp-native@2.2.0","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-Yx7O/vbgBNnsqEdIrVzST/cF8Tj/JaLUeQEdRbCSKDpSnHEf+kioD0Xspau2OAI/jkZaAxc67/HqLc03Ykf4mQ==","shasum":"73bf98cf179067a8b27cfb84f40fa10098678c2a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.2.0.tgz","fileCount":56,"unpackedSize":1796482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9IlQCRA9TVsSAnZWagAALCQQAKBIx7Fby/u6UEOipP14\nEKHnKS8xyLr75CyGl2Z+eSbleBlT8CyEocc1hb5xC/R0QmeCugAw64tOy/q2\nBvXICIZfNysURHsNhY0rPelh8l11mii7gS+ipO5Sw0NLMgn8BHzH0rvJ7ntA\nqOqARzptdsU+uIBBtX1//5n4N9Y7RD8Yuk6DeLDYoViOAWSU1L7IcHXoQOL1\ny4uLp4DYZerTpSnoFAvGGvX4CPA/nqB8hBV5kM11zG8I1KhyRxNSEuYOLSu+\nxMcJEWFxpExo9HBtkrj3HtldAhIPSjRzlvP/uns+YaYXhYQ5bbWEniw8MI0P\nf3ZoXal86XRxahoz160Z2ZxDAoq4XoTTPq+Qyma+6ixJfSJRksCec5qtvPvx\nruM+JlA1+sC0A/6K1ZkKgnXmuYgmiowxdhKjQixrcR61RInS9JpqX2zGms5h\nAb1PZmuexcAFLa+1hMGKzCmamlMw0GaHNM6I6e5HjynjVl4FchqzB/izcRQd\nRVlaHXt0DDXkDV0K9xp99q4Ek96HaGqnlfeaO1lpx7jrnB16pQ5IQyTTgOEN\n3regXUkmarjL3y2oAtZ2Nsx+b4/xC77QWNELBOW4cLRhrdR/Yw3awo8S9ky7\nGdBqdYEmE0cJfzh7YXqRh4Q+CD9kPUIbEKsnSY9iU5uLePv9RXgoOpR1YRmZ\nM8pv\r\n=tHRz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFNk5TNS0aT0O6pH5qF4ZraHq3usTU263f3DAiiSrUaPAiA+FuPS6BUZD8eannLO1+Gryj2o8SP4rP7PCFeTEPaj6w=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.2.0_1593084239187_0.5752846286385194"},"_hasShrinkwrap":false},"2.1.2":{"name":"utp-native","version":"2.1.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"./ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^1.8.1","node-gyp-build":"^3.5.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^2.9.0","standard":"^12.0.1","tape":"^4.9.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"cc4e87234dddd4354995e60a0ad4d383972d41fd","_id":"utp-native@2.1.2","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-OwS8FQyClsUiysNIqZ2BqXg8Fcfqxvk1CSE29zE3lJfQEvH4uE0/G7Vx4mTN/4APE/Hi8FCe8gylKt71+zFINw==","shasum":"f9e34ab35eb6851abd729d55254d91559f598fd2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.1.2.tgz","fileCount":57,"unpackedSize":1585700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6W8lCRA9TVsSAnZWagAABFIQAIa1YVmAn6ptS9uw0tvi\nr/yoSMJ27VkT68ReNTLluI4jo632iwMEWKy2XT8AdwDJZPJSndtKhqpMoGen\n90JS40CPckv8DJM4LACslHLlXmgwqCgTCKd7a7hs84fL2esu91RIFX1d1ZOz\n88855r8EzkyJJNmQlxv83OfBXc/hZu2UUIYB5n7hhjSY///NA1vEEBHfw159\nruHYVW4sN9kyx5D+hvgFENjv1034M6y1qbLpJ+uoWXz/mN0QnuSacw70dIsW\nYsPmEP063GREHsIjs86NbXBFeSYz7brfd7jVgrljA+1n85060EPjxUtdIQQY\n0Of/DYmPGtLXuGzGYwZpuLGGIGEUfR2ekegRsCRMbEu70FkSC3zWHtiV0+R7\niYPpeBXObMAbhcVnoUjLhCMHCvVBg+LrqzkJj9yh8g+HuyL2WwTqCgGOjG/7\nrVOFBvlSC6QTsMCs/CfXO/xYGC/Iy45GEAyb4ga4256aHh6QY04vtVn+ICSz\ntrLwRRKr0y1AJkkYu+53H4pEvQxtUa4lvkSC8h7YDflh6uYO5BlduNne3Prz\nozGEbXagd/tNUVR5nN9morn1PrtfdbsEQdfHgP/NMBxty4GlJrp+AicNeiAF\nsoh6obrrj9ZARN51BWROfFHENxCiYfOZa22RNnOaYTV2MIrlGygT4tpvhlsz\nUA7q\r\n=35Hi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDCHxZJRJF9SX6gBDQs+RZFsNBTzVwThOU2W6ks9xnNugIhALD9eC5e5A60w6yg/GukNLrYcgOHryTSMZNCptdo5cpU"}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.1.2_1542024996524_0.2741781790937523"},"_hasShrinkwrap":false},"2.2.1":{"name":"utp-native","version":"2.2.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^3.0.4","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"d5a201b49e8e82c11b6b9a2fad9ca9db851186e3","_id":"utp-native@2.2.1","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-7GvD4gjGyL1GaNtZAaBVHn8SeWgx9/xIVE1LufMR0m2pWUs1EVx5WiOCXrCHyt7e15+5SquBMoQfj888pJySxA==","shasum":"6d33feba04bfe49b368bad05555703f9728b6e63","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.2.1.tgz","fileCount":59,"unpackedSize":2480616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/belCRA9TVsSAnZWagAAdi4P/17pNevve4AJkJn6KQ0i\naP3pocMQ88AjedMy0QkvUsAMOfVOgmxRhm6MkfV8IeyfHtOaAIMDcKVU8Vdn\nNlpM8zZ7D72H1BFTCs9+pEw74sabzp8MegJnsylpqzNoXmV4qixby0DYj6CA\ngUJZcUH31eaFU4E5VE7t5Y4XOp4bSjbOFuj2OU5K4vnkQBiMhF7Xg2o6iSwc\nAjYLrGb9L8sc8M1xTeZ3cOrgtSkmZfgikgoz9kLjYmei4QDWbyvUuoC+skEG\njS1lj/Cw77H1a3R/I+eo/cIyvj0xPhoo6XYeqdMTehKVfQtsXqLPaag2/oMz\n+aS87SBmWKj13Ju8oiYmVqNf6HebSsUmk/zeWgiUAqs6Yy3hco3Q4W1q2KQj\negR6LVwTpKvkRv1sJjsQQPRTS1ei/k7rW2vVx51zDOCBRbXy6JfWWrKKAWwE\nl9Z363CgEmUCJxt+XRNS0l3RcmvknWjppFZAVnDDSu2QQZdILg92OIUttTqr\nFiN/MnbS1eeUkk1lxil0qENO35pvM0LrAN2c8sh/jHHLegc3ynUwX0hxit7U\nb5mPtlW0kmuA/K0RtxeVN7AZu2IMiq2lJj7evYKibyx0ZYoHGcycTIIB2OnL\n3VBOHUa+pRxUE/gadQHQnpggMWcWo+XgvQeFnpkdFoyDnP/st1CJsiO+UQR+\nDpkR\r\n=MIK7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH8VuJ0GG3rQfU2XSpvhShU51fYNMD4x1Evnb9z8zYdeAiAYoiT17FwhEBydl0CQJux4fE8whIAtYkd2CcoYf61JTw=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.2.1_1593685925340_0.8553626387324853"},"_hasShrinkwrap":false},"2.3.0":{"name":"utp-native","version":"2.3.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/net.js test/sockets.js test/udp.js","install":"node-gyp-build","fetch-libutp":"git submodule update --recursive --init","prebuild":"prebuildify --napi --strip","prebuild-ia32":"prebuildify --napi --strip --arch=ia32"},"bin":{"ucat":"ucat.js"},"engines":{"node":">=8.12"},"dependencies":{"napi-macros":"^2.0.0","node-gyp-build":"^4.2.0","readable-stream":"^3.0.2","timeout-refresh":"^1.0.0","unordered-set":"^2.0.1"},"devDependencies":{"prebuildify":"^4.1.2","standard":"^14.3.1","tape":"^4.11.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native#readme","gitHead":"4b75457319f0e9e3fa2c5fbd7d31c7c31a0c51b8","_id":"utp-native@2.3.0","_nodeVersion":"14.15.4","_npmVersion":"6.14.10","dist":{"integrity":"sha512-5dV711teCP21FIRndcq44ETDPL00TnRVmEnINu3jxyg0tq//ptxOyq7oNO6TcMmuFfeFZRSYOqDmTUl8MmPauQ==","shasum":"4e97f45cef97c6d201b9307ba6d15c1eb0a9dc5e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-2.3.0.tgz","fileCount":54,"unpackedSize":1914766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgEsdUCRA9TVsSAnZWagAA4OcQAKQS7PiXJSkCixNoISIX\nvGkAcUyBSgVo/EZYlN9AE0pK5hbMuwf7XfJa5BnFW81P/PFu/f/HHXk3WxXv\neelKZKjbK6mavA/7uOvyw679RlcjNvj5I4yFRtZuVTGukNlmIfNzVYV3+eBF\npgsO+xKzHdVwYygRyG2ktepN0JhpTPC7xJMIN4eHXxtYOMPDtucYPJmWMjYF\nVtFy4Jxa1tPot1Y2pGlGTWpSAdtGj4dFjdo/+umnm6XC8pqyyl/LIaGzbvnQ\nSvF3j9ajBbtdKYNJLfef9JwkO6r3kCwAiz8xik4ws2c25rajs6TqI3TbWAmj\nWjXjKiEJKviumrnbJVpFrX3yih4ZYMqvFSY1e+c3CoODRqLr51HgPZ6Eu+j0\n4VCM0bOIv3r8yzn96B3wqHqMYh/dhm1rDQ6e9woczm70C1eOpntTe0eUoEmi\nC6DirgGr9Rgoc0PlBZfh9JwNnAckBH3nRALQPrDldkXrpT9o4NEMX9KPYZ8/\nQy4TMVI0NX2UKa41A4wE+X3QPdmnx5VLwbsosbY71JWG8hYjWbg1v8d/mCdw\nGeX6rhTwBa7SjvKEkJ/vAhc3meAncTGhHWdiptmwJs5flrnPUpwMNt1/S3pa\ncXjREByxGMg8sY1grYPGq+zWHY26G76pCVZ1/BLmx5Z3U59sHQ87edlaXYwx\nfXzJ\r\n=PcBj\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDH3oNV/xZbgJ4NewkLDvsU7rGEFocGEtYeTxMmBcKMcwIhAOj3osg50mm87oDs5xvXkBHW2JSMG1BxSv+WiFGlL5B5"}]},"_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"directories":{},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_2.3.0_1611843411946_0.43911505997597056"},"_hasShrinkwrap":false},"1.2.1":{"name":"utp-native","version":"1.2.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.2.0","prebuild":"^2.9.1","readable-stream":"^2.0.5"},"devDependencies":{"standard":"^5.4.1","tape":"^4.4.0"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"c0b21158ad7026d8f93ca95f1c107278ab41579e","_id":"utp-native@1.2.1","_shasum":"5a51e6b455537b3d8c9c2202450b074c9b08ff2a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"5a51e6b455537b3d8c9c2202450b074c9b08ff2a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.2.1.tgz","integrity":"sha512-FR5/dEW6H9loffHUsVpDVEdziHa7kfJFTg2SRAA38bny+td7qD2NTPFiJFyAS+T3UU36SHLGrlUHw8OBI5Tc4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDVTec35M6hCs+tus3Em9gaMf05HboIDwB+Rbgt95WLpAiBkzft3JbJ6JuwppCMioKop5XqFR3y5/BcIrJ9mDGL5/w=="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/utp-native-1.2.1.tgz_1455487640710_0.34347479860298336"},"directories":{}},"1.3.0":{"name":"utp-native","version":"1.3.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.3.3","prebuild":"^4.1.2","readable-stream":"^2.1.2"},"devDependencies":{"standard":"^7.0.1","tape":"^4.5.1"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"517374c60959a3367402bafafc88814a8e69e18e","_id":"utp-native@1.3.0","_shasum":"b838225f0537667cff24ae1d0da5decb894f2b8a","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"b838225f0537667cff24ae1d0da5decb894f2b8a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.3.0.tgz","integrity":"sha512-PPgKbjAHdcK17W5HsflI9dmjbliYH6y1wyf6FuaFLQzDviGtnLRmF+7Yw2EIEoQZnPhcw0z0S9v8dKM+gsqjrQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC/+sQGlkjbMVTAeFP+5OwummTMKjMMx9mNzI3J08XIkAIgLQp0A87ozu6Qzf/4ssSTCcBiaE2oYc9Slii9j7cb8bo="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/utp-native-1.3.0.tgz_1466330432829_0.05663286102935672"},"directories":{}},"1.2.2":{"name":"utp-native","version":"1.2.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.2.0","prebuild":"^2.9.1","readable-stream":"^2.0.5"},"devDependencies":{"standard":"^5.4.1","tape":"^4.4.0"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"799d91fabe2b5b017703cf281389495ca33f49de","_id":"utp-native@1.2.2","_shasum":"9d41e3a45951dc5a35c295f75a61b7fcd87e1c85","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"9d41e3a45951dc5a35c295f75a61b7fcd87e1c85","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.2.2.tgz","integrity":"sha512-+uR58QQxe082RAYTvJJxYPrGL+9Q3pRQlHigm5ViK4N4QHxgGiEov25jVr5SEmieD7jKOkwuAISefGXbaCKDlw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDBSmU1L9BIbAG30kagJ7kXSjNXQfst6XAhHGizpkLywAiBCD/ASdMlmnImePVEvtNeguctJbM8gPbtfAaeI86nRrA=="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/utp-native-1.2.2.tgz_1456086257874_0.05179333873093128"},"directories":{}},"1.3.1":{"name":"utp-native","version":"1.3.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.3.3","prebuild":"^4.1.2","readable-stream":"^2.1.2"},"devDependencies":{"standard":"^7.0.1","tape":"^4.5.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"ed8954ed84eec4a8265d21ed049ca098b22a4349","_id":"utp-native@1.3.1","_shasum":"fd55bfd70d8d1f1aa04d31c3635a313765f02a4c","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.4.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"fd55bfd70d8d1f1aa04d31c3635a313765f02a4c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.3.1.tgz","integrity":"sha512-Rb+RpnOTGK0GiwiWEdY8NLQtZsuz6ypZ9fnt5xVnmehuyDTPK/JcR1fajHZUs10nWn1DKscZw5l8/wiOR5lJsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDj6xmVku3xC8gqy4U7QghuM293zBmSC1nb1WcXCIJVbAIgAPKsHVOnHvxmYfRtenwhqvpYa3PifDMvjNBNFwT/o+4="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/utp-native-1.3.1.tgz_1471817706687_0.07572217844426632"},"directories":{}},"1.4.0":{"name":"utp-native","version":"1.4.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.0.1","standard":"^8.6.0"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"4e1d0cad2751773becc20a2698312250507e76cd","_id":"utp-native@1.4.0","_shasum":"dab29d2e3a5df71de93146469c1b08d4605a3465","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"dab29d2e3a5df71de93146469c1b08d4605a3465","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.4.0.tgz","integrity":"sha512-treveXwynQzMxhLjpfjyo7wbUwd4bkndT0qXrnz5g2BE5MmBKBydr5kwfqe2lWcDLYtKPozd4ofNHbksQqT/LA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGNsrlaqwAvODYxl7ali1Wv3AgTlFWAkiVJ95kADC5ErAiAJ5BkLPXqKs6GYDW7O76wDfbJ/Dt3u+d754h2cvG4OXg=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/utp-native-1.4.0.tgz_1486325850010_0.7493213447742164"},"directories":{}},"1.2.3":{"name":"utp-native","version":"1.2.3","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.2.0","prebuild":"^2.9.1","readable-stream":"^2.0.5"},"devDependencies":{"standard":"^5.4.1","tape":"^4.4.0"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"426fdf31ea2c43cb8ed6d6f798251d8b96b7b319","_id":"utp-native@1.2.3","_shasum":"526c12b724b236fa800cb07dc945148b978b2540","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"526c12b724b236fa800cb07dc945148b978b2540","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.2.3.tgz","integrity":"sha512-CiJ0DavlocXX0/DA82NSoeIA2GjgvZzpxCNUZceXJMkhYfVj5/OCs3nCbVo4Yx2X7pg+u7jnhH3UnThOO+0Xng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHxtwI0AhosoFsCyzZT5m4DQdicF29v8evyLOVrlWcswAiBYlCpXFpH9cic0qpszfdDpyYXpY3K8E2O2iP9yAuf74A=="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/utp-native-1.2.3.tgz_1456514605022_0.1930537698790431"},"directories":{}},"1.3.2":{"name":"utp-native","version":"1.3.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js && prebuild-ci","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.3.3","prebuild":"^5.0.1","readable-stream":"^2.1.2"},"devDependencies":{"prebuild-ci":"^1.0.9","standard":"^7.0.1","tape":"^4.5.1"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"bd41f24ffc2abb65c4d14ff63e5ab8257961f1ce","_id":"utp-native@1.3.2","_shasum":"1826deff21ab5b64443aa01b3a8fd3b4afbb6ea9","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.6.0","_npmUser":{"name":"juliangruber","email":"julian@juliangruber.com"},"dist":{"shasum":"1826deff21ab5b64443aa01b3a8fd3b4afbb6ea9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.3.2.tgz","integrity":"sha512-dLnXk6zmI5unOh+TcszstluZeAOakdXkc39EV1iuCq2pnuNJVKxkGbFsqEEQQe1NkjCs5uDz+lVSHmXX9FD53A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDAbFkrME7Nk2kmpMw8zLSEt1329SJpMXGbqjm+8ae1fAIge0N79+4Yi6td/eNakFjCV7uclhIb+5Kxh1R1w0sRZH0="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/utp-native-1.3.2.tgz_1481284976552_0.007466837530955672"},"directories":{}},"1.5.0":{"name":"utp-native","version":"1.5.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"6744b9ee193c86e999122d5a498f151235bf3eb3","_id":"utp-native@1.5.0","_shasum":"c09d47dd97489325a9ed67c49d54611380bcf3ca","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"c09d47dd97489325a9ed67c49d54611380bcf3ca","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.5.0.tgz","integrity":"sha512-LB7iIktWnnPrMdr0FFtEJ1K7epnGblQfDC4/0fgJBRf+ZhLoZ7rb7cYgu+kR5V5EeajkE13kFy5ODzHqb6dr3Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDdmRZHElCKSjVc0wTKk5sXoRy2TDgixItDsH+9xhGtiAIhALD8r0yEhRE/8QnHHAcKxC6QPIcsqzptxyAkM2F1hb35"}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/utp-native-1.5.0.tgz_1487327262799_0.5108086171094328"},"directories":{}},"1.2.4":{"name":"utp-native","version":"1.2.4","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.3.3","prebuild":"^4.1.2","readable-stream":"^2.1.2"},"devDependencies":{"standard":"^7.0.1","tape":"^4.5.1"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"e8575689237821a439aeaff52381c2473d74ce67","_id":"utp-native@1.2.4","_shasum":"de71a10b08b9220364888931a437b7e70c697014","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"de71a10b08b9220364888931a437b7e70c697014","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.2.4.tgz","integrity":"sha512-+5y50LaNqQ7F0XDyn6nND4Hkg+e07g1En4M5rOhj1dgUAeLLJ0FJF4tjqnJ5WRMYWQzHGlHfDBlfp9JSOmfIqA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCH2+uB73E+tpAKTaluo0GDnHypNgT60RrL3XVy3IHGecCIQDnmDYmNDbPICKfLhuLCYs2m4aMK6k4oiHIu1RFs4jBCA=="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/utp-native-1.2.4.tgz_1462453017865_0.36459019454196095"},"directories":{}},"1.5.1":{"name":"utp-native","version":"1.5.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"0caa33748d342037ab01f96eea61db491ab07d82","_id":"utp-native@1.5.1","_shasum":"f8f782a7b224179563c3b870a996afa2dfe4d30a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"f8f782a7b224179563c3b870a996afa2dfe4d30a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.5.1.tgz","integrity":"sha512-wPHU9emLxhMwGm7luMpc8AONAiYH7eddHX/SYq9PugxR5KiV9hXLomBcL+2JAPLveWAAYltSG/nhHycwuOfLrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjb5bs1OrWCTxCjQQRot8sM1wyHpyBbUvVWaL5krz6SAIgavSt022FCOn2d0D8IXf4EpqjeFs/0LaNlqzzrmqjDfQ="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native-1.5.1.tgz_1496268956606_0.13989955419674516"},"directories":{}},"1.6.0":{"name":"utp-native","version":"1.6.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"5b7f3af68bcfe0a80ace56e7a657c443a0311459","_id":"utp-native@1.6.0","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-RpJRdNyuHIx3EE0a/L3EmgpqMqWVO0Um2DPD+RUflRrq5c0nlatsW0ES/qmtXSJlZr8bN9O5ny6FE/q5vPnY2Q==","shasum":"2fc524b3f48c6617a0c6892dce6126ab907104d3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.6.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHkXQ9bcCAg+msdVcpaMUYd+2hodRB2UwEniwWNisxfTAiEAvKdzZ9TXKqLSwZB5YAEZNHB2pQja2Q7kyWmthCeZ1+w="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native-1.6.0.tgz_1508436574930_0.9193265247158706"},"directories":{}},"1.5.2":{"name":"utp-native","version":"1.5.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"8d14b7d66f96d52eba1ac1f97a76148a4ea67a57","_id":"utp-native@1.5.2","_npmVersion":"5.0.3","_nodeVersion":"8.1.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-EqNZUlvNygH7wANjqGPMGi0PYlJYYhCHgucNqecOawN6LHn1DNKS1736g1zirTeW9X08g3RnwLY5DzlINiN3Jw==","shasum":"d6473686b3fbcc60ac565f8e7846248a245dd9c9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.5.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEAIqJ/QAGLGNQ1eH/c/IgwyD5UP1L2WXr3E2dDN6JpGAiAcsFUPCcE5vWkcv/eMzUpGJNkAm+asYGzdU7MFjQK6hA=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native-1.5.2.tgz_1499436941418_0.5363333593122661"},"directories":{}},"1.6.1":{"name":"utp-native","version":"1.6.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"ad0b39bcc54062a54997f8c7799b80d3c2529df4","_id":"utp-native@1.6.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-jraGP3gXPq8wdJreoP2X42Vke3chMj0d5Hpot0yu1ROEph2tJ0D8DDef4fYna9SBBjULow0/L8LsopYOYZR43g==","shasum":"bdbb8e5d1f267ba6c421344ca5f9faeaf802a571","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.6.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHlJ0VYwp/vtjli/MC672v0oR8hq03nsCfn4O7cBwhd4AiAebqlB/mdU0jKR/xdb0zb2kRE6gOda6K8Zvsple/f73A=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native-1.6.1.tgz_1510608241501_0.6433432654011995"},"directories":{}},"1.7.0":{"name":"utp-native","version":"1.7.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"e253bc063b823f6cca4b3eee7ce9110fef6ee62a","_id":"utp-native@1.7.0","_npmVersion":"5.6.0","_nodeVersion":"9.7.1","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-34NYDBJdTzOk/DwuEgE2vS1krfYihj4BiiZGjgfN2j8CzjhZeumXW63hwi8bneXU8fymUajRQIR4A4opXzEGWg==","shasum":"08bca3f278e56db440aadab692b931708b820105","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.7.0.tgz","fileCount":119,"unpackedSize":10902142,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEBSmq4VOPYxP/hMiTezk47Hg/iQOKYarlyi5iYqR/IMAiEA/dMbHMtaKlz3zHkBFtlVzhxQ4CQH+XuS6iJQUK2YN3M="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_1.7.0_1521148042187_0.7382092471714019"},"_hasShrinkwrap":false},"1.5.3":{"name":"utp-native","version":"1.5.3","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"718dac0a4fb7ee2b5bdcb92638c5c61308806af9","_id":"utp-native@1.5.3","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-oKZ3v36g8nJQKgZ2spXVdbYRzLrByuRgco0c2hdQvcEurbF++e/PQnZk3NcZ1hffwcH9vGYi9qyRwwhiZ2z/KA==","shasum":"3d2c9f7bb03dfb97ac5b3307140ad43028c949bd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.5.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7DfpBWzT/IkGdXwuO4BRSwl00KPfIdrXQOkW4thiVHgIhAPY1CwXGIU/PtcHVT4gPmn6eYH+CPB6whsq3XfZ4L6tu"}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native-1.5.3.tgz_1500824094325_0.5817510697524995"},"directories":{}},"1.6.2":{"name":"utp-native","version":"1.6.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"9639b375d98686c46c9f173b69da138c112454f9","_id":"utp-native@1.6.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-z724NhTLcRQeBBM0W9npDpwCZvsj2veD3/NKFjKfdS5AlTr4EQRIzl85JupKNAc1PjlhjOWIzObvJrQq3FjLqg==","shasum":"ab3c58fd6bd5522ef2d85aabd3924166942b634d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.6.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDr1XLDSiZcEGxM8E+KmqMwbllT9uey1VCH+vjhKT1KNAIgHYbVah38D1EaDcW4A50Zqr/ZT3XMYQqSDvEtR1eebpE="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native-1.6.2.tgz_1510834841591_0.6443322647828609"},"directories":{}},"1.7.1":{"name":"utp-native","version":"1.7.1","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"2f7e1560f78ef5b13a65ff317d6945074b5d7cc8","_id":"utp-native@1.7.1","_npmVersion":"5.6.0","_nodeVersion":"9.11.1","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-FSs76hQZsSsdI4YeePxb5SQoWmHxDRznImGiAN905O1svyHvcoQ3hYptu3Y9hPxRHeB3lHzJR5KRZy0Byj7qqg==","shasum":"c8db1e95f97988811241e608918b9da7aec7f849","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.7.1.tgz","fileCount":124,"unpackedSize":11682437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4GFeCRA9TVsSAnZWagAAh0cP/1cmOika2zBJUzVPyYJu\nnJ2AjJmdGyBtAWN4c58IN19eqlBRJdYOI/p1b76HpTHpTkTiiApJPfstGwa0\n4Ell1KraXa3UTg0YxZri0PsPcoGAQY4SJoflZCFnYQft8ImZOOkYSu2dCFa7\nOjYJfmfXUvKQYqPRBw431c5v9OMGcQrBX0SHbzbNoi/q+pWyo7ebuJtPkoV9\nQf06ujF+oNTlkuqX52XlHLnwp51nmzo7ImUsxf74neDLHXU62Gj18TK5j9kq\n55J879msQ6MMaDgHQvE5SbTe8lM303CqS+g6Sp4bSLtgdGbpk1G90NaUUPZD\nPtifPu4/KcgpeHPANWOfPsECxot3jEm5IZgliLmT0Hr4stpjnxS7d84SUS92\nkuauX2lT63gAiPhdLXSI0KAvQLEnw8tealIjYuvDa9bQJPclKGY/O3cM/Ig5\nac/PYjgJL4u/maxpGb08eikI8sViXDOak/f8y4hJ0cVAiVQZvtOys16eiqmL\nTbuZimuM7/5sE7hGjYKhamqKM08omOlm/9E2gbO8o9XEDxxVua83jSEIYzU5\nEbsgj6N6tXO5d9XUNlh+YYAaRPElqRzVv21EgJw9nR5AsRJGdllwBrE0TFaa\ny2ZEcMDGc+EMW5nUG+TAjL7QTYF6xYkuVYXHrij+R5uml/xDMX7CJaOM8iVs\nom3D\r\n=u4Rn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAFv36Dy37emd9bK/4OgeWOAm8/4YcZq2zIfxexOXHD8AiEAyjRHb8LPpDnsah4uNBxfDmP2TvvXs0qn80cgnvGbBPA="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_1.7.1_1524654428515_0.8772204795471057"},"_hasShrinkwrap":false},"1.5.4":{"name":"utp-native","version":"1.5.4","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"7d43096c1866081486a071c4f5c52a50e5cee385","_id":"utp-native@1.5.4","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-cOzS0kJlMC9LScG9Rl0W6j4y8DimC1ZQQniNwJuUKwnCwuBG3jj3tTYjudTCmEGZoGnYrRTf8MZ0IrTL4hls2w==","shasum":"09ffaa2b0c1993a72a06734fcd3d8c826a7aa8ee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.5.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPA8gqWBlGTbLU69NyF9a/x/1IR3g+X9XIw5LwiVQT2gIgD6gb5oGBndhyQ6ixQppGK83ZlsxvmS6OtZZ0pwGF5Vw="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native-1.5.4.tgz_1500826213300_0.26819250104017556"},"directories":{}},"1.7.2":{"name":"utp-native","version":"1.7.2","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"309384bf18d1ca95b1c4467679d7fbf309466b93","_id":"utp-native@1.7.2","_npmVersion":"6.1.0","_nodeVersion":"10.6.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-jxNZIa49OXRCFbbqlp0SWsTCasvD9QjumUW85++KMaT21PKMDn6dLl2GsSsf1OsWRI8yKdzXg1OxhNsifPjyEA==","shasum":"bdacdea4f876ee974f040c0a596ea851e52b3a55","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.7.2.tgz","fileCount":125,"unpackedSize":11683179,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPmnLCRA9TVsSAnZWagAAH7MP/0YjgSciImYHI1ah7geB\nBAHm5CW1dDObQqW+K86QqqPVDRbIsESR3eKIpahY1rSS0b95Q1S6f+pPLU/o\n18lIvSaqyw2UE8+PhCl067Q4ZnsPQ5/jOa7V5v7OcCqu35vylfbjhIPc6YB4\n7twmSYzDvJJ9Q6tEA1GsX3Rvw+8I1LnBIrWycE0PDjWrY1cYUxxpVeXYi9N2\n2IuTLKNt5TXQ9UhmrAD68ZXni2DH41QfA977vtPxf9MC51sUOhgOd6SOEU9Q\nEhceEaz/P5RjTDZ9Nf9w42TXM25BB1wUM058uosvPF2pDiWxx8+9mQ1S44nn\nGSpm/BozX4VZieJy25nRue5JsMXdOJPS/OLsxYe1D85GmABYlSm1qzYZFQtV\n4CAXP2WCECYAq9y6vI/4u83sfvSuCiNFGZ/6HgPfOqvsP0H4XbmT/UcidohE\nKABOmL7dkg1eHWgdhvwQKu8AB67ta6Gtlyra8RYqzHwABH8hbPrW5t7vscGA\nvvUBk86FU4KYWkdhwqqP3HuhWtlkIKRtLrwixMpljk7QCJW86018ez46kqdY\nIbS7bvGnjPcYRMHp1aHtdAZAogcUdf4qOF0D0SrZk/yyUrY0BzxXYjsrRxYa\nLyMLhPAII5OPEz7m3oIQiwBzr9t6wxmErKTeKn5hCUetCvrlvJXkRMEj+RUF\nM1X4\r\n=UavY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFK7s3ohOSgbV2q1wRrlPEfTJaFQRUISBcx4bPDURTsGAiBZLfM0+UL7lbPO9Ie7fZx6eK9vMzlxMu+eJx36IR8Lvw=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_1.7.2_1530816971560_0.8818893551471414"},"_hasShrinkwrap":false},"1.7.3":{"name":"utp-native","version":"1.7.3","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuildify --all --strip","prebuild-ia32":"prebuildify --all --strip --arch=ia32","install":"node-gyp-build"},"bin":{"ucat":"./ucat.js"},"dependencies":{"nan":"^2.5.1","node-gyp-build":"^3.0.0","readable-stream":"^2.2.2"},"devDependencies":{"prebuildify":"^2.2.0","standard":"^8.6.0","tape":"^4.6.3"},"repository":{"type":"git","url":"git+https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"a8dc14015152b3cb74324230b5d0e4139bcf140f","_id":"utp-native@1.7.3","_npmVersion":"6.1.0","_nodeVersion":"10.7.0","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"integrity":"sha512-vRAKaS8WcYNgzbxyH2LdheqgL4sQLis8LXl7r/mN+O4mpWlUpoCsTtietxepLrft2q0TFA2gaIvSWN1iRkzW/w==","shasum":"c829724995bfcd9dfb3027389e5c0bf8ddaa0bf2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.7.3.tgz","fileCount":125,"unpackedSize":11153648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbjh+CRA9TVsSAnZWagAALJ0P/Rg0/LP3a8QPi6I6bUtW\n6uwrdkn1RVZGy3CLktdNyCc8CqD1XREyGGiFxFTnvPsbVsP01X/1P1Bm4lh7\nOBz102SHcK+XRVFG/IIHKEzI7NTEx8kMI+X7nCYAHPbY7fSvqh7/L3gWoc8S\n6RkZixmC8C3hx48A5cTWeFOarSCR4jHO74x3l0XmGBkAxx98uPQo6PKymgHA\nR+ce2TdkNzUNglVKWp0l9Lj42O2G22MbQgc4XX8IRwoo2QPzxpCQbicD2lo2\nSlZGeaj3zSxk2BN81GP19+uAouNkv56sgTLy5gt95rBnk7I04XAT1+EyxmhU\n05nxPXonbeCgOyChv/wFkRAYklgoL1vpmrgqbuhC1MFaCsT6n6PJr54rGS9M\n70pnT/621v8Ve7Zg3jlU780u9V5NUYb2VXcU9SQwFlYEVqAOaqi3oAmKyvSu\nt2XP//WOHiG98yjXVJMGNhZzZj47eQZR+/pB6die6moLAGAxkWZg4rnr+/7r\n1l8vcol89idXzs64Bo47BpHTVFPrIfPyrmTzRrAkoecnVTGUzjO00SxFTjmm\n7wYdzU+T/VJBL7p3dquYZf1/U/zbhlGFWQyTaZQsb/0xjC1in6XEfnmWPdVB\nxb2J8VQ3kUlVZwB1/tl332IRkbRkc4SPcVQwfEJPYcvH/gv/uGI20OQGmqRN\nHPqC\r\n=X3tE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICqZSQmozfyeewpFP2XdDIN1BIoONY7TDUHWZ3pxPZ5KAiBVPFVOb2amq+k1k2rPjC08+vbrXu4K0mHX6EuWiCtZzA=="}]},"maintainers":[{"name":"juliangruber","email":"julian@juliangruber.com"},{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/utp-native_1.7.3_1533950077923_0.8080063345025363"},"_hasShrinkwrap":false},"1.0.0":{"name":"utp-native","version":"1.0.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"dependencies":{"bindings":"^1.2.1","nan":"^2.2.0","prebuild":"^2.9.1","readable-stream":"^2.0.5"},"devDependencies":{"standard":"^5.4.1","tape":"^4.4.0"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"f03e53e0072e795cb6684f5044ec94eb8e8b4fc2","_id":"utp-native@1.0.0","_shasum":"8da865afa9a18f4b085e2f2aa01fdd49f908df1b","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"8da865afa9a18f4b085e2f2aa01fdd49f908df1b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.0.0.tgz","integrity":"sha512-RazDShN+SoQN+GbjruEkmKthaijB540kKRM6rxd0byjXEfW9zgEVUBnH+9lXGPByfEr7SEsYxs//6iQHnruaOQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAXO7GG7bEgOLxdCfUqzZSD2IbNooG3ypStMUK5O+T37AiArxW7w/uu4DMOqJ/pCLq/NOSLn73dGDbxZdepQtQoNWw=="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/utp-native-1.0.0.tgz_1454880205786_0.4683646142948419"},"directories":{}},"1.1.0":{"name":"utp-native","version":"1.1.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.2.0","prebuild":"^2.9.1","readable-stream":"^2.0.5"},"devDependencies":{"standard":"^5.4.1","tape":"^4.4.0"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"4d9ea5490737ce5d943bf6ae5e34d690d2f208c4","_id":"utp-native@1.1.0","_shasum":"454b361adc8bea1ee233ab989a3abd035ccdef78","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"454b361adc8bea1ee233ab989a3abd035ccdef78","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.1.0.tgz","integrity":"sha512-9ByBhUfgCLVz0aOqDWLGV1bgQ3BVaTcr5JzBEcYMmQYgEf7avB4Cz8jgmhGifbutzaKjYsm5ilwHaZRsyOx5Eg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDmjs5EKm1gSbxZH2C6JjUH3dFc3ZIwI5uLWQKosIEcuAIgSZz8JNvv6e1Ch/Q3HXaBDoAePyw+jg/wdwjGXm2YyuE="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/utp-native-1.1.0.tgz_1454881154840_0.13393065775744617"},"directories":{}},"1.2.0":{"name":"utp-native","version":"1.2.0","description":"Native bindings for libutp","main":"index.js","gypfile":true,"scripts":{"test-timeouts":"tape test/timeouts.js","test":"standard && tape test/socket-api.js test/net-api.js","prebuild":"prebuild --all --strip --verbose","install":"prebuild --install"},"bin":{"ucat":"./ucat.js"},"dependencies":{"bindings":"^1.2.1","nan":"^2.2.0","prebuild":"^2.9.1","readable-stream":"^2.0.5"},"devDependencies":{"standard":"^5.4.1","tape":"^4.4.0"},"repository":{"type":"git","url":"https://github.com/mafintosh/utp-native.git"},"author":{"name":"Mathias Buus","url":"@mafintosh"},"license":"MIT","bugs":{"url":"https://github.com/mafintosh/utp-native/issues"},"homepage":"https://github.com/mafintosh/utp-native","gitHead":"931d27d146c2a6a18a973e47ba1718b73549d337","_id":"utp-native@1.2.0","_shasum":"60d65b20f323217dbca4e1e54038544a8d40f36f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"mafintosh","email":"mathiasbuus@gmail.com"},"dist":{"shasum":"60d65b20f323217dbca4e1e54038544a8d40f36f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/utp-native/-/utp-native-1.2.0.tgz","integrity":"sha512-hecDvq3w9JcCQrTxVJH6SUOBK+sW6wKDYoa2XvtFMHiZwP5TiIgu9HrBo+H6PZNjoHHM72u5yPx5yfjRfQueSA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICCYUi2MIn7Pu4Yuby+eV7ZYeQysZNL3+Bh1vG/ASaRyAiEA1AA25VEoz1I3buk0LHfbXIkG2Hx2xEY/Y6iQ8t8Wjy8="}]},"maintainers":[{"name":"mafintosh","email":"mathiasbuus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/utp-native-1.2.0.tgz_1455465621060_0.6219122800976038"},"directories":{}}},"name":"utp-native","time":{"0.0.0":"2015-04-15T19:09:11.575Z","0.0.1":"2016-01-22T03:57:25.248Z","modified":"2025-05-13T10:34:18.449Z","2.1.0":"2018-10-11T17:52:49.496Z","created":"2015-04-15T19:09:11.575Z","2.1.7":"2020-01-29T13:15:32.204Z","2.5.3":"2021-07-01T11:58:40.892Z","2.1.8":"2020-04-28T08:47:34.877Z","2.1.5":"2019-11-18T19:26:31.985Z","2.5.1":"2021-06-18T07:20:11.080Z","2.1.6":"2020-01-09T15:54:01.220Z","2.5.2":"2021-06-30T08:16:02.049Z","2.1.3":"2018-11-12T13:53:47.403Z","2.1.4":"2019-07-10T20:09:23.370Z","2.5.0":"2021-05-27T11:12:03.729Z","2.1.1":"2018-11-09T08:12:57.843Z","2.1.2":"2018-11-12T12:16:36.660Z","2.3.0":"2021-01-28T14:16:52.102Z","1.3.0":"2016-06-19T10:00:34.052Z","1.3.1":"2016-08-21T22:15:08.127Z","1.3.2":"2016-12-09T12:02:57.234Z","1.5.0":"2017-02-17T10:27:43.715Z","1.5.1":"2017-05-31T22:15:58.719Z","1.5.2":"2017-07-07T14:15:43.636Z","1.7.0":"2018-03-15T21:07:22.475Z","1.5.3":"2017-07-23T15:34:56.280Z","1.7.1":"2018-04-25T11:07:08.917Z","1.5.4":"2017-07-23T16:10:15.384Z","1.7.2":"2018-07-05T18:56:11.869Z","1.7.3":"2018-08-11T01:14:38.208Z","1.1.0":"2016-02-07T21:39:17.646Z","2.1.10":"2020-04-29T11:07:08.749Z","2.1.9":"2020-04-29T10:39:12.093Z","2.0.0":"2018-09-03T14:30:59.094Z","2.0.1":"2018-09-03T21:34:26.090Z","2.2.2":"2020-12-01T17:55:57.422Z","2.4.0":"2021-03-31T07:09:19.507Z","2.2.3":"2021-01-27T14:08:35.382Z","2.2.0":"2020-06-25T11:23:59.345Z","2.2.1":"2020-07-02T10:32:05.498Z","1.2.1":"2016-02-14T22:07:22.808Z","1.2.2":"2016-02-21T20:24:20.501Z","1.4.0":"2017-02-05T20:17:32.656Z","1.2.3":"2016-02-26T19:23:26.013Z","1.2.4":"2016-05-05T12:57:00.724Z","1.6.0":"2017-10-19T18:09:37.922Z","1.6.1":"2017-11-13T21:24:03.986Z","1.6.2":"2017-11-16T12:20:41.797Z","1.0.0":"2016-02-07T21:23:28.406Z","1.2.0":"2016-02-14T16:00:24.980Z"},"readmeFilename":"README.md","homepage":"https://github.com/mafintosh/utp-native#readme"}