forked from tjfontaine/node-dns
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "native-node-dns",
"version": "0.7.6",
"authors": [
"Francis Turner <[email protected]>",
"Timothy J Fontaine <[email protected]> (http://atxconsulting.com)",
"Greg Slepak <[email protected]> (https://twitter.com/taoeffect)",
"Roger Castells <[email protected]>",
"Matthieu Rakotojaona"
],
"description": "Replacement for the core DNS module, includes server implementation",
"keywords": [
"dns",
"bind",
"native"
],
"homepage": "http://github.com/FrancisTurner/native-node-dns",
"bugs": {
"url": "http://github.com/FrancisTurner/native-node-dns/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/FrancisTurner/native-node-dns.git"
},
"main": "dns.js",
"engines": {
"node": ">= 0.5.0"
},
"scripts": {
"test": "nodeunit test"
},
"dependencies": {
"ipaddr.js": "~0.1.3",
"native-node-dns-cache": ">=0.0.3",
"native-node-dns-packet": ">=0.1.3"
},
"devDependencies": {
"optimist": "",
"nodeunit": ">= 0.11.1"
}
}