-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 941 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
{
"name": "noble-device",
"version": "1.4.1",
"description": "A Node.js lib to abstract BLE (Bluetooth Low Energy) peripherals, uses noble",
"main": "index.js",
"scripts": {
"pretest": "jshint *.js lib/. examples/.",
"test": "mocha -R spec test/."
},
"repository": {
"type": "git",
"url": "https://github.com/mbientlab/noble-device.git"
},
"keywords": [
"noble",
"BLE",
"Bluetooth Low Energy",
"Bluetooth Smart",
"Bluetooth 4.0"
],
"author": "Sandeep Mistry <sandeep.mistry@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbientlab/noble-device/issues"
},
"homepage": "https://github.com/mbientlab/noble-device",
"devDependencies": {
"async": "~2.6.4",
"jshint": "~2.9.5",
"mocha": "^8.2.1",
"should": "~3.1.3"
},
"dependencies": {
"@abandonware/bluetooth-hci-socket": "^0.5.3-6",
"@abandonware/noble": "^1.9.2-10"
}
}