-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "homebridge-mysmartrollershades-bridge",
"displayName": "Homebridge MySmartRollerShades Bridge",
"version": "0.3.0",
"description": "!!Work in progress!! Homebrige plugin for mysmartrollershades (using hardware bridge)",
"keywords": [
"homebridge-plugin",
"mysmartrollershades",
"tiltsmarthome",
"category-hubs",
"category-climate"
],
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"prompt": "^1.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"ws": "^7.5.6"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.8",
"@types/request-promise": "^4.1.46",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^8.8.0",
"homebridge": "^1.2.2",
"nodemon": "^2.0.5",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"lint:fix": "eslint src/**.ts --max-warnings=0 --fix",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"test:myrollershades-login": "npm run build && node ./dist/test.js",
"prepublishOnly": "npm run lint && npm run build",
"release": "standard-version"
},
"author": {
"name": "Alex 'apexad' Martin"
},
"repository": {
"type": "git",
"url": "git://github.com/apexad/homebridge-mysmartrollershades-bridge.git"
},
"bugs": {
"url": "https://github.com/apexad/homebridge-mysmartrollershades-bridge/issues"
},
"main": "dist/index.js",
"bin": {
"homebridge-mysmartrollershades-bridge": "./test.js"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/apexadm"
},
{
"type": "github",
"url": "https://github.com/sponsors/apexad"
}
],
"license": "MIT"
}