-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
{
"displayName": "HomeBridge Plugin Yeelight Screen Bar Pro",
"name": "homebridge-yeelight-screen-bar-pro",
"version": "0.0.1-beta.8",
"description": "Connects your Yeelight Screen Bar Pro to HomeKit via HomeBridge",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/SR2k/homebridge-yeelight-screen-bar-pro.git"
},
"bugs": {
"url": "https://github.com/SR2k/homebridge-yeelight-screen-bar-pro/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts ./*.js",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"color-js": "^1.0.5",
"lodash": "^4.17.20",
"miio": "^0.15.6"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/lodash": "^4.14.164",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-restricted-globals": "^0.2.0",
"homebridge": "^1.2.3",
"husky": "^4.2.5",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc",
"commit-msg": "commitlint -e"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix"
]
}
}