forked from marcsowen/homebridge-homematicip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "homebridge-homematicip",
"version": "1.1.0-beta.1",
"description": "Homematic IP plugin for homebridge",
"license": "Apache-2.0",
"author": "Marc Sowen <marc@sowen.net>",
"keywords": [
"homebridge-plugin",
"homekit",
"homematic",
"homematicip",
"hmip"
],
"repository": {
"type": "git",
"url": "https://github.com/marcsowen/homebridge-homematicip"
},
"bugs": {
"url": "https://github.com/marcsowen/homebridge-homematicip/issues"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "pnpm run build && pnpm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "pnpm run lint && pnpm run build"
},
"engines": {
"node": ">=16.0.0",
"homebridge": ">=1.0.0"
},
"devDependencies": {
"@types/node": "^18.8.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"abort-controller": "^3.0.0",
"eslint": "^8.24.0",
"homebridge": "^1.5.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"bottleneck": "^2.19.5",
"fakegato-history": "^0.6.3",
"moment": "^2.29.4",
"node-fetch": "3.0.0-beta.9",
"semver": "^7.3.7",
"ws": "^8.9.0"
}
}