forked from abandonware/node-bluetooth-hci-socket
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 997 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
37
38
39
40
41
42
43
44
45
46
{
"name": "@modum-io/bluetooth-hci-socket",
"version": "0.6.2",
"description": "Bluetooth HCI socket binding for Node.js",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/modum-io/node-bluetooth-hci-socket.git"
},
"keywords": [
"HCI",
"Bluetooth",
"Linux",
"Windows"
],
"author": "Sandeep Mistry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/modum-io/node-bluetooth-hci-socket/issues"
},
"homepage": "https://github.com/modum-io/node-bluetooth-hci-socket",
"os": [
"linux",
"android",
"freebsd",
"win32"
],
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"debug": "^4.3.2",
"nan": "^2.15.0"
},
"optionalDependencies": {
"usb": "^1.7.2"
},
"devDependencies": {
"jshint": "^2.13.1"
},
"scripts": {
"test": "jshint lib/*.js && node test.js"
},
"jshintConfig": {
"esversion": 6
}
}