forked from jonathan-fielding/homebridge-yalealarmsystem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "homebridge-yalesyncalarm",
"version": "1.2.4",
"description": "Homebridge plugin for the Yale Sync Alarm",
"main": "./dist/YaleSyncPlatform.js",
"types": "./dist/YaleSyncPlatform.d.ts",
"files": [
"/dist/**/*",
".tsconfig.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node_modules/typescript/bin/tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathandann/homebridge-yalesyncalarm.git"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"yale",
"alarm",
"typescript"
],
"author": "Jonathan Dann",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathandann/homebridge-yalesyncalarm/issues"
},
"homepage": "https://github.com/jonathandann/homebridge-yalesyncalarm#readme",
"engines": {
"homebridge": ">=0.4.5"
},
"dependencies": {
"type-safe-json-decoder": "^0.2.0",
"yalesyncalarm": "^2.0.4"
},
"devDependencies": {
"hap-nodejs": "^0.5.6",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
}
}