-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.75 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
92
93
94
95
96
97
98
99
100
{
"private": false,
"displayName": "Homebridge Ecowitt Weather Sensors",
"name": "homebridge-ecowitt-weather-sensors",
"version": "2.10.0",
"description": "Homebridge support for your Fine Offset weather station (Ecowitt, Ambient, Froggit, GoGen, and more)",
"license": "Apache-2.0",
"homepage": "https://github.com/rhockenbury/homebridge-ecowitt-weather-sensors#readme",
"icon": "https://raw.githubusercontent.com/rhockenbury/homebridge-ecowitt-weather-sensors/master/docs/assets/ecowitt-logo.png",
"funding": {
"type": "paypal",
"url": "https://www.paypal.com/donate/?business=4G6G3V4CYG2CY"
},
"repository": {
"type": "git",
"url": "git://github.com/rhockenbury/homebridge-ecowitt-weather-sensors.git"
},
"bugs": {
"url": "https://github.com/rhockenbury/homebridge-ecowitt-weather-sensors/issues"
},
"engines": {
"node": "^18.20.4 || ^20.18.0 || ^22.10.0",
"homebridge": "^1.6.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/*.ts src/**/*.ts --max-warnings=0",
"remark": "remark --use remark-validate-links ./*.md --quiet --output",
"build": "rimraf ./dist && tsc && npm link",
"test": "NODE_OPTIONS=\"--import=tsx\" mocha \"tests/**/*.spec.ts\"",
"all": "npm run lint && npm run remark && npm run build && npm run test",
"prepublishOnly": "npm run all"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"home-automation",
"hoobs",
"ecowitt",
"fine-offset",
"foshk",
"ambient",
"ambient-weather",
"froggit",
"gogen",
"misol",
"sainlogic",
"ELV",
"wittboy",
"weather",
"weather-station",
"weather-console",
"weather-sensor",
"station",
"console",
"sensor",
"sensor-array",
"gateway",
"PWS",
"home-weather-station",
"personal-weather-station",
"observations",
"temperature",
"humdity",
"AQIN",
"wind",
"rain"
],
"dependencies": {
"@network-utils/arp-lookup": "^2.1.0",
"body-parser": "^1.20.2",
"date-fns": "^3.6.0",
"deepmerge": "^4.3.1",
"express": "^4.21.0",
"telnet-client": "^2.2.5"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@types/restify": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^4.5.0",
"eslint": "^8.56.0",
"hap-nodejs": "^1.1.0",
"homebridge": "^1.8.4",
"mocha": "^10.7.3",
"mockdate": "^3.0.5",
"nodemon": "^3.1.4",
"remark-cli": "^12.0.1",
"remark-validate-links": "^13.0.1",
"rimraf": "^3.0.2",
"superagent": "^10.1.0",
"ts-node": "^9.1.1",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"winston": "^3.14.1",
"winston-transport": "^4.9.0"
}
}