forked from rtrompier/google-home-loxone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "google-home-loxone",
"version": "0.0.0-latest",
"description": "Bridge for Google Home and Loxone",
"main": "index.js",
"bin": {
"google-home-loxone": "bin/global.js"
},
"dependencies": {
"axios-observable": "^2.0.0",
"express": "^4.18.2",
"googleapis": "^109.0.1",
"mock-socket": "^9.2.1",
"node-lox-ws-api": "^0.4.5",
"rxjs": "^7.5.7",
"uuid": "^9.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.0",
"@types/node": "~18.11.9",
"@types/yargs": "^17.0.13",
"jasmine": "^4.5.0",
"jasmine-console-reporter": "^3.1.0",
"nock": "^13.2.9",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"tslint": "^6.1.3",
"typescript": "^4.9.3"
},
"scripts": {
"start": "tsc && node dist/index.js",
"start:dev": "tsc-watch --onSuccess \"node ./dist/index.js --verbose true\"",
"build": "tsc",
"test": "jasmine --config=jasmine.json"
},
"author": "rtrompier",
"license": "MIT",
"preferGlobal": true,
"publishConfig": {
"access": "public"
}
}