-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "node-unifi",
"version": "2.5.1",
"description": "NodeJS class for querying UniFi-Controller (www.ubnt.com)",
"author": "Jens Maus <[email protected]>",
"homepage": "https://github.com/jens-maus/node-unifi",
"license": "MIT",
"keywords": [
"network",
"wifi",
"unifi",
"ubnt",
"ubiquiti"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jens-maus/node-unifi.git"
},
"dependencies": {
"axios": "1.7.9",
"eventemitter2": "^6.4.9",
"http-cookie-agent": "^6.0.8",
"tough-cookie": "^4.1.4",
"url": "^0.11.4",
"ws": "^8.18.0"
},
"devDependencies": {
"dot-prop": ">=9.0.0",
"eslint": ">=7.32.0",
"glob-parent": ">=6.0.2",
"mocha": "^10.8.2",
"pre-commit": "^1.2.2",
"should": "latest",
"braces": "^3.0.3",
"xo": "~0.39.1"
},
"xo": {
"space": 2
},
"pre-commit": [
"lintfix"
],
"main": "unifi.js",
"scripts": {
"test": "xo && mocha --colors",
"lint": "xo",
"lintfix": "xo --fix"
},
"bugs": {
"url": "https://github.com/jens-maus/node-unifi/issues"
},
"engines": {
"node": ">=14.18.0 <15.0.0 || >=16.0.0"
},
"readmeFilename": "README.md"
}