{"maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"dist-tags":{"latest":"4.14.2"},"description":"Listen to USB devices and detect changes on them.","readme":"# 🛑🛑 Deprecated 🛑🛑\n\nThis library is now deprecated. We recommend using [`usb`](https://github.com/node-usb/node-usb#migrating-from-node-usb-detection) for hotplug detection instead. It supports a wider range of platforms, using a more proven codebase. \n\nFor help migrating, refer to the [documentation for `usb`](https://github.com/node-usb/node-usb#migrating-from-node-usb-detection)\n\n---\n\n[![npm version](https://badge.fury.io/js/usb-detection.svg)](http://badge.fury.io/js/usb-detection) [![Gitter](https://badges.gitter.im/MadLittleMods/node-usb-detection.svg)](https://gitter.im/MadLittleMods/node-usb-detection?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)\n\n\n# usb-detection\n\n`usb-detection` allows you to listen for insert/remove events of USB devices on your system.\n\n\n### [Changelog](https://github.com/MadLittleMods/node-usb-detection/blob/master/CHANGELOG.md)\n\n\n# Install\n\n```sh\nnpm install usb-detection\n```\n\n## Install for Electron\n\nThis module uses native extensions and needs to be compiled for your target version of Electron. Precompiled binaries for recent Node.js and Electron versions are built and published using [prebuild][] and can be installed automatically using [electron-rebuild][].\n\nSee the [Electron docs for using native modules][electron-native-modules] to ensure your project is set up to correctly use the prebuilt binaries for your version of Electron.\n\n[prebuild]: https://github.com/prebuild/prebuild\n[electron-rebuild]: https://github.com/electron/electron-rebuild\n[electron-native-modules]: https://www.electronjs.org/docs/tutorial/using-native-node-modules\n\n---\n\nIf you run into the following error, here are the exact steps you can use:\n\n```\ndetection.node was compiled against a different Node.js version using NODE_MODULE_VERSION 72. This version of Node.js requires NODE_MODULE_VERSION 80. Please try re-compiling or re-installing\n```\n\n 1. `npm i electron-rebuild --save-dev`\n 1. `./node_modules/.bin/electron-rebuild`\n\n\n# Usage\n\n```js\nvar usbDetect = require('usb-detection');\n\nusbDetect.startMonitoring();\n\n// Detect add/insert\nusbDetect.on('add', function(device) { console.log('add', device); });\nusbDetect.on('add:vid', function(device) { console.log('add', device); });\nusbDetect.on('add:vid:pid', function(device) { console.log('add', device); });\n\n// Detect remove\nusbDetect.on('remove', function(device) { console.log('remove', device); });\nusbDetect.on('remove:vid', function(device) { console.log('remove', device); });\nusbDetect.on('remove:vid:pid', function(device) { console.log('remove', device); });\n\n// Detect add or remove (change)\nusbDetect.on('change', function(device) { console.log('change', device); });\nusbDetect.on('change:vid', function(device) { console.log('change', device); });\nusbDetect.on('change:vid:pid', function(device) { console.log('change', device); });\n\n// Get a list of USB devices on your system, optionally filtered by `vid` or `pid`\nusbDetect.find(function(err, devices) { console.log('find', devices, err); });\nusbDetect.find(vid, function(err, devices) { console.log('find', devices, err); });\nusbDetect.find(vid, pid, function(err, devices) { console.log('find', devices, err); });\n// Promise version of `find`:\nusbDetect.find().then(function(devices) { console.log(devices); }).catch(function(err) { console.log(err); });\n\n// Allow the process to exit\n//usbDetect.stopMonitoring()\n```\n\n\n# API\n\n## `usbDetect.startMonitoring()`\n\nStart listening for USB add/remove/change events. This will cause the Node.js process to stay open until you call `usbDetect.stopMonitoring()` (see below).\n\n\n## `usbDetect.stopMonitoring()`\n\nStop listening for USB add/remove/change events. This will also allow the Node.js process to exit.\n\nThis is really only meant to be called once on exit. No guarantees if you start/stop monitoring multiple times, see https://github.com/MadLittleMods/node-usb-detection/issues/53\n\n\n## `usbDetect.on(eventName, callback)`\n\n - `eventName`\n    - `add`: also aliased as `insert`\n       - `add:vid`\n       - `add:vid:pid`\n    - `remove`\n       - `remove:vid`\n       - `remove:vid:pid`\n    - `change`\n       - `change:vid`\n       - `change:vid:pid`\n - `callback`: Function that is called whenever the event occurs\n    - Takes a `device`\n\n\n```js\nvar usbDetect = require('usb-detection');\nusbDetect.startMonitoring();\n\nusbDetect.on('add', function(device) {\n\tconsole.log(device);\n});\n\n/* Console output:\n{\n\tlocationId: 0,\n\tvendorId: 5824,\n\tproductId: 1155,\n\tdeviceName: 'Teensy USB Serial (COM3)',\n\tmanufacturer: 'PJRC.COM, LLC.',\n\tserialNumber: '',\n\tdeviceAddress: 11\n}\n*/\n```\n\n\n## `usbDetect.find(vid, pid, callback)`\n\n**Note:** All `find` calls return a promise even with the node-style callback flavors.\n\n - `find()`\n - `find(vid)`\n - `find(vid, pid)`\n - `find(callback)`\n - `find(vid, callback)`\n - `find(vid, pid, callback)`\n\nParameters:\n\n - `vid`: restrict search to a certain vendor id\n - `pid`: restrict search to s certain product id\n - `callback`: Function that is called whenever the event occurs\n    - Takes a `err` and `devices` parameter.\n\n\n```js\nvar usbDetect = require('usb-detection');\nusbDetect.startMonitoring();\n\nusbDetect.find(function(err, devices) {\n\tconsole.log(devices, err);\n});\n// Equivalent to:\n//\t\tusbDetect.find().then(function(devices) { console.log(devices); }).catch(function(err) { console.log(err); });\n\n/* Console output:\n[\n\t{\n\t\tlocationId: 0,\n\t\tvendorId: 0,\n\t\tproductId: 0,\n\t\tdeviceName: 'USB Root Hub',\n\t\tmanufacturer: '(Standard USB Host Controller)',\n\t\tserialNumber: '',\n\t\tdeviceAddress: 2\n\t},\n\t{\n\t\tlocationId: 0,\n\t\tvendorId: 5824,\n\t\tproductId: 1155,\n\t\tdeviceName: 'Teensy USB Serial (COM3)',\n\t\tmanufacturer: 'PJRC.COM, LLC.',\n\t\tserialNumber: '',\n\t\tdeviceAddress: 11\n\t}\n]\n*/\n```\n\n\n\n\n# FAQ\n\n### The script/process is not exiting/quiting\n\n```js\nvar usbDetect = require('usb-detection');\n\n// Do some detection\nusbDetect.startMonitoring();\n\n// After this call, the process will be able to quit\nusbDetect.stopMonitoring();\n```\n\n### `usbDetect.find()` always returns the same list of devices, even after removal.\n\nMake sure you call `usbDetect.startMonitoring()` before any calls to `usbDetect.find()`.\n\n\n### `npm run rebuild` -> `The system cannot find the path specified.`\n\nIf you are running into the `The system cannot find the path specified.` error when running `npm run rebuild`,\nmake sure you have Python installed and on your PATH.\n\nYou can verify `node-gyp` is configured correctly by looking at the output of `node-gyp configure --verbose`.\n\n\n### To build a debug version with error outputs use:\n\n```sh\n$ npm run rebuild --debug\n```\n\n\n# Development (compile from source)\n\nThis assumes you also have everything on your system necessary to compile ANY native module for Node.js using [node-gyp](https://github.com/nodejs/node-gyp). This may not be the case, though, so please ensure the following requirements are satisfied before filing an issue about \"does not install\".\n\nIf you are developing locally, you should use [Node.js v14](https://nodejs.org), but if you are just trying to install usb-detection, you should be able to compile from source using any supported version of Node.\n\n### Windows\n\nSee [node-gyp's Windows installation instructions](https://github.com/nodejs/node-gyp#on-windows).\n\n### macOS\n\nSee [node-gyp's macOS installation instructions](https://github.com/nodejs/node-gyp#on-windows).\n\n### Linux\n\nYou know what you need for you system, basically your appropriate analog of build-essential. Keep rocking! See [node-gyp's Unix installation instructions](https://github.com/nodejs/node-gyp#on-unix) for more details.\n\n```sh\nsudo apt-get install build-essential\n```\n\nYou will also need to install `libudev-dev`.\n\n```sh\nsudo apt-get install libudev-dev\n```\n\n# Testing\n\nWe have a suite of Mocha/Chai tests.\n\nThe tests require some manual interaction of plugging/unplugging a USB device. Follow the cyan background text instructions.\n\n```sh\nnpm test\n```\n","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"users":{"mlm":true,"irae":true,"adrai":true,"hanhdt":true,"wgerven":true,"goliatone":true,"afelicioni":true},"bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"license":"MIT","versions":{"1.0.0":{"name":"usb-detection","version":"1.0.0","keywords":["usb","list","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/KABA-CCEAC/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.0.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/KABA-CCEAC/node-usb-detection","bugs":{"url":"https://github.com/KABA-CCEAC/node-usb-detection/issues"},"dist":{"shasum":"bdc80cdf8841227f13de360c47fb56ef65773427","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.0.0.tgz","integrity":"sha512-WQU+XohUe0WT7eaRlNRKLpcksydKl3YT8JKad7S9GV34eSWuWN2F9t6zvxZuBtWawvzX7uZbYanujQnbYi6pbA==","signatures":[{"sig":"MEYCIQCwVNbeLMC2hsnNPJd/ttK4r+wMEbD8Bs7Zxw3MgEOOzQIhALQ5zM9lu8TQYpdl/6apSnOor2jX8ZgmLWTHE1gbSxE7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"adriano@raiano.ch"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/KABA-CCEAC/node-usb-detection.git","type":"git"},"_npmVersion":"1.2.25","description":"List USB devices in system and detect changes on them.","directories":{},"dependencies":{"bindings":"1.1.0","eventemitter2":">=0.4.11"}},"1.0.1":{"name":"usb-detection","version":"1.0.1","keywords":["usb","list","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/KABA-CCEAC/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.0.1","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/KABA-CCEAC/node-usb-detection","bugs":{"url":"https://github.com/KABA-CCEAC/node-usb-detection/issues"},"dist":{"shasum":"1519a7c8ea323dd8cf31b092300347e234d7eb3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.0.1.tgz","integrity":"sha512-Qz0zeQwF9DivXynWW2BOi+aoyQB18i2LOeYc/gL2dIlJglGvAzac1faooD3f2aeUfHiKOzXQLVjaegHZ7AjObw==","signatures":[{"sig":"MEYCIQCDLJ9kQ7379V4kAEv+ufLGaIzn9luoIGBEEXfJgKc5AAIhAKcc2Lbzoy+M57gZorjy4+uWc8eg5C01KrwklSJZ9bUU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","gypfile":true,"scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"adriano@raiano.ch"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/KABA-CCEAC/node-usb-detection.git","type":"git"},"_npmVersion":"1.3.4","description":"List USB devices in system and detect changes on them.","directories":{},"dependencies":{"bindings":"1.1.0","eventemitter2":">=0.4.11"}},"1.0.2":{"name":"usb-detection","version":"1.0.2","keywords":["usb","list","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/KABA-CCEAC/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.0.2","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/KABA-CCEAC/node-usb-detection","bugs":{"url":"https://github.com/KABA-CCEAC/node-usb-detection/issues"},"dist":{"shasum":"ea5f622c764d9ed9ea7afe0fc7e87f213af7f503","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.0.2.tgz","integrity":"sha512-C28Jf/UjylMiTpqYrYxTyZDIaVDn4z+VzeGhPAJQAfz5mzgAbSU3DtVszRKxNj2P5CFfGSvqqDkMClMALoIwPQ==","signatures":[{"sig":"MEUCIQDRly5kXIvTtphf8go44BUc+X3Tb2Q3w58EfpJ1uOe9mwIgYPVjGNiAKAZmxvGa44o4zbk7z8KhOGi7AsggPORkC1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","gypfile":true,"scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"adriano@raiano.ch"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/KABA-CCEAC/node-usb-detection.git","type":"git"},"_npmVersion":"1.3.2","description":"List USB devices in system and detect changes on them.","directories":{},"dependencies":{"bindings":"1.1.0","eventemitter2":">=0.4.11"}},"1.0.3":{"name":"usb-detection","version":"1.0.3","keywords":["usb","list","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/KABA-CCEAC/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.0.3","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/KABA-CCEAC/node-usb-detection","bugs":{"url":"https://github.com/KABA-CCEAC/node-usb-detection/issues"},"dist":{"shasum":"828cde1767dd5609a5ca9263ac1bfe7cc831cd1b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.0.3.tgz","integrity":"sha512-vUFrJ4C7f/CjaLLPEJDF4iL5q7/XM8/+BcUFGNt3jS73aTEH0Kd1peIyn9IYKS73U92QgscZiVpUZwUPVImKSg==","signatures":[{"sig":"MEUCIQCFxUyi62fTazaPj31L+B/S97mHwNhoTeXIkmWoALIK4AIgdH9tHIwbjbhvFSs8mUpepPe8tW5KNFXx9qEw1xZE2IQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","gypfile":true,"scripts":{"test":"echo \"Error: no test specified\" && exit 1","preinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"adriano@raiano.ch"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/KABA-CCEAC/node-usb-detection.git","type":"git"},"_npmVersion":"1.3.8","description":"List USB devices in system and detect changes on them.","directories":{},"dependencies":{"bindings":"1.1.0","eventemitter2":">=0.4.11"}},"1.1.0":{"name":"usb-detection","version":"1.1.0","keywords":["usb","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/KABA-CCEAC/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.1.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/KABA-CCEAC/node-usb-detection","bugs":{"url":"https://github.com/KABA-CCEAC/node-usb-detection/issues"},"dist":{"shasum":"1beb8b1db70dc3f092a24c8abc21d4834476b088","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.1.0.tgz","integrity":"sha512-5orVvm35k3oQNrPzjbelEE0s4y88AebT2nayOiTMIcny/DvEJl8q4gH6t7aRkmuadBbsOkQlpPM7D+LipWepyQ==","signatures":[{"sig":"MEYCIQDAZn4YK+GcBiXd7dTBegiVstieGPislSeZFI5RV779OQIhAN5VWp6z/Q5S08z6T5DcN+dUjiqc+RYLEB1hux8oVie+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1beb8b1db70dc3f092a24c8abc21d4834476b088","gitHead":"a9e6f004ddfef2cef4574988bec53c44992585b2","gypfile":true,"scripts":{"test":"echo \"Error: no test specified\" && exit 1","install":"node-gyp rebuild","postinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"adriano@raiano.ch"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/KABA-CCEAC/node-usb-detection.git","type":"git"},"_npmVersion":"2.10.1","description":"List USB devices in system and detect changes on them.","directories":{},"_nodeVersion":"0.12.4","dependencies":{"nan":"^1.8.4","bindings":"1.1.0","eventemitter2":">=0.4.11"}},"1.2.0":{"name":"usb-detection","version":"1.2.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.2.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"1a27c151cbc46e389d4ecd7b8d0d351194eb9a2e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.2.0.tgz","integrity":"sha512-EJLL0CiCqeG0hOSVoIrLJT/EQRXu3spnwFmXK5j0t9fK6bnEqiQG9wL0H241vw4Z/swzr4jxAlQvBwiuGh//Jg==","signatures":[{"sig":"MEUCIH/NzrCxjyD4ZRuhlCF8jRmDJOe65sZY2G++2Ng8Ylg7AiEA1GK8IZQs0bIHUfsdvcy9Sfd/xWOrYMN2AodlI50e+tk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1a27c151cbc46e389d4ecd7b8d0d351194eb9a2e","gitHead":"4048b19279d32a78b83ad3237beaefd7854408bb","gypfile":true,"scripts":{"test":"mocha --timeout 10000","install":"node-gyp rebuild","postinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"2.11.3","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"2.3.3","dependencies":{"nan":"^1.8.4","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","mocha":"^2.2.5","chai-as-promised":"^5.1.0"}},"1.3.0":{"name":"usb-detection","version":"1.3.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.3.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"d1499d078b813657c8974492fdb70b9c86f99a22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.3.0.tgz","integrity":"sha512-M1anEQvcshjIST4Ec/lEO7nm6tybIdEd0QyF7MAAYWoC4tnhXiVMEofYJEK+5D5j5C6l9al4JbpB7plO7Zq1DA==","signatures":[{"sig":"MEUCIDrEDvcC7fCMIKThBV4vOWArDstCOE+4MF669uFjpwN8AiEAwEZSUasFWcO0aPJnkOT3Sj6ZzEAelabhkFkwMO52BSs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d1499d078b813657c8974492fdb70b9c86f99a22","gitHead":"19937e23006474ae987b7451d543aa71150c71e0","gypfile":true,"scripts":{"test":"mocha --timeout 10000","install":"node-gyp rebuild","postinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"3.3.6","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"4.1.2","dependencies":{"nan":"^2.0.9","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","mocha":"^2.2.5","chai-as-promised":"^5.1.0"}},"1.4.0":{"name":"usb-detection","version":"1.4.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.4.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"de948e039684264fa1d0929882c1bb34677c2dbb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.4.0.tgz","integrity":"sha512-9/C5TVunn+u44x1Ke2YrbrVQW3su58Yb1MRhqu4q9ZC4yEnxX6Zm6GV1ArHEWf7PlqALYbWcdXUEvXuMMsRS9Q==","signatures":[{"sig":"MEUCIQDU6YFRBYW0JJ261mLL56hXugHHg1NhBvOpnuoOdTVKQgIgPl7jzqoF7NF3Woe1FbgZAiWsmLxDLMN7P/HzbPkw7AY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"de948e039684264fa1d0929882c1bb34677c2dbb","gitHead":"b14b9965c7e2ef033582a75f180f8dc08cf1ca19","gypfile":true,"scripts":{"test":"mocha --timeout 10000","install":"node-gyp rebuild","postinstall":"node-gyp rebuild"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"2.14.7","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"nan":"^2.2.0","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","mocha":"^2.2.5","chai-as-promised":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection-1.4.0.tgz_1458522297931_0.3595908833667636","host":"packages-13-west.internal.npmjs.com"}},"1.4.1":{"name":"usb-detection","version":"1.4.1","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.4.1","maintainers":[{"name":"anonymous","email":"contact@ericeastwood.com"},{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"c4dc386c92fc60c3567ec11b64cfbcc0b40f44ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.4.1.tgz","integrity":"sha512-YhzCjDT7kAK6oJHvGobLDvXy+Lc34I4I8Ib7NbmRYv8o6ujLjLxVQkTFb4HaVmWpALD7Wd+SYweDmAmUgc2WpQ==","signatures":[{"sig":"MEQCIHYIdLy6aitp1QYou9hfddV2GcjOBytZdjyiwfjzRK6tAiAFO1engCRCdhKceOlC6q/q/JmwrxxRFVis18xIwP3wyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c4dc386c92fc60c3567ec11b64cfbcc0b40f44ed","gitHead":"136e824f4757689f468ff04298731376d38e2aac","gypfile":true,"scripts":{"test":"mocha --timeout 10000","install":"prebuild-install || node-gyp rebuild","prebuild":"prebuild --all --strip --verbose"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"3.10.3","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"6.3.1","dependencies":{"nan":"^2.2.0","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11","prebuild-install":"^2.3.0"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","mocha":"^2.2.5","prebuild":"^6.2.2","chai-as-promised":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection-1.4.1.tgz_1510444839741_0.33901202329434454","host":"s3://npm-registry-packages"}},"1.4.2":{"name":"usb-detection","version":"1.4.2","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@1.4.2","maintainers":[{"name":"anonymous","email":"contact@ericeastwood.com"},{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"5f643b8553732dc7bec1880c664966516801dbbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-1.4.2.tgz","integrity":"sha512-WWnB9HAF3Bs9g1WA5RsR4984zU/Aif0fuD3m5ZHXKnDpZv5zdNzKYYlj5fHblWd5UH/vKqXuOSwgMD23fLqHpA==","signatures":[{"sig":"MEQCID/bo1fnba82LUZGYOQL76x0XDAxOLP1hLnE2GIPtYjmAiB3htDAhXzJmCKuYYa4JwvalfXKCawtd3OoF9Gi7716CA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5f643b8553732dc7bec1880c664966516801dbbd","gitHead":"3bfb3ebb77dc79b0f37dd10aadadaf6a4d547826","gypfile":true,"scripts":{"test":"mocha --timeout 10000","install":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"3.10.3","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"6.3.1","dependencies":{"nan":"^2.2.0","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11","prebuild-install":"^2.3.0"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","mocha":"^2.2.5","prebuild":"^6.2.2","chai-as-promised":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection-1.4.2.tgz_1510465475030_0.1585047550033778","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"usb-detection","version":"2.0.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@2.0.0","maintainers":[{"name":"anonymous","email":"contact@ericeastwood.com"},{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"6b726ee8ab280c97de258a1bdbdeaf0f04a8c209","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-2.0.0.tgz","integrity":"sha512-uaNi6s8vq13Erwpis5X9U4PzGODr7BHjcWgU9l0aUI2laajK7+iyGlKdcuQxW5Xt0x86dZL8jXEXcVhku5gD4g==","signatures":[{"sig":"MEUCIEDm9FLhPDAReJBTal4JMEBZARyPSF3aAfBF1j/lEKsnAiEAuoT7ecily+B5cSrNwUKIgyu0gNNsvNkVYIyexVABSao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6b726ee8ab280c97de258a1bdbdeaf0f04a8c209","gitHead":"aec8d9c54a378224e9a18517e18a6aa6ad18865b","gypfile":true,"scripts":{"test":"mocha --timeout 10000","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"3.10.3","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"6.3.1","dependencies":{"nan":"^2.2.0","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11","prebuild-install":"^2.3.0"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","mocha":"^2.2.5","prebuild":"^6.2.2","chai-as-promised":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection-2.0.0.tgz_1513676818319_0.14991748612374067","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"usb-detection","version":"2.0.1","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@2.0.1","maintainers":[{"name":"anonymous","email":"contact@ericeastwood.com"},{"name":"anonymous","email":"adriano@raiano.ch"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"0b8aa01f600c023759f583fe09aa42c99d309853","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-2.0.1.tgz","integrity":"sha512-/CqGz7lg8nXQG+e9d0TpaTovt1fkbTBHJbviHyB+fM4dBKYxFN6tuaB+0C8pb63DiB6IXyF2t/gQb+8BgMzK7Q==","signatures":[{"sig":"MEQCIC2PA/7Mq4yQlxnl569MntyxBelEdA0RJ8oa/bIGwNleAiBlVytGAaKay2iHWMIqIqgTUnRgrmpQnCwiGwyp0a9Bjg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0b8aa01f600c023759f583fe09aa42c99d309853","gitHead":"9164178f40c28b0d5e2407be42f5aca9c8768e78","gypfile":true,"scripts":{"test":"mocha --timeout 10000","install":"node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"3.10.3","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"6.3.1","dependencies":{"nan":"^2.2.0","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11","prebuild-install":"^2.3.0"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","mocha":"^2.2.5","prebuild":"^6.2.2","chai-as-promised":"^5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection-2.0.1.tgz_1514406566471_0.9233315507881343","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"usb-detection","version":"2.1.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@2.1.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"12b6cbf0defc56d83f70eddd2e138274dad57fb6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-2.1.0.tgz","integrity":"sha512-LsxfXeXbdAHDRQPbiANeQXdidNdJxBsZZYOYa6fj5FHC4W5T30+w7hjZHCBUzC16kk8K74neuhdzZ0lTp2b1pg==","signatures":[{"sig":"MEUCIELLrglbR0xq9tUQOyk7VPOLIZ4DowjDC6uV8Rkq5xVGAiEA3+msaHJpmH6YN4eAYtlYzXnd0fdXu89gUKTr7haedAI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"83afd96062e879f8514980d41e27f146b38cb227","gypfile":true,"scripts":{"test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"eslint **/*.js && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"5.6.0","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"8.1.2","dependencies":{"nan":"^2.2.0","bindings":"1.1.0","bluebird":"^2.9.27","eventemitter2":">=0.4.11","prebuild-install":"^2.3.0"},"devDependencies":{"chai":"^3.0.0","chalk":"^1.0.0","eslint":"^4.17.0","jasmine":"^2.9.0","prebuild":"^6.2.2"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_2.1.0_1517979530525_0.7658290855020204","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"usb-detection","version":"3.0.3","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@3.0.3","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"7d7353b3f525f7e40b6b3e68da0563daae7f6700","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-3.0.3.tgz","fileCount":27,"integrity":"sha512-cvtw72e89v+jHltA76olPFAO7m4JIKGy5FXGwJydTjOHjxjUWOl4hvFQLBcbALK9AqpWclsb6X9nttDrGMi1Dw==","signatures":[{"sig":"MEUCIAGouz1ll6CU17Rw8u9Rqhsq4UqbNc0SFdmoDUNSd/mLAiEA9/xsl3YHMVgOJbLMjV35PztGMgStI/Vpk4KIs8Oi4KE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77692,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+c13CRA9TVsSAnZWagAAmjsP/iQwDaxetQWviuKmuVOq\nkFo7kuWJXASzUvVfeCfrEOzVt6ccdSKaBLLOrP1jStSE8WjO1LEBe53pl8vy\ndgCrhkjlxtIvoJMeTNcVk9vl/nCmMPSci6Nyyr2I4K3GsoD68uoW8KgevsgM\nljrn9MSaFBtahbpJcmf5XH0i75XJ32iFS/224ZqqzxVNS8LxfkpXBChvXQlJ\ny89djP+vnJNEh1wMkK8/ebso0rwnDX6RYcDedLlHkufbVska9uPqxNEWRZmL\noluRpduXsWTGN/lZ+eLOJUnbUVZ8pVfXuf6sWe4byS9lLMaW1fRsxEFrTWoC\nQnhK48vn4KZlJr71BUG0EA6kkituxIhDAM485SwWt0m6rMXc13EZEJRY0azW\nvv3RgPBf0mlxsxlBt1OEr9//6fCqEJnJ9dctjILejlZtCnVzXTGiEidXs5LS\nhey5E+LXIq5y52t8887SBcpP15grKaTCL/jMmvyktliPeBahOFuljAzZ6rMR\nOVyUafr7hhNNX+ASiQ7mlqThfoMT5FKxKMPP4Ff+Y0CpTVx7TdRoDpiND18F\ndG/ekzz3j3nE5rp9RnPrZx+bd2QipyQci0oQZ9CLHpROm9//aBTxxn+i8/qJ\nxYdcNOO/N718QFRk17AMkd/xKezDkLNzLoVGJc2d6RG/EmpFP282lmfFlH+k\naWHM\r\n=FB0g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"61dd19d517a8ef757457e0b6d7c2095367f28d3b","gypfile":true,"scripts":{"test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"eslint **/*.js && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"5.8.0","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"6.14.1","dependencies":{"nan":"^2.10.0","bindings":"^1.3.0","bluebird":"^3.5.1","eventemitter2":"^5.0.1","prebuild-install":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","prebuild":"^7.6.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_3.0.3_1526320501435_0.05338754145088642","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"usb-detection","version":"3.1.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@3.1.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"8d0ed0f4012875d23b6925665034b009311290cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-3.1.0.tgz","fileCount":27,"integrity":"sha512-6rgsVru4HPxHkJIO80H540J637C9RaQnQCfD52Q+TOygN9PuRGeTXme6UiVqOnMYtvF13q5RCX8Uhg448YStMA==","signatures":[{"sig":"MEUCIQDNDcsWwTyF4vPkj+g7HJTU9IJToGzdqE/TbaqdoucGtwIgXDkbSVIP9l66dZ66Unl3bOQU2lTK23+N3XogQsZgtw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80462,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbFrMoCRA9TVsSAnZWagAAdNUP/iHqQxf8G64cnf/z2wdK\n/r6GlNNFNGP33mWWFfsCD9DE2+Vk8R/8SrQJIRbQVLBh3ie46KnYwA2NYrt8\n0/oYKDeZ7Fxub9b1aDBcZR1eaDr2uIDQDwdvchaxY6URj7IRD2sSoScsdsOB\nwibAqyFuTylIhcQrzmvc+yXHUdSU4H8LzEkcBcJFzl3XN4qvl+Od/mYPOkWY\nEEdqCQkWXG51EGe1UX5wOip2ckG1eRdWNsbuAx45Tc06iYVS+cV3EQoUbzzQ\nTmWlIfd3JIsPbdCkcVJ3bvC6zVxiSnRCZCJIn1eiFYWfF80Z+dtw8Fy6zqEl\niiKCET3U/jYAiO5HgtMi6f2z6zgsxI0hI+NJjI8LLV+kTI/PriYzhDzBb+4o\nkAFajY8ov4DUqtFRLU59POLOSmmwYlgGwlKE3Pin7d0p8abv6sddKAeJC1Q8\nitFK/mLx3L6cCveSK20+evyRTz5yP1GEbVx2BI28NO4iBgrDxYcWCa9/iFNi\nqy21DIB11XBIeyonXEP+hzPK2eYzLd3BhpvxNhfk1dxqI32craCsRzeSWBli\nzt4Mlrcfornhdi2mgpCwcBdBgvmiMsE75MjK0VYYpy+brvxljywnPuOzzsNt\n9vNVkQ048wivZValRG2NV9UWv/Zq5sVq10Nui+5GubwWG2MZCt7R1VIBqbD+\n4WHo\r\n=llQv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"27a3e03831c63d31bd0149b6f627fecede451618","gypfile":true,"scripts":{"test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"eslint **/*.js && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"5.8.0","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"6.14.1","dependencies":{"nan":"^2.10.0","bindings":"^1.3.0","bluebird":"^3.5.1","eventemitter2":"^5.0.1","prebuild-install":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.6.2","prebuild":"^7.6.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_3.1.0_1528214311267_0.4046013097160137","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"usb-detection","version":"3.2.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@3.2.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"35ce8bd09e9eed9ed1088c912fe3909c5cbc5848","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-3.2.0.tgz","fileCount":28,"integrity":"sha512-es4Z54VJ893sdZhSAvvBzie2kPRtExHaAHTYKXZ4feDtPWcKLG/Trk2M0QeNGeiWlVU5nILUXOQm/NP7/uhlUg==","signatures":[{"sig":"MEUCIGkEsTSW61mMZ7IJJy+au9t8UIGM/IL7mPfD7jhHvvMCAiEArcRN/I07iApud10xL6kOr3m7W5aMFaZoFSJ5iPpqNxM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVhtkCRA9TVsSAnZWagAAz4IQAKMvIIf1cjib4DPFnyls\nO2oYpuwQwPbdOJgJGOlznT7uu42yZZCtIyD2tDFaXzYVZviHG5vLMfnQY3i5\nGmrt4vh8T2WNlM1UW1mVwhZmmrifGI/aViQudUM+4v5VLCK8XJyseAQKyLU2\nXIu7S9XQefZPGjL/LYn2dEOas0i5wdigQO0qayi3/K7AhEJK6jCFd6bND138\n0DLSVGZUKmYriZqAWo6jcOOTpA9TNuyQVZm00wfbncDbyaZnH/8FK+Qo4tXx\nYof/y2fwAmfyH/4BAzYEkG1J7Rd2sJjmFgF9x0hJRQbMjld8Yd5jInfQKr5W\n+4PWs+C1p/+lL51+j4VyOZ/6giggxfEC7F7DsmBKL7pFE35OLVGnMZOpn9hE\ncUhTiCZVE0w2jhcz82GAGR+T27xIP2AfXa2v/5Peoo0INPvK3Dw5N/WAmtVZ\n0kyL4qpwDlXFJP4KuIgVAteh7bacFZ6GLoeyhQJjztOwY+lcClXlbVCpTMY1\n3ML4BjBOA4NF2e+8YZntkj7396M+dw2dLT9T3hNiIfwRQaiKfOe0jqj5N1im\nsSAAhOrTUyzqlIH1bDwH1ZbdnsbBfdE+DAbLf+9ikAI46VrAOMd4/iKXpp8a\ns62KJ9TTJwO9MGE+jut2JWv3xfibAFrFiRCIY77eP3HhOMSnpw6m9Gra58DX\n9ynL\r\n=OG+s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","gitHead":"85a8f262ea3ade2ea6275b93a409c1a16970039d","gypfile":true,"scripts":{"test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"eslint **/*.js && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"5.6.0","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"8.1.2","dependencies":{"nan":"^2.10.0","bindings":"^1.3.0","bluebird":"^3.5.1","eventemitter2":"^5.0.1","prebuild-install":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.6.2","prebuild":"^7.6.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_3.2.0_1532369764637_0.47109597935111025","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"usb-detection","version":"4.0.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.0.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"5c09f97ec77f7f62b8c1685057c4a98fad7bdf6c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.0.0.tgz","fileCount":28,"integrity":"sha512-GSOtYjkU3QFuC8ZRrMUgkE8m6VhzMuM6MqT8SLSQMK+/pdYS77mGZ6aA8yFaQTXVLZFqyYvs1IxFJ2IaQfXxDg==","signatures":[{"sig":"MEUCIQDo9eeE6jtl7N/MlAQnD7Ttf44aFaV5xYZXnwDEcAdxGAIgTBxjgjxVQHcM0RTg6UVJ5yqFzJ+CXfqdQU5fU7dIrrM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrUB8CRA9TVsSAnZWagAApMEQAJ73IgjjN1CrmnRs3mOi\ngqIMbvZlvB2KPjkCT7gj0VJyN9tXSO8BaV9KEbXdYX5o4b1s4qDlkeoL/2Cm\nkW7//gtzhmkN71KmZaO4pRiZupzI2XPyhOw6+ks4XEgs7rIjFPJ9yLWCjXu/\nsi+2v/faY1Ojr8VznSIOdPSK7vAyTdN9hcVl84ZrB2vl1NWPWR1H3LtFtu4n\n+AfEVr2Myg0O4Cd8vM9vQD6ZgUK7AacsKhIdwGuIEeqM+UbE1nsHN+S07uXi\nW5qk5f+v/wqPXp2MvKAtkq9Qve/Ekj1YvVzjVgb4xXHTyAsfqdgnNygv4g3k\njeoPG+aoebdB2gCoKmdaxJ51cLSTTZsbY0tzAvx3zSLWbF9RxCa1Wd9oHaOF\nmlVJ2EBwcIghe7mFyAMYL+Zx41JsbFw1RwN4KEW5SVpC2TpyQszzocUD34KX\nh3kvMpTF9bjq3tEWMNrojne0+xNv6sFGBbMuD9X/xmU4x+UQZ0SiBH7welSG\npMjbbPGVn5x7y070kYU6lQ5aq8VeeC3iZj3gx/AzG+KrWk4sDH6X528kHHBM\nAU7COGiJnkOGxTJPn5Kn4VcU/MKSKtKfSeIkUgjVzbSdiDn3sODJ/3YUPai1\nEm0Cc13cNb4j7X3Vpq0B9BwQ6R5QecSml2puHKVHbXeE57eUFlzXzjmKLd0Q\n66Yr\r\n=Wnhc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"91f3f603a65502a8461cfe652496219c0f56b9d6","gypfile":true,"scripts":{"test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"eslint **/*.js && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.2.0","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.9.0","dependencies":{"nan":"^2.10.0","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.0.0_1538080892009_0.20568895864982206","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"usb-detection","version":"4.1.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.1.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"3733587e034dadb80b69fba1472ec894538c49d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.1.0.tgz","fileCount":28,"integrity":"sha512-yMI+kqkhH3OGIk3uPLg/8UnPKVtvImOEEa5Rm4gWretar0newPMRqwz+13fboXacpfMgh+2rzEbpgVuymOelIA==","signatures":[{"sig":"MEUCIQC4+BwBxtKhLdPyiyQLIdNcioJEeN7viP53K+vY4ciCVwIgY+VWvptBfsbo3/77x7uv4WvOVe0zew6j+kMLVnCFACE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82140,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb+awzCRA9TVsSAnZWagAApc8QAJWYnUZSdtEdKjg0wdxS\nfVxVbl4o1dko30GS0/osMEEHIDaLy+hiu4w9dIiriUxL3S23nkK2dWYMibDa\nOwMSl2plFpiz1vyC2ur81RJUJRtzv6ayZjFva1LQqMuz71OQkVRHxK90Gojo\n5w1GzTH2bKnTz5iyhJ6sl0C2AGIJjje39IK9lqLBeu/AoSe0+5DlmftDo6Gt\n7g7h0KQERHNOYLtZK9qchlT8y2MV1+A5ZZ2UVXmGYFFfsVEOpBFe6a1w7Nvk\nOYzdX4ig/DCKM1Sw+Uma3d6KE9/jO0hW5jGK7j9mys2AblkrOh0nOYm4o7TE\nK9JsIopJBECQSWNQJ3MGHj2ZzPOoTK/PbrK0ple9OmxiYCwZ5Ib7NapisHxj\nu2yEvRbrwTJhMYfuivaIJMaPFwV7kwcHpwaZBG1UHKSXuej1au8cCa9Uakg/\nWzsyyLTvxgxZz9L+x678243FRK7CbNcN8jPQSK6k2E7MGMTuj95Y6rhTlXqD\nFzEPagIBB8lRD1rmAuygVpN+bQhLKfItx0Skh4+KUWKts3gQ+S+vIf6HEer7\nwrmO64iPJaXMswOHWh3/lA/KHqgnyL5XdE694TXsPS0axiPs/Sz+V8Fr5NiU\nQqTJbQfflnR5lZLC0TEqaIO2jsYf6K7SPlfSnK1WxuZnog4TN/kfE2QVMi5P\n9fDx\r\n=vH9V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"875c525cc55b8c8d161138e5055c6b40a15d0851","gypfile":true,"scripts":{"test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"eslint **/*.js && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.4.1","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.12.0","dependencies":{"nan":"^2.10.0","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.1.0_1543089202824_0.09219102609662078","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"usb-detection","version":"4.2.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.2.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"f9b734a74cd23da624dceda5ba086c03419d6c08","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.2.0.tgz","fileCount":28,"integrity":"sha512-fWghFK6MKI2dHKGvNO1A26hR5zhCkDGerxhtFWxNOE8PZWc0lU0Uq7ulYeRXdNTGViuRG+R/Y778RMAbasQqFg==","signatures":[{"sig":"MEUCIQCxh8nTGcWgHsAfYvO2wH4sVcY6PwF9PtzhvaGBJucjUwIgMzRm91kQTVCj9USJu3q9oQxDBfy7fTGR4RsumHy/vgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1Jl2CRA9TVsSAnZWagAA1osP/3IzlX4RIWPzxgzj2DxI\nw2rzw6dLD5KA6OvKoZKeALwIXnEQblZthT0wy0AQY9GUuCzWiqwuUzgtITZY\nb5YXlSNT0S29lnpjRyqaOmDRQw228QKQhkEX3g+ejCkje0uvP43xQvflchu0\nRounWR+MNU2bSGs2j8up6M/R1gM+30SwxIwI8+8jCiOf7qpZQh/0aLm0xYld\nlIGSpedN417b9z/ZbIrZPfx4W2tzCC+MUz8RNSfSPL9tcxznndx/9A0dE7dg\nBq6PWgGsHZ8XvANU0tlfrbuTB3i/fQyIlZgQz/KxJTwLN4SyQlVFV13yGSbu\n/TgInXSxcGUMXhORiZso2Fl4y+iJ0DDrAnNE0rvZbEX2kVBx3tNnJ/j39lQo\nIFNCKv5pMbvd4KH8adDCPF+3zOPg7XfHskfLUKHsW4GQh3jAr+MQ+5yB0NWz\n/qJgJUef2hUMNHpn+IrXxuJQ7vNzknQB3h8oKEcbuGfswrhqSlckCixNdBuy\n5Hiaeev+tLXWPBLriw9HPtcBe73w/LzxL3OlBxGxuNDBOl87U9K60XciZhng\nq0mG/hesJCL726o+ZMWNQocJzR2kfrmHIblzRcCL19qFOm25VIuu6q0gNeoW\nEprfFu6wORHUj4Q3uuFYpURVDLWa3CrnIeIQqJsm3QPDTVBDCvmBPmzJXVJe\np9sQ\r\n=Pyik\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"b6f7406e781ae166ca789d02f3ec69e49e6ab76e","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.8.0","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"nan":"^2.10.0","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.2.0_1557436789219_0.34067228919794834","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"usb-detection","version":"4.3.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.3.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"0e0ca5d8515431edf26215b2643f45d3aae4b28e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.3.0.tgz","fileCount":28,"integrity":"sha512-hZ5klXudeyOzkRdv/CaQiG5sXJ2Cc2VwaXaO1Jrd3JKMUH7lckthp9zLM/NeFONW7Fdp4JaBIEPd+bLjjh8/Iw==","signatures":[{"sig":"MEUCIH5jOutJ/KDlRZ1B2fbPA01wAJU09EQ0T4Fc6QCYwrnqAiEAkOXB42AwiclLLqLauec2HpikIhAFPPfHqDonfZOe8yk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7KzrCRA9TVsSAnZWagAAQR0P/2SJiFf15EtfAmi7GUS8\nZ9zN0/0ubQPokzTWHUx452ytIiY7O8SMoDeFUTrTIPT7TKMvJg73vj1sAhmO\nnxhvYc9NCDMFgtEC+v6HaJWuAZGy+vYFtsbWW9YTP9ypB8VW5L3bZ0KoL2se\n64ca+JrZHETNl8MwSQsKVrURlqOepyMOr980AXTb67WwH7olDWTdlEGo6R0N\n5PvxFVGOicYvS2sPlVSjj+YDWHHqN83fabZfR3wx7XDa2Nfeyxrj1h38RR3P\nAwewiSXzRVIH5f9Oj37U2YpgWH8oQjl5975+B2Y/wVCq+B7hIrBlnxEgO9Fq\nwasEF9oT8KQHgr4iOo2zJTG5JTx0SqaWAP52/KMtAi8A4ikGGTac5EPbdKCH\n9biK+aoY2cQoa+36v8LkBqXjst+FxhIAxK09sN25xQ1PE1i0c0c70PoR7SPH\nqa/13n7crFl7wQ4VuMYjDJ+XW0rY1+sQfSMg3d6ir9UvotReANyGaAK0NkFh\nItkJ5FTE9p+mkK6wquIJqTjhpUL7GPegZal3XgszmJYwt+pw0yLxGjlo6Ns6\nC9pEGZMeGLAAVcCONhBts75ij5NfI0cYhkecRGlRuPNZnWv+xgbUQLyjBjGF\n97QKnTPxwFOd6uqeMPiSrUy02q0u3cpC1wx5poEe2maMF6H5LEAzB76JW8GA\nSxek\r\n=dVKB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"49655a5076d2e5416c63ef5c2851beca4ed84c26","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.8.0","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"nan":"^2.13.2","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.3.0_1559014634393_0.9354107414278332","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"usb-detection","version":"4.4.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.4.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"48f6b72a42173419f9d7df8773bba289bd543b3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.4.0.tgz","fileCount":28,"integrity":"sha512-w9SkbZslmjsthCjZ0ckVlcX83OdFkQq/YwvjThHZCCHGOuxgn8W/FLwxyDmRvZBwLFE060la32ts7ONw0LDNvA==","signatures":[{"sig":"MEQCICRzXPM2L+iHZF4wH4X4SiS7sQXBB/5K0rM+dz1h5+2mAiBkTgYR6RYN/sIzDPYVZyfOvtF7gQG5rHqYZyrySM4fQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85335,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmm72CRA9TVsSAnZWagAANYIP+wTQzrYcJTi1tbRXnSD0\nhilif8tYPcv6mX+e9ha23X2kzXA2IDB1I5WQcqPbs/FajM0P74/ugFKfU3PY\nRdlD6gAJLexNonzLBqYzk0FfmYmrITZhLkmuAKIl3gJEC0w7YjZbh4ZTOpK2\ndpRY+pvb3sfvTi1eYZT8TAuXfCi3coSXtYYEYh5aYay65JmlRr7pYbH7Upfd\n7F5pnfyUh6MFcL8DyGAYmGm3fi7PGcfkWMO36AQ9kpRQwp5yP5u3G1O337RG\nV1YyQudKxy2aWvZghMHtzSCj5NrT36gfrcgGbPfrRlmfsWSe87aon932DIso\n3AiXIb1Q9SspGwlnRbT2/isWdoEuoa+XerPwB+AduUppa+AkH31nObzzMeaZ\nUeutGBqTD0HdFZmEYPyYaUTHSBiRbstSk6oGE/PiPQuwCItyAefULd7i+84M\ne689G5nWBbmIxRChsA1k5jyXf9yXjbu1xwIiJUx2wJcN06u0dGO/R4qNtSk9\n/zu9jAZDRE8JaTXQdJNueway8j/gCF7SvOEw2dP1eFORV9AvYGVPvfvDCaA5\nLSwbXiOXDGWM1Ue6NUrrmgkLxl1tBigklE0CcV4ev2YYFIHpyiHbIA6OWa+s\nXYANo3YSwwBBTqjJikqc4aXoXesX4i4us2mVpTL4CD8kRIYB3MtM3/soph4T\nmANj\r\n=m6uH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"d4d5332c5b146bec863df2f25dd2db8b72525e11","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.11.3","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"nan":"^2.13.2","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.4.0_1570402037790_0.12456797286271692","host":"s3://npm-registry-packages"}},"4.5.0":{"name":"usb-detection","version":"4.5.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.5.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"fead3b88bfe804023f59b8d7de95715ab9d2bacb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.5.0.tgz","fileCount":28,"integrity":"sha512-tAhcDhle/PYLvqx1pteJYjdVgDUcyTBixnT5bF+RHN+U+iK0S+fqNIRJLnNHYycbI0HavVV8TKa4j3e66/W7eg==","signatures":[{"sig":"MEYCIQD4DcZJYsmt5liuyH1m239gWUZTAkd6quI53xRmZgqRvQIhAKDvMfpwEQSoS8bCgN4T6eiZ6Lj+UTa/iX/9sh7Mdv0c","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":85895,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmnLtCRA9TVsSAnZWagAA3fAQAJCnmEnnUjiweq5X/971\nkp++us5b6V9jyK0QwmWL3LSWwuQWzZWqfq78+emvuy4gh6+y61YHAee+TCoa\nTYLTmgvwWxeFDWSZenw1UYio/ke79Vzux2qjKoUcD1h9b0/CWBBdydZ4I6EL\nUU9QryszDey5dSGmQiFNlN1ienSGP+xzzE7gl+dKQmwv2MCby0Y0kqXw4+sp\nJPUTzOc5slW2qle8HagfIKz/S6MPfqZmfjsQ5+RayQMUSRUdvhsIx5jBef9O\nQpnvowZyTYg3z72H076/13fxH8V3GHXMXZHv8b2CBsQk1Vvz0TJlk87Btb4d\nhopWQYQIGnoZG0sQ3C8pbCrMIZ1ZAEgwUuHnQwsFh1vzt6AIpu7ff7aBGVzZ\n8CHkyXZ7YJrjqTXii57IXxfyLN/1+w9LC5TNY756EaSu2MqZER/GeC9rqmFs\nCGMZvo0UvpM2UVFZ2sUONirsR4Mlq20FidXqglb3xt7Yy6BORghUMi1V6Bf9\nFCouADgqJ82XNsqgD7NdVB5cWIs07xsGzIsPRFfvw9JVXZ0sIPvV30LVaPCY\nPn6XXu31XmWehIOjNxsCm/2QxqsFxgNu47GQj/t95t8ZXa8xUh2VkJaOFvcm\nRSq9nHqZBCunAp0KXzbw1NL1Yx0Nhql7zOsLhWwKy5w0zyZw2Wd5k9vsk0t3\nI9Dp\r\n=Yuxq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"5095a2fcc99c7e11795536dbeed286e430dff889","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.11.3","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"nan":"^2.13.2","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.5.0_1570403052443_0.7195367069994465","host":"s3://npm-registry-packages"}},"4.6.0":{"name":"usb-detection","version":"4.6.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.6.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"f5bb6121d64106f042647acf43135d31bddc53c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.6.0.tgz","fileCount":28,"integrity":"sha512-+A8Lb0tL38YlawkdRbqzf2WpRS9/qiT3vfFTVieU1ZwcGbx4EJgJzb3/8aWUFCCXXDiycqzxsV6ZafYH4jwH0A==","signatures":[{"sig":"MEYCIQCBSmomoSr2nQAMVIgdOg6KbQ03jmOPzmZVaf1kpYmHNgIhAKjvF/SRyXhhtM3yJjv3NUTPgFz7hh9Y3WX7RgfDhqYp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86349,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2xyRCRA9TVsSAnZWagAAGqcP/21g8julxUOFtrrGyvvi\n5/APgJJaO+8gAK22h0ZNOfoipZMlpJbXTqN/PmZAmtzS6JvKDEE/K9HgliaJ\nzLA/lf8Ice9lTI4p7R7dzfM2a9yfSBm9i16MwcJ95jAEIuOIk6ocK3w9tDEo\nm1m6BAtdOJ8AeECn8jdq7zXSbWcquui7QxJmwY4Z6cI8WGfZLqxJ7Zl9KovP\nbALNK+zyvIcV8HLyuJXTO2yNdyeqa4RygX276qlHeuinKEtBLrQvvBMWOBoO\nxXgowxHxBNlmSkXz5a/7EGr2LGZ7qe9duGGvrdfDoQX5XNJf5qSJ3NQX0M/1\nXX3nJ9b1VMOKbPqS1y+M2oYIbor+YUrUHiPvfiZbFAzWytU208QBkhG2E75B\nesmwJ8Ue6PMfh7FVRMZbmgReqYdzdqBh/fJwoH/aAjiOfw7i4EOxcSpn1mXa\nxOnbkHzx3slEKzIOmet/dt94k1SBuIkrGabu7iFkPEYKj/8/6CYG5OjEqDHs\nHEV3U6jJomLKxGtxfMg5QdBnV6v9Paa2/MKhAfMwZ2/zBCwOa11G6u2zgxjE\nvWbVCwTE+ArT+GR8AgWrbhgCwOpE0RV5a8g7voUm/PFMCuFZg3eDcUoQIxS4\nzrbjJnNB2uumNI9b7AaG5tpoz2MAWyMaKzTrP4xrCwiQxirUnClZSAiETi6t\nXbmu\r\n=FBqu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"d691aae6f89a73b4f9a2fba2210edd5ffb1896e1","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.13.1","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"13.2.0","dependencies":{"nan":"^2.13.2","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.6.0_1574640785489_0.22048769815999414","host":"s3://npm-registry-packages"}},"4.7.0":{"name":"usb-detection","version":"4.7.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.7.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"2a740888e5043fcebf1fcbd7511dd0bc2c5408a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.7.0.tgz","fileCount":28,"integrity":"sha512-HE9y5uYfA2ebVo64BrIB0OVNaVKZ2oWkadpTItCi4YQXyZ9vD0705iqQ3B7Rz8xevcrW/RNg/85E2o2JoPFmsQ==","signatures":[{"sig":"MEYCIQDUjI0VXnpcfkZo+m6FZkwWhyl50YbjtGustzKyue4yrwIhAI0EciaFIOYnObwk1XrQf9KahVN+SbWkuXo/PvceMpZZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2y5xCRA9TVsSAnZWagAAnGQQAIC85WXkuDhHMGCwFDQX\nqk1ZUMVKZah83oABye5wcI7VBRdOy6y6NAPPeD7V3jL233KY13A7/OuJ4yX0\naqQWTe2Mq0QRLIHjDeUoBWByBlGA5AuUE2U9XIYpb/+8N2Qtz6EnZUhWgRGw\nY4MqIqtetc0pGy5JnMj4NASVlz9JxT0TrJf66mJGfL2laN/ZkZj8PH+cVNaC\n2NacdDCNUtoK/R1AdXErXlMDv/zd421Bw88Pa7JkJITg7yrxdeQlVK+7fQzA\n4zRIBvR1OoKMqVe6t3yrcL8rqWvMqsHktPeM9YUsKjS4u8RZuUsf4LRucl+n\nKNhgXUe4/6lJsuv6k6IA4I/0qiK+zEABOuX7HmtRoNODdh5mKLR0jBFr9vlY\nSFqLS7BAW4V+Q8Rv5EBOaHhuQ1onH8g2cR3iEuZT6PnLFKNGuqzlw4esvNwI\n91kWXTeZHdWMFwp57+wdDcfIfjAzFjJwnwDAW+cJVEpOBv//L9wXcq7IpyOH\n9J945DKst9XviT1wrBU87YLUzgRrRVSG2di9QYtIMjfaxLbZsxNe4x6+eX4F\nbaD3DBq8zslvfdmrL6rR4iSU+1feSRlaCcNtAnn/tV6oOdwYCWDwNLEXpLsf\neLDlURGHMd/7asJEF/0CDIqe3jsakIG5mnXRvnYzh+gyHqo7uzi2iXH3DVMs\nw6p3\r\n=+8cq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"ffb0aa637902bf5e75dcf3a5f737524c60d75efa","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.13.1","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"nan":"^2.13.2","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.7.0_1574645360833_0.5530689378526916","host":"s3://npm-registry-packages"}},"4.9.0":{"name":"usb-detection","version":"4.9.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.9.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"52467fd0b5d511860ebe649d19d3a8d4a40e73c5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.9.0.tgz","fileCount":28,"integrity":"sha512-Ez9mmMz20+jD3ckdCkd0vYvcr88h4ijR9XXFt0o7+TvUijktxC07r8D/HlcHVFP+kbi8V2+iMXTqq7Rfwjh60g==","signatures":[{"sig":"MEQCIGkGkdlRBi57cvHa/jyuczljxx0fCOkwFNfpgKXQU+uFAiAvrlZsj9iygkYa4tYvJdzt/Vrh2A4HJsk5iQLV4ViNyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88303,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeokl6CRA9TVsSAnZWagAAWwgP/i4Fwp943txeOeHuAgTe\nZj3b6q0kYgxPEcLZXI/xDjozUF0CWuVTxE8MXLcXKiPDmLePvyH1ADNnx/Aa\nOaF1t6oiP7WE3cbX1X5AzMN8RKmARJHOMYz/ToquvglDOCkCQ5ZtvTru0DA9\nyilige7AcXdWIMLTPPDJkSkNU0YDl5INzrFR4z9U9oCvSDICOEtGeIfXtiGa\nMYIKEAEkwefZRymS46hVjmnO88L8UKsxO+IpPlWlEZOdjZ7Z69XnPFoitihO\n3TrlTbfUrf/vPznjprYT7YjS8KwmhC5wJa2XH0NQlfl4SjLqFqcbJEFpUfQx\nw/jU96kATXSMJ+NglIoIdhphPm/MW3kg2GQvsr4FPK6h9qWGqWjhbuw/vLxH\nM4da3VB381gsP+CadO2UI/oub4ghhMiKdddMjLhuDhcwBU2LVqC+W4rz9Kar\nPInGYDxjrAyIWxsAwXYOUaSyQPJ514dzoE3PuNx9XM/wNfWPGLzqTu7nhB18\nMmJ3n7/mrPNEOru8yYLug4b7I03CV/NyoFIJbQR+98pBWjeMk8BJMduP2Yxa\nekcvdujCBwoOj4pRJ7i4xu8U4Q0oDvgVsRlA5p6z75WDisCKug7JNoaYorJF\n/dI/s5ERTtZDlhrNnNOulAdoAlq32Z3LpWfD0S5JSMGIY8Sr4LBDlnGjsgnb\nXW79\r\n=E4vY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"4977a54b388ddbef3ad5ae44cab1ae3d134fec05","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.13.7","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"nan":"^2.13.2","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.3.3"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-gyp":"^3.8.0","prebuild":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.9.0_1587693945984_0.2161914317475382","host":"s3://npm-registry-packages"}},"4.10.0":{"name":"usb-detection","version":"4.10.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":{"url":"https://raw.github.com/MadLittleMods/node-usb-detection/master/licence","type":"MIT"},"_id":"usb-detection@4.10.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"0f8a3b8965a5e4e7fbee1667971ca97e455ed11f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.10.0.tgz","fileCount":28,"integrity":"sha512-YUzVWXwfSviE2pInXCKYXhR5heY9GUzlWsdZYxb/Br1Xela6P31A0KDHm7XW0Wsku1HwrokZx+/OD8cZSPHR3w==","signatures":[{"sig":"MEUCIAP5XPyMRrdtms17NeOe7/U3Oqf5lhk0cNQKu487vuAgAiEAoHKBCm1A2N2wY52tbC+NlNIamyI4hO9TnMzMKj2stQ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFpU/CRA9TVsSAnZWagAA65wP/jLFqdLS19fprVeOTg4d\n2BWJb7gMsVqwJD4/pKg7Hp8BPTMR27fKmOWvTMvzFWPTCN/QyOSPZckfKzqR\ni+GOadgJQsH57W8cX2q16znpNGlGnM8g53Qh5LZlx5uHq1Qh/PewH2pT+sG5\n/7goiW5dsEnExvtoMdLMzraE4NnM1h41DHrbMTKUqaF48DS4JaojFmnueWZh\nsVI9BETBijT+/WesEse7ND6NhCntAvVkxKmtqU68G/PFlCjGniK/7gegLYPc\n5ZD+63eueARBGDAFwNLhdVNZtkRQIf8ATOAU8nd+pTa7GLBPPGRIUptZD7cU\nCevNMx37rb9ln3aA4gG54+ePA4cI6Su16LPb+zVM8VWQlSfXNEhJ7BPwIqxV\nYVSVFf+NxssZxTjNbvIPKlvVwTOoUI1J274xyte+EQ8lt8aPVDM1a8DUPbpQ\nRgMh4B77wXW+DOB4l5FPxvjLeU5YPKoNhExI6Nt6JCIe+Y/fqGO+LGH47LOx\nmPbw7Sj5/Z/m7t7et7Jr7Rn+7hzH4fT8/gteYWCp24O/ylhLc3PReNqBEQ7p\n4kN3qr3SMthEJcyG1ParlYS7MmGtN6JYEiO05YVm5dDE/1pf1wAlQfU44rWu\nOFRFwa3ckFJ4nDuSLZIC4gAQ6FLh4xDqOZYngOPz68nCQ9eU4RCWMWLtvsT0\niJ1I\r\n=1Ct0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"53deb4495f9da75ea25fe61ffa4203d1007de4e8","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.13.7","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"10.15.1","dependencies":{"nan":"^2.13.2","bindings":"^1.3.0","eventemitter2":"^5.0.1","prebuild-install":"^5.3.5"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-abi":"^2.18.0","node-gyp":"^6.1.0","prebuild":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.10.0_1595315518650_0.07890627394156113","host":"s3://npm-registry-packages"}},"4.13.0":{"name":"usb-detection","version":"4.13.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":"MIT","_id":"usb-detection@4.13.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"f98f350d236034645db99f4ce1b80928349c83a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.13.0.tgz","fileCount":16,"integrity":"sha512-5b0P+IYSN6Qv29hZ/m8P+iJyBDFYQR1UD8n4bWwPWbCIG6c2erQ9F8Owp69OSK0cwqf/InxYjIBuTVvl97bpZA==","signatures":[{"sig":"MEQCIDIJ2P0+aoKhCr0xWOB1VOVrzGGIht6PdlvGA/loPgNTAiB4bKkO0jNA3Wiz32HVG9Z1OrcXiq30VagwZzjQ16KvfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2/GpCRA9TVsSAnZWagAAWf8QAIukaXz7w63Byx2sTHFy\nshLN6MfZ5EsIJzG6cfgJoHs6J06tPCcZXYf96Sxv3F7B4lfrJegHnnSmIbPz\nmtolD+lmZtTqS8rR2qtsTVE87P83cwK20e+lxuWTEaFP3oSLOE5Y4M9mHEmF\nDDfXhPaeKhngUiy/dgAqaBJoNH5CIHw4IcHKortdoZR4sc4QKeE1sBly/zGC\nUveYk5Ad19a574kKBo5vZKEcf16Lx8DIB/cMnqe0ngn8GMObUyOVe3VLGz1i\noaa11nfQw33L5jqYWrvoFcPU/3pFlybrNiqfMvdW6PBRvd1Ezpb9G8EjtOTJ\n+YmVs4X5TMQbwu/VThsOguMSHJri6ltRX3si/cZwCjlgrwbPxo0Lor9FjoWJ\n8KDn77aV5EixPW+vzVFXWT3OabtrgjMf6v/AA5Q9iQ2YHC14wipDUyIQ/s/2\nwmrcUdsNhLPAjaaZsZ+4XbNgztWZXDh4IpT/irSFAcelinO2lklOIYztV7Ra\nK/KAs0ahZmwh2Io4C00/EBhAGbJjeBBHD5Ev9YRRm43SSuRRhYgzqOhpXm30\nKgqTO3T9XNxUbm/llZrEGW4FsY9SiX9L3K2zOM6YvZ2+0gpKtanDcwxRR2a0\n4uL3T0mqB/UY1O+mOelawpjffJ6hOYK+JNhPwgpQ6/OUBJsfpyJZtQUO8Cj/\njzgL\r\n=XL4u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"a0a2199b099a93e07760b1c3afa5457d379eb266","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","node-gyp":"node-gyp","prebuild":"prebuild --all --strip --verbose","validate":"npm run lint && npm test","prepublishOnly":"npm run validate","prebuild-upload":"prebuild --upload-all"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.14.15","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"14.18.0","dependencies":{"nan":"^2.15.0","bindings":"^1.5.0","eventemitter2":"^5.0.1","prebuild-install":"^6.1.4"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-abi":"^3.1.0","node-gyp":"^8.2.0","prebuild":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.13.0_1634190722188_0.9867945635345898","host":"s3://npm-registry-packages"}},"4.14.0":{"name":"usb-detection","version":"4.14.0","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":"MIT","_id":"usb-detection@4.14.0","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"79edaecdbefbb60086b04c5365ba358ad586a2b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.14.0.tgz","fileCount":16,"integrity":"sha512-c98lX7+dCqQMknXAl5y/+zmL0guFNAOZCEAE01EeeSfWFYQqez/DK3tDMZN9J9whhtUKPsnHKdJeMzCeiV4t6Q==","signatures":[{"sig":"MEUCIQCFZOddnu9vw1vNFCp62rshDf1GIuPxgmwpsXyHHMIDfgIgLvBUFpHhZyiuy043aDNrBe6b9u8gkKwl3TW0YXplwck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78840,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKYm+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqEPg/7BhWLgfUYzbXp0rGaEhht+EBGpmfPuGC59WDMpmxnXfN7kfXL\r\nxf33pmu3db8jU7i9Vg4VZk2YCdkXM7lEdPuHoeE+WF7KLjUAnNXYaSwJMzeU\r\nG6mwlkTsSEHKRH8vChJk2a0Xc7xHLcX39lCNePTkfWPay5N0nvFTy8TzBsqi\r\nttyx8O6Ic1N9L1HDVk8x37jE+mv7Yj1MMrCuqoqXhZ0TRu+UphgaOj0AAzXb\r\n04n4vIfHaCl5MLCFTv37IbeccdGqsLzWiOrF/cDze9v1b2jNloG7HegRn6Zf\r\nA04zOQMNWA10+s4TEpaqW6QqYDqCQL5a8oAXS81TzSRvZhQhCsXuFdKHGyx7\r\ngM177oT79KEtqx6fsXgtneQiFOnV1C74DgFbo+aXD9XdULwr46Ffg6FXESxu\r\nC5H3OIZisT/TbMBlWd7FlLqUcyGnAwCrTf7ajnYNEuxWtyycOb+yHnMQegBm\r\npyg3fq27mdFkmcr05c5TQyzREGM+N26WXFdvlI8a/mA4Sd+1cQPA87ctMuT/\r\na54Y0fwdxABVyV5yjFo9mVRZiiMK5xaWlYOqQJhADQPFMym7BADjkgNbpcPn\r\nB0rbwC3lBcNoKIT5guMVDScXeyUIqnkEZH6U4lbPVTCzQhplba7Utg6BQciZ\r\nvSRhs3YEFJ7sHBmtjMaGm3xgxqgX70q8vyY=\r\n=oadC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"97d2dbed6dbfc428489dc0ed8ced549e69e9d57d","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","node-gyp":"node-gyp","prebuild":"npm run prebuild-node && npm run prebuild-electron","validate":"npm run lint && npm test","prebuild-node":"prebuild --force --strip --verbose -t 12.0.0 -t 14.0.0 -t 16.0.0","prepublishOnly":"npm run validate","prebuild-upload":"prebuild --upload-all","prebuild-electron":"prebuild --force --strip --verbose -r electron -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.14.16","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"14.19.0","dependencies":{"nan":"^2.15.0","bindings":"^1.5.0","eventemitter2":"^5.0.1","prebuild-install":"^7.0.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-abi":"^3.8.0","node-gyp":"^8.4.0","prebuild":"^11.0.3"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.14.0_1646889406806_0.05048879763598957","host":"s3://npm-registry-packages"}},"4.14.1":{"name":"usb-detection","version":"4.14.1","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":"MIT","_id":"usb-detection@4.14.1","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"fe0d4a28299e98b77fe75e416408ebeda38feb0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.14.1.tgz","fileCount":16,"integrity":"sha512-o9JCWXILJDXnlNhjc2abMa/9JTrARVGTjTSYNhgTa1iVJvIwuvmZ5r6hvTeAEZhndC0l1BSFdctMD6QeGwLpOw==","signatures":[{"sig":"MEUCIDkxsxlUPxniggMhqgqSTCPYUKYtewblzmqNwlKLW5j4AiEAsgpQkB80ZUFCMB4USZZiwprCfZaYfTH0r9ZBJ3mRAs4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKY3pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpKvg/+JIopUN4eTLkofIkeMHZ5LFWgHWhEpo20atFcvT7Vmf3htych\r\nT/lEPq/abgKliUtaSgJ2mOP/7OfvkiPMuApEHhGK8oroTune7XzHGsW1dbu7\r\nSp3Ea3gri6fAFbN5P6JoQ6KK+/3R5gUZsIQAGECCLvA5z7/VG+YfgOk24ERu\r\nlTda3StwfVSi+B40DYPQfyfozoxerBvIv0oAWUwKSRRdv5KKfjPZWOIHOVSC\r\n1yMTkcPrhAJL7MAB44J7lVba35c7DZV7YnOkOrAcyyDIztE3LxfBspi7NTCX\r\ngx49AnK2mW8vimOTPtG1a27NXPmgp2dU8LcwrZEP6Ty84I6205mr3+eRiE35\r\naVkrYE8JdXkMdH5VcXz3pH+PaRgnSV2ECIJk/yeo8KCxHonm7H4rzD2oc+aY\r\n6DGqXif93/o9tGiwzhPEOaA4trJKYngpvweQj6LetDUv8infV/f3LrviWGXx\r\nkZi4sycXrcy/QhWPxRjDleQFBO9pfcSjWQZMlyVkpflkMkaNrv2E6QkNszIc\r\nuC7Zofrr/p6i9Mgu69HQoS+6gSDk7ePcPJuSyqvN398hZkoUgvXc1cIK1gh4\r\nF+QHtQ1XnM3hgasuyTMd8be2TMWNsCFW0Vh6k05BD5RR2h90Yqw72VHRoArr\r\nKvJCNdDlr8BHwct+ZdF5wh/4PBF10MJhO6w=\r\n=U8zP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"b29367d8f682a34837f37ad7cf735d5c5d2c215a","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","node-gyp":"node-gyp","prebuild":"npm run prebuild-node && npm run prebuild-electron","validate":"npm run lint && npm test","prebuild-node":"prebuild --force --strip --verbose -t 12.0.0 -t 14.0.0 -t 16.0.0","prepublishOnly":"npm run validate","prebuild-upload":"prebuild --upload-all","prebuild-electron":"prebuild --force --strip --verbose -r electron -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"6.14.16","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"14.19.0","dependencies":{"nan":"^2.15.0","bindings":"^1.5.0","eventemitter2":"^5.0.1","prebuild-install":"^7.0.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-abi":"^3.8.0","node-gyp":"^8.4.0","prebuild":"^11.0.3"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.14.1_1646890473084_0.28815002230178743","host":"s3://npm-registry-packages"}},"4.14.2":{"name":"usb-detection","version":"4.14.2","keywords":["usb","device","hardware","list","insert","add","remove","change","plug","unplug","notification"],"license":"MIT","_id":"usb-detection@4.14.2","maintainers":[{"name":"anonymous","email":"adriano@raiano.ch"},{"name":"anonymous","email":"contact@ericeastwood.com"}],"homepage":"https://github.com/MadLittleMods/node-usb-detection","bugs":{"url":"https://github.com/MadLittleMods/node-usb-detection/issues"},"dist":{"shasum":"86563e7b38af6b342f579bd91c0789dc31755c85","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/usb-detection/-/usb-detection-4.14.2.tgz","fileCount":16,"integrity":"sha512-bDWuytXW3tJq/Nkr6pucIMW4QtOTgu1KHwk2g0Dk/xXRvXW+/IEMDFJdQxDwiWfz41ADvs9amZuKirD9VM0gWA==","signatures":[{"sig":"MEUCIQD2SqTzDsF7aFF9zp5WXJ/tw6tE2AT6BEXpQc8NiVVu9wIgVG+0os9H5U8tHQjP7/Rdv0eYXLgpimmSZrvwUG0Y1L4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBolWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpfag/+OeC7CQtQADma/tX0a5B8COAUWwIGP7TACwn07r7QdUzFLreE\r\nzG6XZRtgcFqUS2gKyNN2xVRW38491V+fULHj2QWEWwCMccEDWhpMeIjdvEZX\r\nNfH1YPf/dsi2n0PG8HUaVg0QbzyVFZn/Hnnulye6RYHAJ4RQGot5NhZXwkmg\r\nIh+3zjSZR+G/rm+ntDjA7wIgXSbye6+DKRpI/wDJItu0SUbBMuBSYpvN+gle\r\n/CxqzXXzeoU+eJ99Rs9A1t8daN/bRgXVA8W71XOZg+cq5dAXrP/X88KAwsdG\r\nRO55XscMqXVsXpeCAVmX8PR0EX5/NhGsfyX9ghhgc89+jhCqOyl1ddXtX3DU\r\ndKBnPEq0mKDr3gHhcCnUPo+Z7t355bsfvQU2t8IRdWPsQ1nhPZGWTFY/KmPz\r\nY1H9Sq62NTWhyjK5QLuRE34sEMHRdkAGPBkWFHI+xXtmeM638lIWxCFd73d3\r\nbxG5UytlOjIC6bKn7ZyMbXW+PVpYfojNUyh+yXT/cEsas341cyQwE+cloNAW\r\nijCFxZJvzsrvZcSTFOYZvoTv+5VKZlZYvD7Jo3WA2nyr8rCcm7zRJ5/FfRMb\r\n8YqF67XwDM9uxbVJFVaIpCKLJMRgNkVN4DR+Zdj5LrcozORmt5mxwG4GAIKd\r\n7/Zm+b3Keh/WOZVzdO8N8DUhXW9I8bBsB+4=\r\n=hszY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">=4"},"gitHead":"1e1a6d0c836dae8ad298e4b65171db4d2d22e4d2","gypfile":true,"scripts":{"lint":"eslint **/*.js","test":"jasmine ./test/test.js","install":"prebuild-install || node-gyp rebuild","rebuild":"node-gyp rebuild","node-gyp":"node-gyp","prebuild":"npm run prebuild-node && npm run prebuild-electron","validate":"npm run lint && npm test","prebuild-node":"prebuild --force --strip --verbose -t 12.0.0 -t 14.0.0 -t 16.0.0","prepublishOnly":"npm run validate","prebuild-upload":"prebuild --upload-all","prebuild-electron":"prebuild --force --strip --verbose -r electron -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0"},"_npmUser":{"name":"anonymous","email":"contact@ericeastwood.com"},"repository":{"url":"git://github.com/MadLittleMods/node-usb-detection.git","type":"git"},"_npmVersion":"8.3.1","description":"Listen to USB devices and detect changes on them.","directories":{},"_nodeVersion":"16.14.0","dependencies":{"nan":"^2.15.0","bindings":"^1.5.0","eventemitter2":"^5.0.1","prebuild-install":"^7.0.1"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","chalk":"^2.4.1","eslint":"^4.19.1","jasmine":"^3.1.0","node-abi":"^3.8.0","node-gyp":"^8.4.0","prebuild":"^11.0.3"},"_npmOperationalInternal":{"tmp":"tmp/usb-detection_4.14.2_1678149974353_0.6643120530196827","host":"s3://npm-registry-packages"}}},"name":"usb-detection","time":{"created":"2013-06-18T11:53:39.647Z","modified":"2026-04-24T23:30:10.985Z","1.0.0":"2013-06-18T11:53:43.776Z","1.0.1":"2013-07-22T09:45:54.067Z","1.0.2":"2013-07-29T06:21:18.640Z","1.0.3":"2013-09-05T05:40:52.198Z","1.1.0":"2015-05-31T05:53:12.482Z","1.2.0":"2015-08-07T11:41:59.733Z","1.3.0":"2015-10-12T01:52:54.244Z","1.4.0":"2016-03-21T01:05:00.572Z","1.4.1":"2017-11-12T00:00:40.865Z","1.4.2":"2017-11-12T05:44:36.202Z","2.0.0":"2017-12-19T09:46:59.472Z","2.0.1":"2017-12-27T20:29:27.528Z","2.1.0":"2018-02-07T04:58:51.363Z","3.0.3":"2018-05-14T17:55:01.706Z","3.1.0":"2018-06-05T15:58:31.381Z","3.2.0":"2018-07-23T18:16:04.726Z","4.0.0":"2018-09-27T20:41:32.144Z","4.1.0":"2018-11-24T19:53:23.037Z","4.2.0":"2019-05-09T21:19:49.442Z","4.3.0":"2019-05-28T03:37:14.531Z","4.4.0":"2019-10-06T22:47:17.908Z","4.5.0":"2019-10-06T23:04:12.587Z","4.6.0":"2019-11-25T00:13:05.606Z","4.7.0":"2019-11-25T01:29:20.974Z","4.9.0":"2020-04-24T02:05:46.140Z","4.10.0":"2020-07-21T07:11:58.821Z","4.13.0":"2021-10-14T05:52:02.337Z","4.14.0":"2022-03-10T05:16:46.972Z","4.14.1":"2022-03-10T05:34:33.265Z","4.14.2":"2023-03-07T00:46:14.550Z"},"readmeFilename":"README.md","homepage":"https://github.com/MadLittleMods/node-usb-detection"}