1
|
{
|
2
|
"name": "dns-packet",
|
3
|
"version": "1.3.1",
|
4
|
"description": "An abstract-encoding compliant module for encoding / decoding DNS packets",
|
5
|
"repository": {
|
6
|
"type": "git",
|
7
|
"url": "https://github.com/mafintosh/dns-packet"
|
8
|
},
|
9
|
"dependencies": {
|
10
|
"ip": "^1.1.0",
|
11
|
"safe-buffer": "^5.0.1"
|
12
|
},
|
13
|
"devDependencies": {
|
14
|
"eslint": "^4.15.0",
|
15
|
"standard": "^6.0.5",
|
16
|
"tape": "^4.4.0"
|
17
|
},
|
18
|
"scripts": {
|
19
|
"test": "standard && eslint --color *.js && tape test.js"
|
20
|
},
|
21
|
"bugs": {
|
22
|
"url": "https://github.com/mafintosh/dns-packet/issues"
|
23
|
},
|
24
|
"homepage": "https://github.com/mafintosh/dns-packet",
|
25
|
"main": "index.js",
|
26
|
"keywords": [
|
27
|
"dns",
|
28
|
"packet",
|
29
|
"encodings",
|
30
|
"encoding",
|
31
|
"encoder",
|
32
|
"abstract-encoding"
|
33
|
],
|
34
|
"files": [
|
35
|
"index.js",
|
36
|
"types.js",
|
37
|
"rcodes.js",
|
38
|
"opcodes.js"
|
39
|
],
|
40
|
"author": "Mathias Buus",
|
41
|
"license": "MIT"
|
42
|
}
|