generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.55 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
60
{
"displayName": "Homebridge Govee Thermometer Hygrometer",
"name": "homebridge-plugin-govee",
"version": "1.2.7",
"description": "Homebridge plugin for Govee H5xxx Bluetooth Thermometer Hygrometer.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/asednev/homebridge-plugin-govee.git"
},
"bugs": {
"url": "https://github.com/asednev/homebridge-plugin-govee/issues"
},
"engines": {
"node": ">=12.18.3",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && nodemon",
"build": "rimraf ./dist && tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"preversion": "npm run lint && npm run test:ci",
"version": "npm run build && git add -A dist",
"prepublishOnly": "npm run lint && npm run test:ci && npm run build"
},
"keywords": [
"homebridge-plugin",
"Govee",
"H5072",
"H5074",
"H5075",
"H5101",
"H5102",
"H5179"
],
"dependencies": {
"@abandonware/noble": "1.9.2-15",
"govee-bt-client": "1.0.14"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^16.11.49",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"homebridge": "^1.3.9",
"husky": "^5.1.3",
"ini": ">=1.3.6",
"jest": "^26.6.3",
"nodemon": "^2.0.13",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^10.3.0",
"typescript": "^4.7.4"
}
}