-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.87 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
{
"name": "harmonyhub",
"version": "1.0.9",
"description": "fully typed library for interacting with the harmony hub",
"main": "index.js",
"dependencies": {
"@harmonyhub/client": "file:packages/client",
"@harmonyhub/client-ws": "file:packages/client-ws",
"@harmonyhub/discover": "file:packages/discover",
"@xmpp/client": "^0.13.0"
},
"devDependencies": {
"@types/node": "^10.17.60",
"chai": "^4.3.4",
"mocha": "^9.2.2",
"tslint": "^5.20.1",
"typescript": "^4.4.4"
},
"scripts": {
"test": "npm run build && mocha",
"build:client": "cd packages/client && tsc",
"build:client-ws": "cd packages/client-ws && tsc",
"build:client-ws:watch": "cd packages/client-ws && tsc --watch --skipLibCheck",
"build:discover": "cd packages/discover && tsc",
"build:homebridge": "cd packages/homebridge && tsc",
"build:examples": "tsc",
"build:examples:watch": "tsc --watch",
"build:all": "(npm run build:client) && (npm run build:client-ws) && (npm run build:discover) && (npm run build:examples)",
"post:merge:master": "git rebase --onto origin/master HEAD && git push origin develop -f",
"build": "npm run build:discover && npm run build:client && npm run build:examples",
"postinstall": "cd packages/client/ && npm install && cd ../client-ws/ && npm install && cd ../discover/ && npm install",
"lint": "tslint -c tslint.json '**/*.ts'"
},
"_moduleAliases": {
"@harmonyhub": "./packages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AirBorne04/harmonyhub.git"
},
"keywords": [
"harmony",
"harmonyhub",
"api",
"xmpp",
"websocket",
"discover",
"home automation"
],
"author": "Daniel Freese",
"license": "ISC",
"bugs": {
"url": "https://github.com/AirBorne04/harmonyhub/issues"
},
"homepage": "https://github.com/AirBorne04/harmonyhub#readme"
}