-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "homebridge-mi-hygrothermograph",
"version": "3.4.3",
"description": "Homebridge plugin for Xiaomi Mi Bluetooth Temperature and Humidity Sensor",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=cobertura",
"lint": "eslint ."
},
"author": "Hannes Ljungberg",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"homekit",
"xiaomi",
"temperature",
"humidity",
"bluetooth"
],
"repository": {
"type": "git",
"url": "https://github.com/hannseman/homebridge-mi-hygrothermograph"
},
"bugs": {
"url": "https://github.com/hannseman/homebridge-mi-hygrothermograph/issues"
},
"homepage": "https://github.com/hannseman/homebridge-mi-hygrothermograph#readme",
"files": [
"index.js",
"config-sample.json",
"config.schema.json",
"lib/",
"test/"
],
"engines": {
"homebridge": ">=0.4.0",
"node": ">=16.0.0"
},
"dependencies": {
"@stoprocent/noble": "1.18.2",
"fakegato-history": "^0.6.4",
"mqtt": "^4.3.8"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"proxyquire": "^2.1.3",
"sinon": "^13.0.1"
}
}