-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
74 lines (74 loc) · 1.6 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
{
"name": "homebridge-yeelight-wifi",
"version": "0.0.0-development",
"description": "Homebridge plugin for YeeLight bulbs & lamps.",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"yeelight",
"ceiling"
],
"repository": {
"type": "git",
"url": "git://github.com/vieira/homebridge-yeelight-wifi.git"
},
"author": {
"name": "vieira"
},
"bugs": {
"url": "http://github.com/vieira/homebridge-yeelight-wifi/issues"
},
"contributors": [
{
"name": "Oleksandr Boichenko",
"email": "banzalik@gmail.com",
"url": "http://github.com/banzalik"
},
{
"name": "Andrey Okonetchnikov",
"email": "andrey@okonet.ru",
"url": "http://github.com/okonet"
}
],
"dependencies": {},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-plugin-import": "^2.28.1",
"husky": ">=8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2"
},
"engines": {
"node": ">=16.16.0",
"homebridge": ">=1.3.0"
},
"scripts": {
"prepare": "husky install",
"start": "DEBUG=Yeelight homebridge -D -R -P . -U ./homebridge",
"format": "prettier --write \"**/*.{js,md}\"",
"posttest": "npm run format"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,md}": "prettier --write"
}
}