-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "homebridge-wiser",
"version": "2.1.3",
"description": "C-Bus Wiser plugin for homebridge: https://github.com/homebridge/homebridge",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"homebridge-plugin"
],
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/paulw11/homebridge-wiser.git"
},
"homepage": "https://github.com/paulw11/homebridge-wiser#readme",
"bugs": {
"url": "http://github.com/paulw11/homebridge-wiser/issues"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"dependencies": {
"got": "^11.8.5",
"node-xml-stream": "^1.0.2",
"xml2js": "^0.4.23"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/paulw11"
},
{
"type": "paypal",
"url": "https://paypal.me/paulwilko"
}
],
"devDependencies": {
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"homebridge": "^1.3.1",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
}
}