-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
95 lines (95 loc) · 2.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "homekit2mqtt",
"version": "1.1.2",
"description": "HomeKit to MQTT bridge",
"main": "index.js",
"bin": {
"homekit2mqtt": "./index.js"
},
"preferGlobal": true,
"engineStrict": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "camo-purge ; xo --ignore test/test.js && nyc mocha --exit test/test.js && nyc report --reporter=text-lcov | coveralls --force",
"testonly": "mocha --exit test/test.js",
"testcov": "nyc mocha --exit test/test.js",
"lint": " xo",
"lintfix": " xo --fix",
"testbridge": "node index.js -v debug --username CC:22:3D:E3:CA:10 --bridgename testbridge -m ./test/test-config.json",
"docs": "node docs/create-readme.js"
},
"author": "Sebastian 'hobbyquaker' Raff <[email protected]> (https://github.com/hobbyquaker)",
"contributors": [
"Anders Eriksson https://github.com/tvillingett",
"zino4u https://github.com/zino4u",
"tedstriker https://github.com/tedstriker",
"Erik Granlund https://github.com/erikgranlund",
"ddrd https://github.com/ddrd",
"Michael Teeuw https://github.com/MichMich",
"Dave Arter https://github.com/davea",
"Matthew Sheffield https://github.com/mattsheffiel",
"EdJoPaTo https://github.com/EdJoPaTo",
"m17design https://github.com/m17design",
"sillyfrog https://github.com/sillyfrog"
],
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"chalk": "^2.4.1",
"color-convert": "^1.9.2",
"express": "^4.16.3",
"express-basic-auth": "^1.1.5",
"font-awesome": "^4.7.0",
"free-jqgrid": "^4.15.4",
"hap-nodejs": "0.4.47",
"homebridge-camera-ffmpeg": "^0.1.8",
"jquery": "^3.3.1",
"mqtt": "^2.18.1",
"nextport": "^1.0.0",
"obj-ease": "^1.0.1",
"popper.js": "^1.14.3",
"qrcode-terminal": "^0.12.0",
"yalm": "^4.1.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"camo-purge": "latest",
"changelog": "^1.4.2",
"coveralls": "latest",
"debug": "^3.1.0",
"hap-client-cli": "latest",
"mocha": "latest",
"nyc": "latest",
"request": "^2.88.0",
"should": "latest",
"stream-splitter": "latest",
"xo": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/homekit2mqtt"
},
"keywords": [
"homekit",
"Siri",
"MQTT",
"Smart",
"Home",
"Internet",
"of",
"Things",
"IoT",
"mqtt-smarthome"
],
"bugs": {
"url": "https://github.com/hobbyquaker/homekit2mqtt/issues"
},
"homepage": "https://github.com/hobbyquaker/homekit2mqtt",
"xo": {
"space": 4,
"ignore": []
}
}