This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
61 lines (61 loc) · 1.6 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
60
61
{
"name": "usb-detection",
"version": "4.14.2",
"description": "Listen to USB devices and detect changes on them.",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"scripts": {
"node-gyp": "node-gyp",
"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": "npm run prebuild-node && npm run prebuild-electron",
"prebuild-node": "prebuild --force --strip --verbose -t 12.0.0 -t 14.0.0 -t 16.0.0",
"prebuild-electron": "prebuild --force --strip --verbose -r electron -t 13.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0",
"prebuild-upload": "prebuild --upload-all",
"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": "MIT",
"engines": {
"node": ">=4"
},
"dependencies": {
"bindings": "^1.5.0",
"eventemitter2": "^5.0.1",
"nan": "^2.15.0",
"prebuild-install": "^7.0.1"
},
"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"
}
}