-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "homebridge-blinds",
"version": "2.0.1",
"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",
"spellcheck": "mdspell -r -n *.md",
"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.9",
"jsonata": "^1.8.6",
"node-persist": "^2.1.0",
"request": "^2.88.2",
"requestretry": "^7.1.0",
"selfsigned": "^1.10.11"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-plugin-json": "^3.1.0",
"markdown-spellcheck": "^1.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2"
}
}