forked from schuppenkarp/Hargassner_NodeJS_Adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.8 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
{
"name": "hargassner_telnet",
"version": "1.2.0",
"description": "Adapter zur Kommunikation mit einem Heizkessel des Herstellers 'Hargassner' und dessen Steuerung 'Touch Control' mittels der nicht (offiziell) dokumentierten und freigegebenen Telnet Schnittstelle direkt am Lan Anschluss des Touch-Panel der Steuerung",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --fix {lib,bin}/*.js"
},
"bin": {
"hgboiler": "./bin/hgboiler.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schuppenkarp/Hargassner_NodeJS_Adapter.git"
},
"keywords": [
"hargassner",
"telnet"
],
"author": "Michael Grabenschweiger",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/schuppenkarp/Hargassner_NodeJS_Adapter/issues"
},
"homepage": "https://github.com/schuppenkarp/Hargassner_NodeJS_Adapter#readme",
"pre-commit": [
"test",
"lint"
],
"dependencies": {
"express": "^4.21.2",
"stdio": "^2.1.3",
"textlint-filter-rule-allowlist": "^4.0.0",
"textlint-rule-alive-link": "^0.1.2",
"textlint-rule-doubled-spaces": "^1.0.2",
"textlint-rule-no-empty-section": "^1.1.0",
"textlint-rule-no-start-duplicated-conjunction": "^2.0.2",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-no-zero-width-spaces": "^1.0.1"
},
"devDependencies": {
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.7.0",
"pre-commit": "^1.0.10",
"textlint": "^14.6.0"
},
"bundledDependencies": [
"stdio"
]
}