-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "daikin-controller",
"version": "2.1.0",
"description": "Control Daikin Air Conditioner devices using nodejs",
"author": "Ingo Fischer <[email protected]>",
"contributors": [],
"homepage": "",
"license": "MIT",
"keywords": [
"Daikin",
"Air Conditioner"
],
"repository": {
"type": "git",
"url": "https://github.com/Apollon77/daikin-controller"
},
"dependencies": {
"node-rest-client": "^3.1.1",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.6.0",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chai": "^4.3.10",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"istanbul": "^0.4.5",
"jest": "^29.7.0",
"nock": "^13.4.0",
"prettier": "^3.1.0",
"sinon": "^17.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2",
"ts-node": "^10.9.1"
},
"bugs": {
"url": "https://github.com/Apollon77/daikin-controller/issues"
},
"main": "lib/index.js",
"scripts": {
"lint-fix-all": "eslint ./src/{*.ts,*.js} --fix --no-error-on-unmatched-pattern",
"jest-coverage": "jest --coverage",
"test": "npm run jest-coverage",
"quickTestLocalNetwork": "ts-node QuickLocalTest/QuickTestLocalNetwork.ts",
"build": "tsc",
"release": "release-script",
"prettier": "prettier -u -w src QuickLocalTest test",
"prepare": "npm run build"
}
}