forked from tjfontaine/native-dns-packet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 880 Bytes
/
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
{
"name": "native-dns-packet",
"version": "0.1.2",
"authors": [
"Timothy J Fontaine <tjfontaine@gmail.com> (http://atxconsulting.com)",
"Greg Slepak <contact@taoeffect.com> (https://twitter.com/taoeffect)",
"Matthieu Rakotojaona"
],
"description": "Raw DNS Packet Parsing and Writing",
"keywords": [
"dns",
"parsing"
],
"homepage": "http://github.com/tjfontaine/native-dns-packet",
"bugs": {
"url": "http://github.com/tjfontaine/native-dns-packet/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/tjfontaine/native-dns-packet.git"
},
"main": "index.js",
"engines": {
"node": ">= 0.5.0"
},
"license": "MIT",
"scripts": {
"test": "tap ./test/*.js"
},
"dependencies": {
"buffercursor": ">= 0.0.12",
"ipaddr.js": ">= 0.1.1"
},
"devDependencies": {
"tap": ">= 0.4.3"
}
}