forked from node-hid/node-hid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "node-hid",
"description": "USB HID device access library",
"version": "3.0.0",
"author": "Hans Hübner <hans.huebner@gmail.com> (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 <miner.blake@gmail.com>",
"Tod Kurt <todbotdotcom@gmail.com> (https://github.com/todbot)",
"Julian Waller <git@julusian.co.uk> (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": "pkg-prebuilds-verify ./binding-options.js || node-gyp rebuild",
"build": "node-gyp build",
"rebuild": "node-gyp clean configure build",
"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",
"types": "./nodehid.d.ts",
"binary": {
"napi_versions": [
4
]
},
"engines": {
"node": ">=10.16"
},
"license": "(MIT OR X11)",
"dependencies": {
"node-addon-api": "^3.2.1",
"pkg-prebuilds": "^0.2.1"
},
"devDependencies": {
"rimraf": "^2.6.2"
},
"gypfile": true,
"files": [
"nodehid.js",
"nodehid.d.ts",
"binding-options.js",
"hidapi",
"prebuilds",
"src/*.cc",
"src/*.h",
"LICENSE*",
"README.md",
"binding.gyp"
]
}