-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
63
64
65
66
67
68
69
70
71
72
{
"private": false,
"strictNullChecks": false,
"name": "homebridge-alphaess",
"version": "2.131.0",
"description": "Homebridge Alpha ESS plugin",
"license": "Apache License",
"keywords": [
"homebridge-plugin",
"alpha ess",
"energy",
"smart energy"
],
"repository": {
"type": "git",
"url": "https://github.com/zerwuff/homebridge-alphaess.git"
},
"bugs": {
"url": "https://github.com/zerwuff/homebridge-alphaess/issues"
},
"engines": {
"node": ">=18.15.0 || >=20.7.0",
"homebridge": ">=1.3.5"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/zerwuff"
},
{
"type": "paypal",
"url": "https://paypal.me/jenshalde"
}
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"date-fns": "^2.23.0",
"jackson-js": "^1.1.0",
"mqtt": "^4.3.7",
"request": "^2.88.2",
"sharp": "^0.32.0",
"tibber-api": "^5.1.8",
"vega": "^5.24.0",
"vega-lite": "^5.6.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^16.10.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"homebridge": "^1.3.5",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.4",
"moq.ts": "^10.0.8",
"mqtt": "^4.3.7",
"msw": "^2.4.3",
"nodemon": "^3.1.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}