forked from MadLittleMods/node-usb-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "usb-detection",
"version": "4.5.0",
"description": "Listen to USB devices and detect changes on them.",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"prepublishOnly": "npm run validate",
"lint": "eslint **/*.js",
"validate": "npm run lint && npm test",
"test": "jasmine ./test/test.js",
"prebuild": "prebuild --all --strip --verbose",
"rebuild": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git://github.com/MadLittleMods/node-usb-detection.git"
},
"keywords": [
"usb",
"device",
"hardware",
"list",
"insert",
"add",
"remove",
"change",
"plug",
"unplug",
"notification"
],
"homepage": "https://github.com/MadLittleMods/node-usb-detection",
"bugs": {
"url": "https://github.com/MadLittleMods/node-usb-detection/issues"
},
"license": {
"type": "MIT",
"url": "https://raw.github.com/MadLittleMods/node-usb-detection/master/licence"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"bindings": "^1.3.0",
"eventemitter2": "^5.0.1",
"nan": "^2.13.2",
"prebuild-install": "^5.1.0"
},
"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"
}
}