-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "spread-the-word",
"version": "0.9.3",
"description": "A Bonjour / Zeroconf implementation in TypeScript",
"repository": "https://github.com/ardean/spread-the-word",
"bugs": "https://github.com/ardean/spread-the-word/issues",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "ardean",
"license": "MIT",
"keywords": [
"bonjour",
"zeroconf",
"multicast-dns",
"subtypes",
"service",
"discovery",
"zero",
"configuration",
"spread",
"mdns",
"dns",
"broadcast"
],
"scripts": {
"start": "nodemon",
"build": "rm -rf dist && npm run build-src && npm run build-docs",
"build-src": "tsc",
"build-docs": "typedoc --out ./docs ./src --hideGenerator --excludePrivate && touch ./docs/.nojekyll",
"test": "mocha -r ts-node/register test/*.spec.ts --exit"
},
"dependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^14.17.15",
"debug": "^4.3.2",
"dns-txt": "^2.0.2",
"multicast-dns": "^7.2.3"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typedoc": "^0.22.3",
"typescript": "^4.4.3"
}
}