forked from kosmatov/homebridge-yeelighter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.73 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
86
87
88
89
90
91
92
93
{
"name": "homebridge-yeelighter",
"displayName": "Yeelighter",
"version": "2.6.0",
"description": "Yeelight support for Homebridge with particular support of ceiling lights",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"ceiling",
"yeelight",
"xiaomi",
"homekit",
"night_mode",
"Bedside Lamp",
"Ceiling Light",
"Moonlight",
"Jiaoyue",
"YLXD42YL",
"YLXD50YL",
"YLXD01YL",
"GuangCan",
"Galaxy"
],
"author": "Thomas Kroeber",
"repository": {
"type": "git",
"url": "git://github.com/cellcortex/homebridge-yeelighter.git"
},
"bugs": {
"url": "http://github.com/cellcortex/homebridge-yeelighter/issues"
},
"engines": {
"node": ">=16.14.2",
"homebridge": "^1.6.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"config.schema.json"
],
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && npx lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint src/*.ts --fix"
]
},
"dependencies": {
"http-headers": "^3.0.2"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"homebridge": "^1.6.1",
"husky": "^7.0.4",
"jest": "^29.6.2",
"lint-staged": "^12.1.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"homepage": "https://github.com/cellcortex/homebridge-yeelighter#readme",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"clean": "rimraf ./dist",
"build": "tsc",
"pre-commit": "lint-staged",
"prepublishOnly": "run-s clean lint build",
"start": "/usr/local/bin/homebridge -D -P ../homebridge-yeelighter",
"debug": "DEBUG=* /usr/local/bin/homebridge -D -P ../homebridge-yeelighter",
"postversion": "git push --tags && yarn publish . --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
"release-commit": "standard-version -a",
"release": "standard-version -r minor && git push --follow-tags origin master && yarn npm publish",
"release-patch": "standard-version -r patch && git push --follow-tags origin master && yarn npm publish",
"release-beta": "standard-version -p beta && git push --follow-tags origin master && yarn npm publish --tag=beta"
},
"packageManager": "[email protected]"
}