-
Notifications
You must be signed in to change notification settings - Fork 185
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "bluetooth-hci-socket",
"version": "0.5.2",
"description": "Bluetooth HCI socket binding for Node.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/sandeepmistry/node-bluetooth-hci-socket.git"
},
"keywords": [
"HCI",
"Bluetooth",
"Linux",
"Windows"
],
"author": "Sandeep Mistry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandeepmistry/node-bluetooth-hci-socket/issues"
},
"homepage": "https://github.com/sandeepmistry/node-bluetooth-hci-socket",
"os": [
"linux",
"android",
"freebsd",
"win32"
],
"dependencies": {
"debug": "^2.2.0",
"nan": "^2.0.5",
"node-pre-gyp": "0.6.x"
},
"optionalDependencies": {
"usb": "^1.1.0"
},
"devDependencies": {
"jshint": "^2.8.0"
},
"scripts": {
"preinstall": "npm install node-pre-gyp",
"install": "node-pre-gyp install --fallback-to-build",
"test": "jshint lib/*.js"
},
"binary": {
"module_name": "binding",
"module_path": "./lib/binding/",
"host": "https://github.com/sandeepmistry/node-bluetooth-hci-socket/releases/download/",
"package_name": "{module_name}-{version}-{node_abi}-{platform}-{arch}.tar.gz",
"remote_path": "{version}"
}
}