-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "homebridge-tempo",
"version": "1.1.1",
"description": "Un plugin pour les abonnés à la formule Tempo d'EDF - RTE. A Homebridge plugin for EDF Tempo (French electricity provider pricing plan named Tempo)",
"main": "dist/dynamic-platform.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Christophe Bansart <christophe.bansart@kdetude.com>",
"homepage": "https://github.com/chrisbansart/homebridge-tempo",
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/ChrisBansart"
},
{
"type": "patreon",
"url": "https://www.patreon.com/bansart"
}
],
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"keywords": [
"homebridge-plugin",
"tempo",
"edf"
],
"license": "ISC",
"files": [
"LICENSE",
"dist",
"config.schema.json"
],
"repository": {
"type": "git",
"url": "https://github.com/chrisbansart/homebridge-tempo.git"
},
"bugs": {
"url": "https://github.com/chrisbansart/homebridge-tempo/issues"
},
"devDependencies": {
"@types/node": "16.11.7",
"homebridge": "^1.6.1",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.7.9",
"moment-timezone": "^0.5.46"
}
}