-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.34 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-deebotecovacs",
"version": "1.4.8",
"author": "Nicolas Dujardin",
"description": "Publish your deebot ecovacs as an homekit accessory",
"main": "index.js",
"scripts": {
"test": "node index.js && echo \"No syntax errors! (node $(node -v))\""
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/nicoduj/homebridge-deebotecovacs.git"
},
"engines": {
"homebridge": ">=0.4.50",
"node": ">=10.20.0"
},
"keywords": [
"homebridge-plugin",
"deebot",
"sucks",
"ecovacs",
"vacuum",
"homekit"
],
"dependencies": {
"ecovacs-deebot": ">=0.7.2",
"node-machine-id": "^1.1.12"
},
"bugs": {
"url": "https://github.com/nicoduj/homebridge-deebotecovacs/issues"
},
"homepage": "https://github.com/nicoduj/homebridge-deebotecovacs#readme",
"devDependencies": {
"husky": "^3.1.0",
"prettier": "2.0.0",
"pretty-quick": "^2.0.2"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nicoduj/"
},
{
"type": "paypal",
"url": "https://www.paypal.me/nicoduj/"
}
]
}