-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.34 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
{
"displayName": "Nexia & American Standard Thermostat with Zone Support",
"name": "homebridge-nexia-as-thermostat",
"version": "1.0.1",
"description": "Homebridge Nexia and American Standard plugin with support for multiple zones",
"main": "dist/accessory.js",
"scripts": {
"clean": "rimraf ./dist",
"postpublish": "npm run clean",
"test": "mocha",
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"got": "^11.8.1",
"ts-node": "^9.1.1",
"typescript": "^3.8.3"
},
"author": "@djfraz",
"engines": {
"homebridge": ">=1.0.0"
},
"keywords": [
"homebridge-plugin"
],
"license": "ISC",
"files": [
"LICENSE",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/DJFraz/homebridge_nexia_as_thermostat.git"
},
"bugs": {
"url": "https://github.com/DJFraz/homebridge_nexia_as_thermostat/issues"
},
"devDependencies": {
"@types/node": "10.17.19",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.20.0",
"homebridge": "^1.0.4",
"mocha": "^8.3.0",
"rimraf": "^3.0.2"
},
"homepage": "https://github.com/DJFraz/homebridge_nexia_as_thermostat#readme"
}