-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
69 lines (69 loc) · 1.54 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
{
"name": "hm2mqtt",
"version": "2.5.0",
"description": "Interface between Homematic and MQTT",
"main": "index.js",
"bin": {
"hm2mqtt": "./index.js"
},
"preferGlobal": true,
"scripts": {
"test": "camo-purge ; xo && nyc mocha --exit test.js && nyc report --reporter=text-lcov | coveralls --force",
"testonly": "mocha --exit test.js",
"lint": "xo",
"lintfix": "xo --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/hm2mqtt.js"
},
"keywords": [
"mqtt",
"smarthome",
"homematic",
"bidcos",
"eq-3"
],
"author": "Sebastian Raff <[email protected]> (https://hobbyquaker.github.io)",
"contributors": [
"RF77 (https://github.com/RF77)",
"Simon Christmann (https://github.com/dersimn)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/hm2mqtt.js/issues"
},
"homepage": "https://github.com/hobbyquaker/hm2mqtt.js",
"dependencies": {
"async": "^2.6.1",
"binrpc": "^3.2.1",
"homematic-xmlrpc": "^1.0.2",
"mqtt": "^2.18.1",
"persist-json": "^1.2.0",
"request": "^2.87.0",
"yalm": "^4.1.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"camo-purge": "latest",
"coveralls": "latest",
"hm-simulator": "latest",
"mocha": "latest",
"nyc": "latest",
"stream-splitter": "latest",
"xo": "latest",
"should": "latest"
},
"engines": {
"node": ">=6.0.0"
},
"yargs": {
"boolean-negation": false
},
"xo": {
"space": 4,
"ignore": [
"test.js"
]
}
}