forked from abandonware/noble
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.24 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
57
58
59
60
{
"author": "Sandeep Mistry",
"maintainers": [
"Jacob Rosenthal",
"Luis Montes",
"Pruthvikar Reddy"
],
"license": "MIT",
"name": "@pruthvikar/noble",
"description": "A Node.js BLE (Bluetooth Low Energy) central library.",
"version": "1.10.7",
"repository": {
"type": "git",
"url": "https://github.com/pruthvikar/noble.git"
},
"bugs": {
"url": "https://github.com/pruthvikar/noble/issues"
},
"keywords": [
"bluetooth",
"BLE",
"bluetooth low energy",
"bluetooth smart",
"central"
],
"main": "./index.js",
"engines": {
"node": ">=6"
},
"os": [
"darwin",
"linux",
"freebsd",
"win32"
],
"dependencies": {
"debug": "^4.1.1",
"napi-thread-safe-callback": "0.0.6",
"node-addon-api": "^1.1.0"
},
"optionalDependencies": {
"@abandonware/bluetooth-hci-socket": "^0.5.3-3"
},
"devDependencies": {
"async": "^3.1.0",
"jshint": "latest",
"mocha": "^6.2.0",
"node-gyp": "^5.0.3",
"should": "~13.2.3",
"sinon": "~7.4.2",
"ws": "^7.1.2"
},
"scripts": {
"pretest": "jshint *.js lib/. test/.",
"test": "mocha -R spec test/*.js"
},
"browser": {
"./lib/resolve-bindings.js": "./lib/resolve-bindings-web.js"
}
}