This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.38 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
{
"displayName": "Modern Forms",
"name": "homebridge-modern-forms",
"version": "1.0.8",
"description": "Add Modern Forms fans to your Home app using Homebridge.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/nickbreaton/homebridge-modern-forms.git"
},
"bugs": {
"url": "https://github.com/nickbreaton/homebridge-modern-forms/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"modern-forms"
],
"dependencies": {
"@network-utils/arp-lookup": "^1.3.4",
"axios": "^0.20.0",
"get-ip-range": "^2.1.0",
"memoizee": "^0.4.14",
"network": "^0.5.0",
"network-calculator": "^2.0.1",
"node-arp": "^1.0.6",
"ping": "^0.2.3",
"rxjs": "^6.6.2"
},
"devDependencies": {
"@types/memoizee": "^0.4.4",
"@types/node": "^14.6.0",
"@types/ping": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"homebridge": "^1.1.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}