forked from mattdavis90/node-tado-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.9 KB
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
{
"name": "node-tado-client",
"version": "1.0.1",
"description": "A Tado client for nodejs",
"repository": {
"type": "git",
"url": "git+https://github.com/mattdavis90/node-tado-client.git"
},
"author": "Matt Davis <mattdavis90@googlemail.com>",
"contributors": [
"Arun Babu Neelicattu <arun.neelicattu@gmail.com>",
"Fabien JUIF <fabien.juif@gmail.com>"
],
"license": "MIT",
"homepage": "https://github.com/mattdavis90/node-tado-client#readme",
"bugs": {
"url": "https://github.com/mattdavis90/node-tado-client/issues"
},
"keywords": [
"tado",
"tado-api"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"build:docs": "npx typedoc",
"test": "nyc mocha --loader=tsx test/*.ts",
"format": "prettier -w -u .",
"lint": "eslint .",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.8.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/chai": "^5.2.0",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.10",
"@types/simple-oauth2": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"mocha": "^11.1.0",
"nock": "^14.0.1",
"nyc": "^17.1.0",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typedoc": "^0.27.9",
"typescript": "^5.8.2"
},
"lint-staged": {
"*": [
"prettier -w -u ."
]
},
"mocha": {
"node-option": [
"import=tsx"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}