-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "kobold2mqtt",
"version": "0.0.0-development",
"description": "vorwerk vk200 to mqtt bridge for mqtt-smarthome",
"main": "kobold2mqtt.js",
"preferGlobal": true,
"bin": "./kobold2mqtt.js",
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true,
"scripts": {
"test": "",
"start": "node ./kobold2mqtt.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/krambox/kobold2mqtt.git"
},
"bugs": {
"url": "https://github.com/krambox/kobold2mqtt/issues"
},
"keywords": [
"mqtt",
"smarthome",
"vorwerk",
"vk200"
],
"author": "Kai Kramer",
"license": "MIT",
"homepage": "https://github.com/krambox/kobold2mqtt#readme",
"dependencies": {
"mqtt": "^3.0.0",
"node-kobold": "^0.1.3",
"yalm": "^4.1.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"semantic-release": "^15.13.31",
"semistandard": "^14.2.0",
"semistandard-format": "^3.0.0"
},
"pre-commit": [
"test"
]
}