forked from alexryd/homebridge-shelly-ng
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "homebridge-shelly-ng",
"version": "1.6.0",
"description": "Homebridge plugin for the next generation of Shelly devices",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint ./src --ext .ts,.js --max-warnings=0",
"test": "jest",
"preversion": "npm run build && npm run lint",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=14.18.3",
"homebridge": ">=1.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexryd/homebridge-shelly-ng.git"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"shelly"
],
"author": "Alexander Rydén",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/alexryd/homebridge-shelly-ng/issues"
},
"homepage": "https://github.com/alexryd/homebridge-shelly-ng#readme",
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/alexryd"
},
"devDependencies": {
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"homebridge": "^1.5.0",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"shellies-ng": "^1.5.1"
}
}