-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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": "mdns-js",
"version": "1.0.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": ">= 6.0.0"
},
"main": "index.js",
"dependencies": {
"debug": "~3.1.0",
"dns-js": "~0.2.1",
"semver": "~5.4.1"
},
"devDependencies": {
"code": "^5.1.2",
"eslint": "^5.10.0",
"joi": "^14.3.0",
"lab": "^18.0.0"
},
"scripts": {
"pretest": "node ./bin/testversion.js",
"test": "./node_modules/.bin/lab --flat && npm run lint",
"lint": "./node_modules/.bin/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"
}