forked from node-usb/node-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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": "usb",
"description": "Library to access USB devices",
"version": "1.6.1",
"engines": {
"node": ">=6"
},
"keywords": [
"usb",
"hardware"
],
"contributors": [
{
"name": "Kevin Mehall",
"email": "km@kevinmehall.net",
"url": "http://kevinmehall.net"
},
{
"name": "Tim Ryan",
"email": "tim@technical.io",
"url": "http://timryan.org"
},
{
"name": "Christopher Klein"
}
],
"main": "./usb",
"repository": {
"type": "git",
"url": "https://github.com/tessel/node-usb.git"
},
"scripts": {
"install": "prebuild-install --verbose || node-gyp rebuild",
"prebuild": "prebuild --force --strip --verbose",
"test": "mocha --require coffeescript/register --grep Module test/*",
"full-test": "mocha --require coffeescript/register test/*",
"valgrind": "coffee -c test/usb.coffee; valgrind --leak-check=full --show-possibly-lost=no node --expose-gc --trace-gc node_modules/mocha/bin/_mocha -R spec"
},
"dependencies": {
"bindings": "^1.4.0",
"nan": "2.13.2",
"prebuild-install": "^5.3.3"
},
"resolutions": {
"**/nan": "2.13.2"
},
"devDependencies": {
"coffeescript": "~2.4.1",
"mocha": "~6.1.4",
"prebuild": "^8.2.1"
},
"license": "MIT"
}