forked from QuickSander/homebridge-mieleathome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"private": false,
"displayName": "Miele@home",
"name": "homebridge-mieleathome",
"version": "0.0.0-development",
"description": "A start for supporting Miele@home devices",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/QuickSander/homebridge-mieleathome.git"
},
"bugs": {
"url": "https://github.com/QuickSander/homebridge-mieleathome/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"homebridge-plugin",
"Miele",
"Miele@mobile",
"Miele@home",
"WTZH"
],
"dependencies": {
"axios": "^0.21.0",
"request": "^2.88.2",
"@homebridge/plugin-ui-utils": "^0.0.17",
"semantic-release-cli": "^5.4.1",
"node-persist": "^0.0.12"
},
"devDependencies": {
"@types/node": "^14.10.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"homebridge": "^1.2.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"release": {
"branches": [
"master",
"next"
]
}
}