-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
61
62
{
"name": "homebridge-tcc",
"version": "0.3.0",
"description": "Honeywell Total Connect Comfort support for Homebridge: https://github.com/nfarina/homebridge",
"license": "ISC",
"main": "src/index.js",
"keywords": [
"homebridge-plugin",
"tcc",
"honeywell",
"thermostat"
],
"scripts": {
"lint": "eslint --max-warnings=0 .",
"lint:fix": "eslint --fix --max-warnings=0 .",
"watch": "nodemon",
"test": "jest --detectOpenHandles",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NorthernMan54/homebridge-tcc.git"
},
"bugs": {
"url": "https://github.com/NorthernMan54/homebridge-tcc/issues"
},
"engines": {
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
"node": "^18.20.4 || ^20.15.1 || ^22.0.0"
},
"dependencies": {
"debug": "^4.3.7",
"easy-soap-request": ">=0.0.0",
"fakegato-history": "^0.6.5",
"moment": ">2.20.1",
"p-queue": "^6.6.2",
"semver": "^7.6.3",
"xml2json": ">=0.0.0",
"homebridge-lib": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^8.57.1",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.12.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "js",
"ignore": [],
"exec": "DEBUG=tcc* ~/npm/bin/homebridge -U ./test/hbConfig -T -D -P .",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
}
}
}