-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "tinkerhub-mdns",
"version": "0.5.1",
"license": "MIT",
"description": "Discovery and publishing of services that announce via Multicast DNS (mDNS) and DNS-SD",
"repository": "tinkerhub/tinkerhub-mdns",
"keywords": [
"mdns",
"dns-sd",
"bonjour",
"zeroconf",
"discovery",
"service discovery"
],
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "jest",
"ci": "npm run lint",
"coverage": "jest --coverage",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc --module commonjs --target es5 --outDir dist/cjs",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"atvik": "^0.3.1",
"debug": "^4.1.1",
"fast-deep-equal": "^2.0.1",
"multicast-dns": "^7.2.0",
"multicast-dns-service-types": "^1.1.0",
"timer-wheel": "^0.3.2",
"tinkerhub-discovery": "^0.6.0"
},
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.15",
"@types/node": "^8.0.0",
"coveralls": "^3.0.3",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}