-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "winusb-driver-generator",
"version": "2.1.5",
"main": "index.js",
"description": "Associate a USB vendor/product ID pair with WinUSB",
"homepage": "https://github.com/resin-io-modules/winusb-driver-generator",
"repository": {
"type": "git",
"url": "git://github.com/resin-io-modules/winusb-driver-generator.git"
},
"keywords": [
"winusb",
"wdi",
"driver",
"usb"
],
"scripts": {
"flowzone-preinstall": "pip install cpplint",
"configure": "node-gyp configure",
"build-windows": "node-gyp rebuild",
"build": "echo npm run build-windows",
"rebuild": "prebuild-install --runtime napi || node-gyp rebuild",
"lint-js": "eslint *.js",
"lint-cpp": "cpplint --recursive src",
"lint": "npm run lint-js && npm run lint-cpp",
"test-windows": "npm run lint",
"test": "echo npm run test-windows",
"install": "prebuild-install --runtime napi || node-gyp rebuild",
"prebuilds": "prebuild --runtime napi"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"os": [
"win32"
],
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^8.31.0",
"mocha": "^10.2.0",
"prebuild": "^11.0.4"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.1.1"
},
"gypfile": true,
"bugs": {
"url": "https://github.com/resin-io-modules/winusb-driver-generator/issues"
},
"engines": {
"node": ">=16 < 19"
},
"versionist": {
"publishedAt": "2024-07-23T23:17:46.618Z"
}
}