forked from noble/noble-device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 885 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
{
"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/sandeepmistry/noble-device.git"
},
"keywords": [
"noble",
"BLE",
"Bluetooth Low Energy",
"Bluetooth Smart",
"Bluetooth 4.0"
],
"author": "Sandeep Mistry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandeepmistry/noble-device/issues"
},
"homepage": "https://github.com/sandeepmistry/noble-device",
"devDependencies": {
"jshint": "~2.4.4",
"mocha": "~1.17.1",
"should": "~3.1.3",
"async": "~0.7.0"
},
"dependencies": {
"noble": "^1.7.0"
}
}