-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
74 lines (74 loc) · 1.86 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
{
"name": "node-tado-client",
"version": "0.19.0",
"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/index.ts",
"format": "prettier -w -u .",
"lint": "eslint .",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.6.2",
"simple-oauth2": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/chai": "^5.0.0",
"@types/chai-as-promised": "^8.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.1",
"@types/simple-oauth2": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tsdoc": "^0.3.0",
"globals": "^15.11.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mocha": "^10.7.3",
"nock": "^13.3.8",
"nyc": "^17.1.0",
"prettier": "^3.1.0",
"tsx": "^4.19.1",
"typedoc": "^0.26.10",
"typescript": "^5.2.2"
},
"lint-staged": {
"*": [
"prettier -w -u ."
]
},
"mocha": {
"node-option": [
"import=tsx"
]
}
}