-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·42 lines (42 loc) · 1.01 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
{
"name": "homebridge-olarm-plugin",
"displayName": "OlarmHomebridgePlugin",
"version": "1.0.1",
"description": "A HomeKit interface for an [Olarm](https://olarm.co) alarm system.",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"watch": "npm run build && npm link && nodemon"
},
"author": "Louw Hopley <[email protected]>",
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"keywords": [
"homebridge-plugin",
"olarm"
],
"license": "MIT",
"files": [
"LICENSE",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/LouwHopley/homebridge-olarm-plugin.git"
},
"bugs": {
"url": "https://github.com/LouwHopley/homebridge-olarm-plugin/issues"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/node-fetch": "^2.6.3",
"homebridge": "^1.6.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
}
}