forked from oznu/unifi-events
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1010 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
47
48
49
{
"name": "ubnt-unifi",
"description": "listen for events from and call methods on the UniFi API (Ubiquiti Wifi).",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"camo-purge": "latest",
"xo": "latest"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "camo-purge ; xo"
},
"dependencies": {
"eventemitter2": "^5.0.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"ws": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hobbyquaker/ubnt-unifi.git"
},
"keywords": [
"unifi",
"ubiquiti",
"ubnt",
"wifi",
"api",
"events"
],
"author": "hobbyquaker https://github.com/hobbyquaker",
"contributors": [
"oznu <dev@oz.nu>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/ubnt-unifi/issues"
},
"homepage": "https://github.com/hobbyquaker/ubnt-unifi#readme",
"xo": {
"space": 4,
"exclude": [
"test.js"
]
}
}