This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.52 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
{
"private": false,
"displayName": "Slide Shutter",
"name": "homebridge-slide-shutter",
"version": "1.0.6",
"description": "Homebridge plugin for Slide by Innovation in Motion.",
"author": "Bram Smulders <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/bram-is/homebridge-slide-shutter.git"
},
"bugs": {
"url": "https://github.com/bram-is/homebridge-slide-shutter/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=10",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"Slide",
"Innovation in Motion",
"curtain",
"shutter",
"homekit"
],
"dependencies": {
"jsonwebtoken": "^8.5.1",
"poll": "^2.0.1",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"homebridge": "^1.3.5",
"nodemon": "^2.0.14",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"funding": [
{
"type": "github",
"url": "https://www.github.com/sponsors/bramsmulders"
},
{
"type": "paypal",
"url": "https://www.paypal.me/smuldersbram/EUR"
}
]
}