forked from noble/noble
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"author": "Sandeep Mistry <[email protected]>",
"license": "MIT",
"name": "@k4connect/noble",
"description": "A Node.js BLE (Bluetooth Low Energy) central library.",
"version": "1.6.0-k4-3",
"repository": {
"type": "git",
"url": "https://github.com/sandeepmistry/noble.git"
},
"bugs": {
"url": "https://github.com/sandeepmistry/noble/issues"
},
"keywords": [
"bluetooth",
"BLE",
"bluetooth low energy",
"bluetooth smart",
"central"
],
"main": "./index.js",
"engines": {
"node": ">=10.16.3"
},
"os": [
"darwin",
"linux",
"win32"
],
"dependencies": {
"@abandonware/bluetooth-hci-socket": "0.5.3-3",
"debug": "4.1.1"
},
"optionalDependencies": {
"bplist-parser": "0.1.1",
"xpc-connection": "0.1.4"
},
"devDependencies": {
"jshint": "2.10.2",
"mocha": "6.2.2",
"should": "13.2.3",
"sinon": "7.5.0",
"async": "3.1.0",
"ws": "7.2.0"
},
"scripts": {
"pretest": "jshint *.js lib/. test/.",
"test": "mocha -R spec test/*.js"
},
"browser": {
"./distributed/bindings": false,
"./mac/bindings": false,
"./hci-socket/bindings": false
}
}