-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "homebridge-mi-smart-plug",
"version": "1.2.1",
"description": "Homebridge plugin for Xiaomi Mi Smart Plug",
"main": "dist/accessory.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"watch": "tsc -w",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gergely Andras Szabo <[email protected]>",
"engines": {
"homebridge": ">=1.0.0"
},
"keywords": [
"homebridge-plugin"
],
"license": "MIT",
"files": [
"LICENSE",
"dist",
"config.schema.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/szaboge/homebridge-mi-smart-plug.git"
},
"bugs": {
"url": "http://github.com/szaboge/homebridge-mi-smart-plug/issues"
},
"homepage": "https://github.com/szaboge/homebridge-mi-smart-plug#readme",
"devDependencies": {
"@types/node": "14.14.44",
"@types/validator": "^13.1.3",
"homebridge": "^1.3.4",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"dependencies": {
"miio": "^0.15.6",
"validator": "^13.6.0"
}
}