forked from davidborzek/homebridge-dummy-thermostat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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-dummy-thermostat",
"version": "1.1.0",
"description": "Plugin for homebridge to create a fake thermostat accessory",
"main": "dist/index.js",
"keywords": [
"homebridge-plugin"
],
"author": "David Borzek",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/davidborzek/homebridge-dummy-thermostat/issues"
},
"homepage": "https://github.com/davidborzek/homebridge-dummy-thermostat#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/davidborzek/homebridge-dummy-thermostat.git"
},
"scripts": {
"format": "prettier --write src/",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"config.schema.json"
],
"engines": {
"homebridge": ">=0.2.0",
"node": ">=0.12.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"homebridge": "^1.3.9",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.6.2"
}
}