-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "homebridge-comelit-sb-platform",
"version": "2.3.6",
"author": "Pierpaolo Follia",
"repository": {
"type": "git",
"url": "https://github.com/madchicken/homebridge-comelit-sb"
},
"description": "Comelit Serial Bridge support for Homebridge: https://github.com/nfarina/homebridge",
"license": "Apache-2.0",
"keywords": [
"homebridge-plugin",
"comelit",
"serial bridge"
],
"engines": {
"node": ">12.13.0",
"homebridge": ">=1.1.0"
},
"main": "dist/index.js",
"files": [
"dist",
"config.schema.json"
],
"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": {
"comelit-client": "2.4.2",
"lodash": "4.17.21",
"typescript": "4.8.2"
},
"devDependencies": {
"@types/lodash": "^4.14.184",
"@types/node": "^16.11.58",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"homebridge": "^1.4.1",
"husky": "^4.3.7",
"jest": "^24.9.0",
"nock": "^12.0.3",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2",
"rimraf": "^3.0.2"
}
}