generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
58
59
{
"displayName": "Lutron Caseta LEAP",
"name": "homebridge-lutron-caseta-leap",
"version": "2.6.0",
"description": "Support for the Lutron Caseta Smart Bridge 2",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/thenewwazoo/homebridge-lutron-caseta-leap.git"
},
"bugs": {
"url": "https://github.com/thenewwazoo/homebridge-lutron-caseta-leap/issues"
},
"engines": {
"homebridge": "^1.8.3",
"node": "^18 || ^20"
},
"main": "dist/index.js",
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**.ts --max-warnings=0 --fix",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"test": "jest --verbose"
},
"keywords": [
"homebridge-plugin",
"lutron",
"caseta",
"lutron-leap",
"lutron-caseta",
"lutron-smart-bridge"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.3",
"homebridge-dummy": "^0.9.0",
"lutron-leap": "^3.4.2",
"node-forge": "^1.3.1",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.27.0",
"homebridge": "^1.8.3",
"homebridge-config-ui-x": "^4.56.4",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}