forked from jeppesens/homebridge-shelly-doorbell
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "homebridge-shelly-doorbell-plus",
"version": "0.6.0",
"description": "A plugin to add doorbells powered by Shelly.",
"main": "dist/shelly-doorbell-platform.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"contributors": ["JuJuFX","sl1nd <[email protected]> (https://gitlab.com/lindenmueller)", "jeppesens <[email protected]> (https://github.com/jeppesens)"],
"engines": {
"homebridge": ">=1.0.0"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"shelly",
"doorbell"
],
"license": "MIT",
"files": [
"LICENSE",
"dist",
"config.schema.json"
],
"repository": {
"type": "git",
"url": "https://github.com/JuJuFX-dev/homebridge-shellyplus-doorbell.git"
},
"bugs": {
"url": "https://github.com/JuJuFX-dev/homebridge-shellyplus-doorbell/issues"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.23.0",
"homebridge": "^1.3.1",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@types/node-persist": "^3.1.1",
"axios": "^0.21.0",
"node-persist": "^3.1.0",
"promise-socket": "^7.0.0"
}
}