forked from dxdc/homebridge-blinds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "homebridge-blinds",
"version": "1.3.23",
"description": "A homebridge plugin to control my blinds",
"main": "index.js",
"scripts": {
"format": "prettier --write config.schema.json .eslintrc.json *.js *.md",
"lint": "eslint *.js *.json",
"test": "echo \"Error: no test specified\" && exit"
},
"keywords": [
"homebridge-plugin",
"homekit"
],
"engines": {
"node": ">4.0.0",
"homebridge": ">=0.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxdc/homebridge-blinds.git"
},
"bugs": {
"url": "https://github.com/dxdc/homebridge-blinds/issues"
},
"author": "Daniel Caspi <[email protected]>",
"contributors": [
"Robin Temme <[email protected]>",
"Jimmy Henderickx <[email protected]>",
"Slavik Meltser <[email protected]>"
],
"license": "ISC",
"dependencies": {
"http-auth": "^4.1.2",
"jsonata": "^1.8.4",
"node-persist": "^2.1.0",
"request": "^2.88.2",
"requestretry": "^4.1.2",
"selfsigned": "^1.10.8"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-plugin-json": "^2.1.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
}
}