-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.13 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
{
"name": "homebridge-tion",
"version": "1.0.23",
"description": "Homebridge plugin to control Tion breezers",
"main": "./dist/index.js",
"config": {
"ghooks": {
"pre-commit": "npm run type-check && npm run lint && npm run test"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write --config ./.prettierrc",
"tslint --fix --project ./tsconfig.json"
]
},
"scripts": {
"dev": "ttsc -w",
"type-check": "ttsc --skipLibCheck --noEmit",
"lint": "tslint 'src/**/*.ts' --project ./tsconfig.json",
"lint-fix": "tslint 'src/**/*.ts' --project ./tsconfig.json --fix",
"prettier": "prettier --write --config ./.prettierrc src/**/*.ts",
"test": "jest",
"build": "ttsc",
"preversion": "npm run type-check && npm run lint && npm run test && npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/break-pointer/homebridge-tion.git"
},
"keywords": [
"homebridge-plugin",
"tion",
"o2",
"3s",
"breezer",
"air",
"purifier",
"co2",
"sensor",
"temperature",
"humidity"
],
"author": "Ilya Ruzakov (ilya.ruzz@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/break-pointer/homebridge-tion/issues"
},
"homepage": "https://github.com/break-pointer/homebridge-tion#readme",
"engines": {
"node": ">=8.10.0",
"homebridge": ">=0.4.45"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"src"
]
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^12.20.43",
"@types/node-fetch": "^2.5.12",
"ghooks": "^2.0.4",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.5.1",
"ts-jest": "^26.5.6",
"ts-node": "^8.10.2",
"ts-transformer-imports": "^0.4.3",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"ttypescript": "^1.5.13",
"typescript": "^4.5.5"
},
"dependencies": {
"node-fetch": "^2.6.7"
}
}