forked from node-hid/node-hid
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "@trustcrypto/node-hid",
"description": "USB HID device access library",
"version": "0.0.3",
"author": "Hans Hübner <[email protected]> (https://github.com/hanshuebner)",
"bugs": {
"url": "https://github.com/trustcrypto/node-hid/issues"
},
"homepage": "https://github.com/trustcrypto/node-hid#readme",
"contributors": [
"Blake Miner <[email protected]>",
"Tod Kurt <[email protected]> (https://github.com/todbot)"
],
"repository": {
"type": "git",
"url": "git://github.com/trustcrypto/node-hid.git"
},
"scripts": {
"test": "node src/test-ci.js",
"showdevices": "node src/show-devices.js",
"prepublish": "git submodule update --init",
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild --all --verbose --include-regex \"HID.*node$\"",
"prebuild-upload": "prebuild --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",
"engines": {
"node": ">=6.0.0"
},
"license": "Apache-2.0",
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.13.2",
"prebuild-install": "^5.3.0"
},
"devDependencies": {
"node-abi": "^2.8.0",
"prebuild": "^8.2.1",
"prebuild-ci": "^2.3.0",
"rimraf": "^2.6.2"
},
"gypfile": true
}