-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.18 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
{
"private": false,
"displayName": "Homebridge Ecowitt Weather Sensors",
"name": "homebridge-ecowitt-weather-sensors",
"version": "2.5.1",
"description": "Complete HomeKit support for Ecowitt Weather Sensors through Homebrige",
"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.16.0 || ^22.5.1",
"homebridge": "~1.6.0 || ~1.8.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 . --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",
"ecowitt",
"fine-offset",
"ambient-weather",
"weather"
],
"dependencies": {
"body-parser": "^1.20.2",
"date-fns": "^3.6.0",
"deepmerge": "^4.3.1",
"express": "^4.21.0"
},
"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"
}
}