-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1005 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
{
"name": "@oddbit/unifi",
"version": "2.0.1",
"description": "Unifi API client library",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"watch": "tsc -w -p .",
"build": "tsc -p .",
"test": "echo \"Warning: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oddbit/unifi-js.git"
},
"keywords": [
"UBNT",
"UniFi",
"Guest portal",
"Hotspot",
"Wifi"
],
"author": "Dennis Alund <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oddbit/unifi-js/issues"
},
"homepage": "https://github.com/oddbit/unifi-js#readme",
"devDependencies": {
"@types/request-promise": "^4.1.38",
"@types/set-cookie-parser": "0.0.2",
"@types/tough-cookie": "^2.3.1",
"typescript": "^2.5.3"
},
"dependencies": {
"request": "^2.82.0",
"request-promise": "^4.2.2",
"set-cookie-parser": "^2.0.0",
"tough-cookie": "^2.3.3"
}
}