-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
46 lines (46 loc) · 956 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
44
45
46
{
"name": "unifi2mqtt",
"version": "1.1.0",
"description": "Connect Ubiquiti UniFi controller to MQTT",
"main": "index.js",
"bin": {
"unifi2mqtt": "index.js"
},
"preferGlobal": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "camo-purge ; xo"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/unifi2mqtt"
},
"keywords": [
"mqtt",
"smarthome",
"unifi",
"ubiquiti",
"clients"
],
"author": "Sebastian Raff <[email protected]> (https://github.com/hobbyquaker)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/unifi2mqtt/issues"
},
"homepage": "https://github.com/hobbyquaker/unifi2mqtt",
"dependencies": {
"mqtt": "^2.18.3",
"ubnt-unifi": "^1.0.0",
"yalm": "^4.1.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"camo-purge": "latest",
"xo": "^0.21.1"
},
"xo": {
"space": 4
}
}