forked from ToddGreenfield/homebridge-nut
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "@vectronic/homebridge-nut",
"displayName": "Homebridge NUT (Network UPS Tools)",
"version": "2.4.6",
"description": "A NUT (Network UPS Tools) Plugin for Homebridge leveraging node-nut.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vectronic/homebridge-nut.git"
},
"bugs": {
"url": "https://github.com/vectronic/homebridge-nut/issues"
},
"scripts": {
"lint": "eslint src/**.ts",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"nut",
"ups"
],
"author": "vectronic",
"license": "ISC",
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.1.0"
},
"dependencies": {
"node-nut": "1.0.3"
},
"devDependencies": {
"@types/node": "17.0.16",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "8.8.0",
"homebridge": "^1.3.9",
"rimraf": "3.0.2",
"ts-node": "10.5.0",
"typescript": "4.5.5"
}
}