-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "homebridge-mi-temperature-and-humidity-sensor",
"displayName": "Mi Temperature & Humidity Sensor",
"version": "1.0.5",
"description": "Homebridge plugin that exposes Mi temperature and humiditity sensors as HomeKit accessories",
"main": "dist/accessory.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "NOBLE_REPORT_ALL_HCI_EVENTS=1 rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Nick Turner",
"engines": {
"homebridge": ">=1.0.0"
},
"keywords": [
"homebridge-plugin",
"bluetooth",
"bluetooth low energy",
"mi",
"humidity",
"temperature"
],
"license": "ISC",
"files": [
"LICENSE",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/nickjturner/homebridge-mi-temperature-and-humidity-sensor"
},
"bugs": {
"url": "http://github.com/homebridge/homebridge-examples/issues"
},
"devDependencies": {
"@types/node": "10.17.19",
"homebridge": "^1.0.4",
"rimraf": "^3.0.2",
"typescript": "^3.9.10"
},
"dependencies": {
"@abandonware/noble": "^1.9.2-15"
}
}