-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1018 Bytes
/
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
{
"name": "evohome2mqtt",
"version": "0.0.0-development",
"description": "Send the status of your evohome system to mqtt. Inspired on https://github.com/mqtt-smarthome",
"main": "index.js",
"bin": {
"evohome2mqtt": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "npx standard && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/svrooij/evohome2mqtt.git"
},
"keywords": [
"evohome",
"mqtt",
"home automation",
"mqtt-smarthome",
"honeywell"
],
"author": "Stephan van Rooij <[email protected]> (https://svrooij.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/svrooij/evohome2mqtt/issues"
},
"homepage": "https://github.com/svrooij/evohome2mqtt#readme",
"dependencies": {
"@svrooij/evohome": "^1.0.2",
"mqtt": "^4.2.6",
"yalm": "^4.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"standard": "^14.3.1"
},
"pre-commit": [
"test"
]
}