forked from andig/fritzapi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.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
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
{
"name": "@elschnagoo/fritzapi",
"version": "0.13.8",
"author": "David Nagy <david.nagy@quinto.io>",
"description": "Home automation node API for Fritz!Box, Fritz!DECT and FRITZ!Powerline devices",
"homepage": "https://elschnagoo.github.io/fritzapi/",
"license": "MIT",
"contributors": [
{
"name": "Steffen Timm",
"email": "s.timm@nischi.net"
},
{
"name": "nischi.at",
"url": "http://www.nischelwitzer.at"
},
{
"name": "Danny Falss",
"email": "github@falss.de"
},
{
"name": "Andreas Goetz",
"email": "cpuidle@gmx.de"
}
],
"keywords": [
"Fritz!Box",
"Fritz!DECT",
"Fritz!Powerline",
"FritzBox",
"Fritz Box",
"Comet!DECT",
"Comet DECT",
"Fritz!DECT 100",
"Fritz!DECT 200",
"Fritz!DECT 210",
"Fritz!DECT 300",
"Fritz!DECT 301",
"SmartHome",
"SmartFritz",
"AHA",
"Typescript",
"Async"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Elschnagoo/fritzapi.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"buildprep": "tsc",
"test": "jest --runInBand",
"lint": "eslint src",
"coverage": "jest --runInBand --ci --collectCoverage --coverageDirectory=\"./docs/coverage\"",
"typedoc": "typedoc",
"makeDoc": "npm run typedoc && npm run coverage"
},
"dependencies": {
"axios": "^1.5.0",
"qs": "^6.11.2",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"jest-html-reporter": "^3.10.2",
"@types/node": "^20.6.0",
"@types/qs": "^6.9.8",
"@types/react": "^18.2.21",
"@types/xml2json": "^0.11.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}