generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
54
55
56
57
{
"displayName": "Homebridge Pentair IntelliCenter",
"name": "homebridge-pentair-intellicenter",
"version": "2.1.1",
"description": "Homebridge plugin for integrating Pentair IntelliCenter into HomeKit.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/dustindclark/homebridge-pentair-intellicenter.git"
},
"bugs": {
"url": "https://github.com/dustindclark/homebridge-pentair-intellicenter/issues"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"test": "jest"
},
"keywords": [
"homebridge-plugin",
"homebridge pentair intellicenter",
"homebridge pentair",
"homebridge intellicenter",
"homekit pentair intelli center",
"homekit intelli center"
],
"dependencies": {
"telnet-client": "^1.4.11",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"homebridge": "^1.5.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"jest": "^27.3.1",
"ts-jest": "^27.0.7"
},
"homepage": "https://github.com/dustindclark/homebridge-pentair-intellicenter#readme",
"funding": {
"type": "paypal",
"url": "https://paypal.me/dustinclark04"
}
}