forked from agnat/node_mdns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.22 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@cycling74/mdns",
"version": "2.7.3",
"description": "multicast DNS service discovery",
"main": "./lib/mdns.js",
"types": "./index.d.ts",
"scripts": {
"build": "dotenv sh ./utils/build.sh",
"install": "node-pre-gyp install --fallback-to-build",
"test": "node utils/testrun"
},
"keywords": [
"zeroconf",
"bonjour",
"dns_sd",
"mDNSResponder"
],
"devDependencies": {
"aws-sdk": "^2.1062.0",
"dotenv-cli": "^1.4.0",
"ejs": "^2.6.1",
"glob": "^7.1.3",
"less": "^3.9.0",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"nopt": "^4.0.1",
"proxyquire": "^2.1.0",
"slide": "^1.1.6"
},
"repository": {
"type": "git",
"url": "http://github.com/Cycling74/node_mdns.git"
},
"homepage": "http://agnat.github.io/node_mdns",
"bugs": {
"url": "http://github.com/agnat/node_mdns/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/agnat/node_mdns/raw/master/LICENSE"
}
],
"author": {
"name": "David Siegel",
"email": "[email protected]",
"github": "agnat"
},
"contributors": [
{
"name": "Orlando Vazquez",
"email": "[email protected]",
"url": "http://or.lan.do/",
"github": "orlandov"
},
{
"name": "Ryan Dahl",
"email": "ry at tiny clouds dot org",
"url": "http://four.livejournal.com/",
"github": "ry"
},
{
"name": "Dominic Tarr",
"url": "http://twitter.com/dominictarr",
"github": "dominictarr"
},
{
"name": "Emil Stenqvist",
"github": "emilisto"
},
{
"name": "Toby Ealden",
"github": "TobyEalden"
},
{
"name": "Cong Liu",
"github": "ghostoy"
},
{
"name": "Tian Zhang",
"github": "KhaosT"
}
],
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"bindings": "^1.5.0",
"nan": "^2.18.0"
},
"binary": {
"module_name": "dns_sd_bindings",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"host": "https://cycling74-node-prebuilt.s3.amazonaws.com",
"remote_path": "./node_mdns/v{version}",
"package_name": "{name}-{node_abi}-{platform}-{arch}.tar.gz"
},
"gypfile": true
}