-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "homebridge-mi-humidifier",
"version": "2.4.6",
"description": "Xiaomi Mi Humidifier plugin for Homebridge",
"main": "dist/index.js",
"author": "[email protected]",
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write src",
"lint": "tsc --noEmit && eslint --ext ts src",
"watch": "tsc --watch"
},
"keywords": [
"homebridge-plugin",
"xiaomi",
"humidifier"
],
"repository": {
"type": "git",
"url": "https://github.com/russtone/homebridge-mi-humidifier.git"
},
"dependencies": {
"miio-api": "^0.4.1"
},
"engines": {
"node": ">=8.3.0",
"homebridge": ">=0.4.38"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"hap-nodejs": "^0.8.2",
"homebridge": "^1.2.3",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"files": [
"dist",
"config.schema.json"
]
}