generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"displayName": "Ebeco",
"name": "@devwithimagination/homebridge-ebeco",
"version": "0.2.2",
"description": "Homebridge plugin for the Ebeco EB-Therm 500 thermostat.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dhutchison/homebridge-ebeco.git"
},
"bugs": {
"url": "https://github.com/dhutchison/homebridge-ebeco/issues"
},
"author": {
"name": "David Hutchison",
"url": "https://www.devwithimagination.com"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.8.1"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"test": "jest --coverage"
},
"keywords": [
"homebridge-plugin",
"homebridge-ebeco",
"ebeco"
],
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^16.10.9",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.56.0",
"homebridge": "^1.8.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}