forked from lesander/fritzbox.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 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
{
"name": "fritzbox.js",
"version": "2.0.1",
"author": "@lesander",
"description": "The most powerful Fritz!Box API for NodeJS.",
"homepage": "https://git.io/fritzbox",
"license": "MIT",
"contributors": [],
"keywords": [
"Fritz!Box",
"Fritz!DECT",
"Fritz!Powerline",
"FritzBox",
"FritzBox.js",
"Fritz Box",
"Comet!DECT",
"Comet DECT",
"Dect 100",
"Dect 200",
"Dect 210",
"SmartHome",
"SmartFritz",
"AHA",
"API"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lesander/fritzbox.js.git"
},
"main": "index.js",
"scripts": {
"test": "standard",
"local-test": "test/ci.sh",
"build-docs": "documentation build --github --sort-order=alpha --output=docs/api --format=html src/**",
"watch-docs": "documentation serve --watch --sort-order=alpha src/**"
},
"dependencies": {
"crypto": "^0.0.3",
"csvjson": "^3.0.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"xml-to-json-promise": "^0.0.3",
"xml2js": "^0.4.17"
},
"devDependencies": {
"standard": "^8.6.0"
},
"standard": {
"ignore": [
"/docs/**"
]
},
"options": {
"protocol": "https",
"server": "fritz.box",
"username": "xxx",
"password": "xxx",
"callmonitorport": "1012",
"debug": false
}
}