forked from sokarovski/bonjour
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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": "bonjour-hap",
"version": "3.9.0",
"description": "A Bonjour/Zeroconf implementation in pure JavaScript (for HAP)",
"main": "index.js",
"types": "index.d.ts",
"author": "Thomas Watson Steen <[email protected]> (https://twitter.com/wa7son)",
"license": "MIT",
"scripts": {
"lint": "standard",
"test": "tape test/*.js",
"test-coverage": "nyc --reporter=lcovonly npm test",
"clean": "rimraf coverage && rimraf .nyc_output"
},
"homepage": "https://github.com/homebridge/bonjour",
"repository": {
"type": "git",
"url": "https://github.com/homebridge/bonjour.git"
},
"bugs": {
"url": "https://github.com/homebridge/bonjour/issues"
},
"keywords": [
"bonjour",
"zeroconf",
"zero",
"configuration",
"mdns",
"dns",
"service",
"discovery",
"multicast",
"broadcast",
"dns-sd"
],
"files": [
"lib",
"LICENSE",
"package.json",
"index.js",
"index.d.ts",
"README.md"
],
"dependencies": {
"array-flatten": "^3.0.0",
"deep-equal": "^2.2.3",
"multicast-dns": "^7.2.5",
"multicast-dns-service-types": "^1.1.0"
},
"devDependencies": {
"after-all": "^2.0.2",
"standard": "^17.1.2",
"tape": "^5.9.0",
"nyc": "^17.1.0",
"rimraf": "^6.0.1"
}
}