-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 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
{
"name": "bns",
"version": "0.15.0",
"description": "DNS bike-shed",
"keywords": [
"bns",
"dns",
"udp",
"tcp"
],
"license": "MIT",
"repository": "git://github.com/chjj/bns.git",
"homepage": "https://github.com/chjj/bns",
"bugs": {
"url": "https://github.com/chjj/bns/issues"
},
"author": "Christopher Jeffrey <[email protected]>",
"main": "./lib/bns.js",
"bin": {
"bns-keygen": "./bin/bns-keygen",
"bns-prove": "./bin/bns-prove",
"dig.js": "./bin/dig.js",
"named.js": "./bin/named.js",
"dig2json": "./bin/dig2json",
"json2dig": "./bin/json2dig",
"rr2json": "./bin/rr2json",
"json2rr": "./bin/json2rr",
"zone2json": "./bin/zone2json",
"json2zone": "./bin/json2zone",
"whois.js": "./bin/whois.js"
},
"scripts": {
"lint": "eslint bin/* lib/ test/ || exit 0",
"test": "bmocha --reporter spec test/*-test.js",
"test-browser": "bmocha -H --reporter spec test/*-test.js",
"test-file": "bmocha --reporter spec"
},
"dependencies": {
"bcrypto": "~5.4.0",
"bfile": "~0.2.2",
"bheep": "~0.1.5",
"binet": "~0.3.6",
"bs32": "~0.1.6",
"bsert": "~0.0.10",
"btcp": "~0.1.5",
"budp": "~0.1.6",
"bufio": "~1.0.7"
},
"optionalDependencies": {
"unbound": "~0.4.3"
},
"devDependencies": {
"bmocha": "^2.1.5"
},
"engines": {
"node": ">=8.0.0"
},
"browser": {
"./lib/internal/lazy": "./lib/internal/lazy-browser.js",
"./lib/resolver/unbound": "./lib/resolver/unbound-browser.js"
}
}