-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
37 lines (37 loc) · 958 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": "node-beacon-scanner",
"version": "0.2.2",
"description": "The node-beacon-scanner is a Node.js module which allows you to scan BLE beacon packets and parse the packet data. This module supports iBeacon, Eddystone, and Estimote.",
"main": "./lib/scanner.js",
"files": [
"lib"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Eddystone",
"iBeacon",
"Estimote",
"BLE",
"Bluetooth Low Energy",
"Bluetooth smart",
"Bluetooth",
"IoT",
"Internet of Things"
],
"homepage": "https://github.com/futomi",
"author": "Futomi Hatano <[email protected]> (https://github.com/futomi)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/futomi/node-beacon-scanner.git"
},
"readmeFilename": "README.md",
"dependencies": {
"@abandonware/noble": ">=1.9.2-5"
}
}