-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.12 KB
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
81
82
83
84
{
"name": "@homebridge/ciao",
"version": "1.3.12",
"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"
},
"files": [
"lib",
"types",
"README.md",
"LICENSE",
"package.json",
"package-lock.json"
],
"dependencies": {
"debug": "^4.4.3",
"fast-deep-equal": "^3.1.3",
"source-map-support": "^0.5.21",
"tslib": "^2.8.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@types/debug": "^4.1.13",
"@types/jest": "^30.0.0",
"@types/node": "^26.2.0",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"eslint": "^10.8.1",
"jest": "^30.4.2",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typedoc": "^0.28.20",
"typescript": "^6.0.3"
},
"allowScripts": {
"unrs-resolver@1.12.2": true,
"fsevents@2.3.3": true
}
}