forked from programmarchy/node-bluetooth-serial-port
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 954 Bytes
/
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
{ "name" : "bluetooth-serial-port"
, "version" : "1.0.6-SNAPSHOT"
, "description" : "Bluetooth serial port communication for Node.js"
, "author": "Eelco Cramer <[email protected]>"
, "keywords" :
[ "bluetooth"
, "serial port"
, "rfcomm"
, "linux"
, "os x"
, "windows"
]
, "homepage" : "https://github.com/eelcocramer/node-bluetooth-serial-port"
, "bugs" : "https://github.com/eelcocramer/node-bluetooth-serial-port/issues"
, "repository" :
{ "type" : "git"
, "url" : "https://github.com/eelcocramer/node-bluetooth-serial-port"
}
, "directories" :
{ "lib" : "./lib"
}
, "main" : "./lib/bluetooth-serial-port.js"
, "os": [ "darwin", "linux", "win32" ]
, "dependencies" :
{ "bindings" : "1.1.x"
}
, "engines" :
{ "node" : ">= 0.8.x"
, "npm" : ">= 1.1.x"
}
, "scripts":
{ "install": "node-gyp configure build"
}
, "license": "BSD-2-Clause"
, "contributors": ["Eric Smekens", "Juho Vepsäläinen", "Elmar Langholz"]
}