generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.26 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
{
"displayName": "MOTION Blinds",
"name": "homebridge-motionblinds",
"version": "2.0.0",
"description": "Homebridge plugin to control MOTION Blinds by Coulisse B.V. including derivative products such as OmniaBlinds.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jhurliman/homebridge-motionblinds.git"
},
"bugs": {
"url": "https://github.com/jhurliman/homebridge-motionblinds/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "yarn run build && yarn link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "yarn run lint && yarn run build"
},
"keywords": [
"homebridge-plugin"
],
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"motionblinds": "2.3.1"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"homebridge": "^1.4.1",
"nodemon": "^2.0.16",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}