forked from node-hid/node-hid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "node-hid",
"description": "USB HID device access library",
"version": "2.1.1",
"author": "Hans Hübner <[email protected]> (https://github.com/hanshuebner)",
"bugs": "https://github.com/node-hid/node-hid/issues",
"homepage": "https://github.com/node-hid/node-hid#readme",
"contributors": [
"Blake Miner <[email protected]>",
"Tod Kurt <[email protected]> (https://github.com/todbot)",
"Julian Waller <[email protected]> (https://github.com/julusian)"
],
"repository": {
"type": "git",
"url": "git://github.com/node-hid/node-hid.git"
},
"scripts": {
"test": "node src/test-ci.js",
"showdevices": "node src/show-devices.js",
"prepublishOnly": "git submodule update --init",
"install": "prebuild-install --runtime napi || node-gyp rebuild",
"prebuild": "prebuild --runtime napi --all --verbose --include-regex \"HID.*node$\"",
"prebuild-upload": "prebuild --runtime napi --upload-all",
"prebuild-ci": "prebuild-ci",
"gypclean": "node-gyp clean",
"gypconfigure": "node-gyp configure",
"gypbuild": "node-gyp build",
"gyprebuild": "node-gyp rebuild",
"clean": "rimraf build node_modules prebuilds package-lock.json",
"distclean": "npm run clean && rimraf hidapi"
},
"bin": {
"hid-showdevices": "./src/show-devices.js"
},
"main": "./nodehid.js",
"binary": {
"napi_versions": [
3
]
},
"engines": {
"node": ">=10"
},
"license": "(MIT OR X11)",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^3.0.2",
"prebuild-install": "^6.0.0"
},
"devDependencies": {
"prebuild": "^10.0.1",
"rimraf": "^2.6.2"
},
"gypfile": true
}