forked from node-usb/node-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"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.0",
"optionalDependencies": {
"usb-shyp-win32-x64": "1.0.0",
"usb-shyp-win32-ia32": "1.0.0",
"usb-shyp-darwin-x64": "1.0.0"
},
"engines": {
"node": ">=0.8.x"
},
"main": "./usb",
"repository": {
"type": "git",
"url": "https://github.com/nonolith/node-usb.git"
},
"scripts": {
"install": "node shyp-blacklist.js win32-x64 win32-ia32 darwin-x64 || node-gyp rebuild",
"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"
},
"dependencies": {
"bindings-shyp": "~0.2.3",
"nan": "^1.2.0"
},
"devDependencies": {
"coffee-script": "~1.6.2",
"mocha": "~1.8.2"
},
"license": "MIT"
}