-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1 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
{
"name": "@rev-robotics/expansion-hub-ftdi",
"version": "1.0.7",
"author": "REV Robotics",
"description": "Puts USB-connected Expansion Hubs into firmware update mode",
"license": "MIT",
"main": "dist/binding.js",
"types": "dist/binding.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/REVrobotics/node-expansion-hub-ftdi.git"
},
"dependencies": {
"node-addon-api": "^6.0.0",
"node-gyp-build": "^4.6.0"
},
"devDependencies": {
"@types/node": "^16.18.18",
"node-gyp": "^9.3.1",
"prebuildify": "^5.0.1",
"typescript": "^5.0.2"
},
"scripts": {
"install": "node-gyp-build",
"prepublishOnly": "tsc && prebuildify --napi",
"pretest": "node-gyp-build && tsc",
"test": "node --napi-modules test/test_binding.js"
},
"engines": {
"node": ">=12.0.0"
},
"binary": {
"napi_versions": [
3
]
},
"gypfile": true
}