-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.15 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
{
"name": "hap-node-client",
"version": "0.2.9",
"description": "Client for Hap-NodeJS",
"main": "HAPNodeJSClient.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "cd scripts; node gen-hap-types.js",
"test": "nodemon",
"test-coverage": "jest --coverage"
},
"devDependencies": {
"hap-nodejs": "^1.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"semver": "^7.6.3"
},
"dependencies": {
"axios": "^1.7.7",
"axios-retry": "4.5.0",
"better-queue": "3.8.12",
"bonjour-hap": "3.8.0",
"buffer": "6.0.3",
"debug": "4.3.7",
"extend": "3.0.2",
"ip": "2.0.1",
"once": "1.4.0"
},
"nodemonConfig": {
"watch": [],
"ext": "js",
"ignore": [],
"exec": "jest",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
}
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**"
]
},
"repository": {
"type": "git",
"url": "git://github.com/NorthernMan54/Hap-Node-Client.git"
},
"author": "NorthernMan54",
"license": "ISC"
}