-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
109 lines (109 loc) · 2.92 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "unifi-client",
"version": "0.11.0",
"main": "lib/index.js",
"description": "NodeJs client for Unifi products (https://www.ui.com/)",
"scripts": {
"debug": "tsc && node -r source-map-support/register ./lib/test.js",
"start": "node -r source-map-support/register ./lib/test.js",
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"test:CI": "jest --ci",
"test:CI:coverage": "jest --ci --coverage",
"generate:nockFixtures": "cross-env JEST_RECORD=true NOCK_OFF=true npm run test && git add tests",
"generate:data": "ts-node tests/datas/generateDatas.ts",
"watch": "jest --env=jsdom --watch",
"prepare": "husky install",
"lint": "eslint -f unix \"src/**\"",
"lint:fix": "npm run lint --fix",
"ci:eslint": "npm run lint -- -f json -o ./coverage/eslint-report.json",
"ci:generate:documentation": "typedoc",
"prepublishOnly": "npm run build",
"scan_baddwords": "ts-node .github/scripts/scanForBadWords.ts ./tests/nockFixtures/**/*.json"
},
"bugs": {
"url": "https://github.com/thib3113/unifi-client/issues"
},
"keywords": [
"unifi",
"ubiquiti",
"unifi-controller",
"unifi-websockets",
"unifi-events",
"Ubiquiti Networks",
"ubnt",
"network",
"UDR",
"UDM",
"UDM pro",
"cloud-key",
"websockets"
],
"author": {
"email": "[email protected]",
"name": "Thibaut severac"
},
"repository": {
"type": "git",
"url": "https://github.com/thib3113/unifi-client.git"
},
"license": "MIT",
"engines": {
"node": ">= 14"
},
"dependencies": {
"axios": "1.7.4",
"axios-curlirize": "1.3.7",
"cookie": "0.7.0",
"debug": "4.3.4",
"jsonwebtoken": "9.0.2",
"semver": "7.5.4",
"set-cookie-parser": "2.6.0",
"ws": "8.17.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@types/cookie": "0.5.4",
"@types/debug": "4.1.12",
"@types/jest": "29.5.12",
"@types/moxios": "0.4.17",
"@types/node": "20.9.2",
"@types/set-cookie-parser": "2.4.6",
"@types/ws": "8.5.9",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-tsdoc": "0.2.17",
"glob": "10.3.10",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-node": "29.7.0",
"jest-sonar": "0.2.16",
"moxios": "0.4.0",
"nock": "13.3.8",
"prettier": "3.1.0",
"source-map-support": "0.5.21",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typedoc": "0.25.12",
"typescript": "5.4.2",
"uuid": "9.0.1"
},
"funding": [
{
"type": "github",
"url": "https://github.com/thib3113/unifi-client"
},
{
"type": "individual",
"url": "https://paypal.me/thib3113"
}
]
}