forked from node-usb/node-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "usb",
"description": "Library to access USB devices",
"license": "MIT",
"version": "2.11.0",
"main": "dist/index.js",
"engines": {
"node": ">=12.22.0 <13.0 || >=14.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/node-usb/node-usb.git"
},
"contributors": [
{
"name": "Kevin Mehall",
"email": "[email protected]",
"url": "http://kevinmehall.net"
},
{
"name": "Tim Ryan",
"email": "[email protected]",
"url": "http://timryan.org"
},
{
"name": "Rob Moran",
"email": "[email protected]",
"url": "https://github.com/thegecko"
},
{
"name": "Christopher Klein"
}
],
"keywords": [
"usb",
"hardware"
],
"scripts": {
"install": "node-gyp-build",
"rebuild": "node-gyp rebuild",
"clean": "git clean -fx ./build ./prebuilds ./dist ./docs ./node_modules",
"compile": "tsc",
"postcompile": "eslint . --ext .ts",
"watch": "tsc -w --preserveWatchOutput",
"test": "mocha --require coffeescript/register --grep Module test/*",
"full-test": "mocha --timeout 10000 --require coffeescript/register test/*.coffee",
"valgrind": "coffee -c test/*.coffee; valgrind --leak-check=full --show-possibly-lost=no node --expose-gc --trace-gc node_modules/mocha/bin/_mocha -R spec",
"docs": "typedoc",
"prebuild": "prebuildify --napi --strip",
"prebuild-cross": "prebuildify-cross --napi --strip",
"prepublishOnly": "prebuildify-ci download",
"prebuild-download": "prebuildify-ci download"
},
"dependencies": {
"@types/w3c-web-usb": "^1.0.6",
"node-addon-api": "^7.0.0",
"node-gyp-build": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20.1.4",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"coffeescript": "^2.7.0",
"eslint": "^8.29.0",
"mocha": "^10.1.0",
"node-gyp": "^9.3.0",
"prebuildify": "^6.0.0",
"prebuildify-ci": "^1.0.5",
"prebuildify-cross": "^5.0.0",
"typedoc": "^0.22.10",
"typescript": "~4.2.4"
},
"binary": {
"napi_versions": [
8
]
}
}