generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"private": false,
"displayName": "Platform PDU",
"name": "homebridge-platform-pdu",
"version": "0.1.10",
"description": "A Homebridge plugin for Raritan and APC PDUs.",
"license": "ISC",
"keywords": [
"homebridge-plugin",
"Raritan",
"APC",
"PDU"
],
"repository": {
"type": "git",
"url": "git://github.com/ecoen66/homebridge-platform-pdu.git"
},
"bugs": {
"url": "https://github.com/ecoen66/homebridge-platform-pdu/issues"
},
"engines": {
"node": ">=20.9.0",
"homebridge": ">=1.7.0"
},
"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"
},
"dependencies": {
"es6-promisify": ">=7.0",
"net-snmp": ">=3.5.5"
},
"devDependencies": {
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"homebridge": "^1.7.0",
"nodemon": "^2.0.14",
"rimraf": "^3.0.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}