forked from mdns-js/node-mdns-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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": "mdns-js",
"version": "0.5.3",
"repository": {
"type": "git",
"url": "git://github.com/mdns-js/node-mdns-js.git"
},
"description": "JavaScript/NodeJS mDNS discovery implementation",
"keywords": [
"mdns",
"dns-sd",
"zeroconf"
],
"engines": {
"node": ">= 4.1.0"
},
"main": "index.js",
"dependencies": {
"debug": "^2.1.1",
"dns-js": "~0.2.1",
"semver": "~5.1.0"
},
"devDependencies": {
"code": "^4.0.0",
"eslint": "^3.12.2",
"joi": "~7.1.0",
"lab": "^11.2.1"
},
"scripts": {
"test": "lab --flat && npm run lint",
"lint": "eslint test examples lib index.js",
"doc": "jsdoc -d .\\doc index.js lib"
},
"author": {
"name": "Peter Magnusson",
"email": "[email protected]"
},
"contributors": [
"James Sigurðarson <[email protected]> (http://jamessigurdarson.com)",
"David Baldwynn <[email protected]>",
"Stefan Sauer <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mdns-js/node-mdns-js/issues"
},
"homepage": "https://github.com/mdns-js/node-mdns-js"
}