-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 1.99 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@homebridge/ciao",
"version": "1.3.1",
"description": "ciao is a RFC 6763 compliant dns-sd library, advertising on multicast dns (RFC 6762) implemented in plain Typescript/JavaScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"maintainers": [
"Andreas Bauer <mail@anderl-bauer.de>"
],
"author": "Andreas Bauer <mail@anderl-bauer.de>",
"homepage": "https://github.com/homebridge/ciao",
"license": "MIT",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"lint": "eslint 'src/**/*.{js,ts,json}'",
"lint-docs": "typedoc --emit none",
"build": "npm run clean && tsc",
"test": "jest",
"test-coverage": "jest --coverage",
"docs": "typedoc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"preversion": "npm run lint",
"version": "npm run docs && git add docs"
},
"bin": {
"ciao-bcs": "lib/bonjour-conformance-testing.js"
},
"keywords": [
"ciao",
"rfc-6762",
"rfc-6763",
"multicast-dns",
"dns-sd",
"bonjour",
"zeroconf",
"zero-configuration",
"mdns",
"mdns-sd",
"service-discovery"
],
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge/ciao.git"
},
"bugs": {
"url": "https://github.com/homebridge/ciao/issues"
},
"engines": {
"node": "^18 || ^20 || ^22"
},
"files": [
"lib",
"types",
"README.md",
"LICENSE",
"package.json"
],
"dependencies": {
"debug": "^4.3.6",
"fast-deep-equal": "^3.1.3",
"source-map-support": "^0.5.21",
"tslib": "^2.6.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
}
}