forked from homebridge/HAP-NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
45
46
47
48
{
"name": "hap-nodejs",
"version": "0.5.3",
"description": "HAP-NodeJS is a Node.js implementation of HomeKit Accessory Server.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=4.3.2"
},
"dependencies": {
"bonjour-hap": "^3.5.1",
"buffer-shims": "^1.0.0",
"debug": "^2.2.0",
"decimal.js": "^7.2.3",
"fast-srp-hap": "^1.0.1",
"ip": "^1.1.3",
"node-persist": "^0.0.11",
"tweetnacl": "^1.0.1"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/ip": "^1.1.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"jest": "^24.8.0",
"rimraf": "^2.7.1",
"simple-plist": "0.0.4",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"prepublishOnly": "yarn build",
"test": "jest",
"start": "node dist/BridgedCore.js"
},
"repository": {
"type": "git",
"url": "https://github.com/KhaosT/HAP-NodeJS.git"
},
"author": "Khaos Tian <[email protected]> (http://tz.is/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/KhaosT/HAP-NodeJS/issues"
},
"homepage": "https://github.com/KhaosT/HAP-NodeJS"
}