generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.41 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
{
"private": false,
"displayName": "Cisco IP Phone",
"name": "homebridge-cisco-phone",
"version": "1.0.0",
"description": "Homebridge plugin for Cisco IP Phone Interations.",
"author": "docwho2",
"homepage": "https://github.com/docwho2/homebridge-cisco-phone",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/docwho2/homebridge-cisco-phone.git"
},
"bugs": {
"url": "https://github.com/docwho2/homebridge-cisco-phone/issues"
},
"engines": {
"node": ">=18.16.0",
"homebridge": ">=1.6.1"
},
"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"
},
"keywords": [
"homebridge-plugin",
"cisco",
"ipphone",
"phone",
"mwi",
"voicemail"
],
"dependencies": {
"@nestjs/common": "7.6.5",
"rxjs" : "6.6.3",
"@oznu/hap-client": "1.7.0",
"axios": "~> 0.21.2",
"express": "4.17.1",
"fs-extra": "^9.0.1",
"xmlbuilder2": "2.4.0"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"homebridge": "^1.2.5",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}