forked from node-hid/node-hid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "node-hid",
"description": "USB HID device access library",
"version": "0.5.4",
"author": "Hans Hübner <hans.huebner@gmail.com> (https://github.com/hanshuebner)",
"contributors": [
"Blake Miner <miner.blake@gmail.com>",
"Tod Kurt <todbotdotcom@gmail.com> (https://github.com/todbot)"
],
"repository": {
"type": "git",
"url": "git://github.com/node-hid/node-hid.git"
},
"scripts": {
"test": "node nodehid.js",
"prepublish": "git submodule update --init",
"install": "node-pre-gyp install --fallback-to-build",
"rebuild-all": "npm rebuild && node-gyp rebuild",
"gyppackage": "node-pre-gyp package",
"gyppublish": "node-pre-gyp publish",
"cleanbuild": "rimraf node_modules build"
},
"bin": {
"hid-showdevices": "./src/show-devices.js"
},
"binary": {
"module_name": "HID",
"module_path": "build/{configuration}/",
"host": "https://github.com/node-hid/node-hid/releases/download/",
"remote_path": "{version}"
},
"main": "./nodehid.js",
"engines": {
"node": ">=4.0.0"
},
"license": "(MIT OR X11)",
"dependencies": {
"nan": "^2.4.0",
"node-pre-gyp": "0.6.31"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"node-pre-gyp-github": "^1.3.1",
"rimraf": "^2.5.3"
},
"gypfile": true
}