forked from jaganathanb/node-usbspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 956 Bytes
/
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
{
"name": "node-hidspy",
"version": "1.0.2",
"description": "An event based node.js c++ addon/binding to detect the hid device insertion/removal and notify the subscribed apps.",
"main": "index.js",
"scripts": {
"test": "node example/test.js",
"rebuild": "node-gyp rebuild",
"configure": "node-gyp configure"
},
"keywords": [
"hid",
"device",
"hardware",
"list",
"insert",
"add",
"remove",
"change",
"plug",
"unplug",
"notification"
],
"readme": "ReadMe.md",
"bugs": {
"url": "https://github.com/imlinhanchao/node-hidspy/issues"
},
"author": "Hancel.Lin <[email protected]>",
"homepage": "https://github.com/imlinhanchao/node-hidspy",
"license": "ISC",
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"es6-promise": "^4.2.6",
"nan": "^2.13.2",
"prebuild-install": "^2.5.3"
},
"devDependencies": {
"prebuild": "^7.6.0"
}
}