-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
{
"name": "homebridge-comelit-platform",
"version": "2.6.12",
"author": "Pierpaolo Follia",
"repository": {
"type": "git",
"url": "https://github.com/madchicken/homebridge-comelit-hub"
},
"description": "Comelit HUB support for Homebridge: https://github.com/nfarina/homebridge",
"license": "Apache-2.0",
"keywords": [
"homebridge-plugin",
"comelit"
],
"engines": {
"node": ">12.13.0",
"homebridge": ">=1.1.0"
},
"main": "dist/index.js",
"files": [
"dist",
"config.schema.json",
"CHANGELOG.md"
],
"scripts": {
"build": "yarn clean && yarn build:ts && yarn lint",
"test": "jest --forceExit --coverage --verbose",
"watch:test": "yarn run test -- --watchAll",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"src/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src,__{tests,mocks}__}/**/*.ts\"",
"clean": "rimraf dist/"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"async-mqtt": "2.6.3",
"comelit-client": "2.3.5",
"express": "^4.18.2",
"fakegato-history": "^0.6.3",
"lodash": "4.17.21",
"mqtt": "4.3.7",
"mqtt-packet": "6.10.0",
"prom-client": "13.2.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/express-serve-static-core": "^4.17.32",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.191",
"@types/mqtt": "^2.5.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"hap-nodejs": "^0.11.0",
"homebridge": "^1.6.0",
"husky": "^4.2.3",
"jest": "^26.6.3",
"nock": "^12.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4"
}
}