-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 876 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
38
{
"name": "rainbow-dns",
"version": "3.0.1",
"description": "DNS server with http API",
"bin": "./index.js",
"main": "index.js",
"scripts": {
"test": "mocha -R nyan -w --check-leaks"
},
"repository": {
"type": "git",
"url": "https://github.com/asbjornenge/rainbow-dns.git"
},
"keywords": [
"dns",
"server",
"api"
],
"author": "Asbjorn Enge <asbjorn@hanafjedle.net>",
"license": "BSD",
"bugs": {
"url": "https://github.com/asbjornenge/rainbow-dns/issues"
},
"homepage": "https://github.com/asbjornenge/rainbow-dns",
"dependencies": {
"ansi-rainbow": "0.0.8",
"chalk": "^1.0.0",
"hapi": "^6.8.1",
"minimist": "^1.1.0",
"native-dns": "^0.6.1",
"native-dns-packet": "^0.1.1",
"random-domain": "^1.0.2",
"transducers.js": "^0.2.1"
},
"devDependencies": {
"mocha": "^3.2.0"
}
}