-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.45 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.45 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"dependencies": {
"@homebridge/plugin-ui-utils": "^2.1.0",
"axios": "^1.11.0",
"body-parser": "^2.2.0",
"chalk": "^5.6.2",
"compare-versions": "^6.1.1",
"crypto": "^1.0.1",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"hap-nodejs-community-types": "0.3.1",
"lodash": "^4.17.21",
"os": "0.1.2",
"portfinder-sync": "^0.0.2"
},
"devDependencies": {
"@snyk/protect": "^1.1299.0",
"@types/node": "^24.3.1",
"cheerio": "1.1.2",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"hap-nodejs": "^1.2.0",
"homebridge": "^2.0.0-beta.29",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2"
},
"description": "Hubitat plugin for HomeBridge/HomeKit",
"engines": {
"homebridge": "^1.8.5 || ^2.0.0-beta.23",
"node": "^18.20.4 || <25.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/tonesto7/homebridge-hubitat-tonesto7/#readme",
"keywords": [
"homebridge-plugin",
"hubitat",
"homekit",
"homebridge",
"category_climate",
"category_hubs",
"category_lighting"
],
"funding": {
"type": "paypal",
"url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVFJTG8H86SK8&source=url"
},
"scripts": {
"test": "eslint .",
"prettier": "prettier --write src/**/*.js",
"freeport": "npx kill-port 8000",
"start": "homebridge -P . -U .",
"start-debug": "homebridge -D -P . -U .",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"hb_cleanup_win": "rmdir /Q /S accessories && rmdir /Q /S persist"
},
"type": "module",
"main": "src/index.js",
"license": "ISC",
"name": "homebridge-hubitat-tonesto7",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/tonesto7/homebridge-hubitat-tonesto7.git"
},
"bugs": {
"url": "http://github.com/tonesto7/homebridge-hubitat-tonesto7/issues"
},
"version": "3.0.6",
"directory": "Homebridge Hubitat (Tonesto7)",
"changelog": "https://raw.githubusercontent.com/tonesto7/homebridge-hubitat-tonesto7/master/CHANGELOG.md",
"synk": true
}