-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "homebridge-ranger",
"version": "0.3.4",
"description": "A HomeKit range extender for Bluetooth Low Energy (BLE) accessories.",
"main": "src/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "mocha 'tests/unit/**/*.mocha.js'",
"release": "npm-github-release",
"scan": "DEBUG=* homebridge -D -U `cd ./tests/scan && pwd` -P `pwd`"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grover/homebridge-ranger.git"
},
"keywords": [
"HomeKit",
"BLE",
"Bluetooth",
"Range",
"Extender",
"Homebridge",
"homebridge",
"plugin",
"homebridge-plugin"
],
"author": "Michael Fröhlich",
"license": "MIT",
"bugs": {
"url": "https://github.com/grover/homebridge-ranger/issues"
},
"homepage": "https://github.com/grover/homebridge-ranger#readme",
"engines": {
"node": ">=8.9.3",
"homebridge": ">=0.4.35"
},
"dependencies": {
"ble-executor": "^0.1.0",
"buffer-shims": "^1.0.0",
"chalk": "^2.4.2",
"clone": "^2.1.2",
"curve25519-n2": "^1.1.3",
"debug": "^3.2.6",
"ed25519": "0.0.4",
"fast-srp-hap": "^1.0.1",
"hap-nodejs": "^0.4.48",
"moment": "^2.24.0",
"sequential-task-queue": "^1.2.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^4.1.0",
"npm-github-release": "^0.9.0",
"sinon": "^4.5.0"
}
}