forked from Jorire/homebridge-myfoxhc2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"private": true,
"displayName": "Homebridge Myfox HC2 Plugin",
"name": "homebridge-myfoxhc2",
"version": "1.4.3",
"description": "Interact with Myfox HC2 alarm.",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/Jorire/homebridge-myfoxhc2.git"
},
"bugs": {
"url": "https://github.com/Jorire/homebridge-myfoxhc2/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"myfox",
"hc2"
],
"dependencies": {
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.7",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^13.13.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.3",
"rimraf": "^3.0.2",
"ts-node": "^8.9.0",
"typescript": "^3.8.3",
"homebridge": "^0.4.54-beta.54"
}
}