forked from node-usb/node-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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": "usb",
"description": "Library to access USB devices",
"keywords": [
"usb",
"hardware"
],
"author": {
"name": "Nonolith Labs",
"url": "http://www.nonolithlabs.com"
},
"contributors": [
{
"name": "Kevin Mehall",
"email": "[email protected]",
"url": "http://kevinmehall.net"
},
{
"name": "Tim Ryan",
"email": "[email protected]",
"url": "http://timryan.org"
},
{
"name": "Christopher Klein"
}
],
"version": "1.0.6",
"engines": {
"node": ">=0.8.x"
},
"main": "./usb",
"repository": {
"type": "git",
"url": "https://github.com/nonolith/node-usb.git"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test": "mocha --compilers coffee:coffee-script --grep Module",
"full-test": "mocha --compilers coffee:coffee-script",
"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"
},
"binary": {
"module_name": "usb_bindings",
"module_path": "./src/binding",
"host": "https://tessel-builds.s3-us-west-2.amazonaws.com",
"remote_path": "./pre-gyp/{name}/v{version}"
},
"dependencies": {
"node-pre-gyp": "git+https://github.com/mapbox/node-pre-gyp.git#c88d6a04",
"nan": "^1.6.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"coffee-script": "~1.6.2",
"mocha": "~1.8.2",
"aws-sdk": "~2.0.0-rc.15"
},
"license": "MIT"
}