-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "homebridge-shelly",
"version": "0.19.1",
"description": "Shelly plugin for Homebridge",
"main": "index.js",
"bin": "bin/homebridge-shelly",
"scripts": {
"test": "mocha --exit 'test/**/test-*.js'",
"eslint": "eslint .",
"postversion": "git push && git push --tags"
},
"pre-commit": [
"eslint",
"test"
],
"keywords": [
"homebridge",
"homebridge-plugin",
"shelly"
],
"engines": {
"node": ">=12.0.0",
"homebridge": ">=1.0.0"
},
"author": "Alexander Rydén",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexryd/homebridge-shelly.git"
},
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/alexryd"
},
"dependencies": {
"color-convert": "^2.0.1",
"colors": "^1.4.0",
"command-line-commands": "^3.0.2",
"express": "^4.17.2",
"shellies": "^1.7.0"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.2.0",
"pre-commit": "^1.2.2",
"should": "^13.2.3",
"sinon": "^13.0.1"
}
}