-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
68 lines (68 loc) · 1.31 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
63
64
65
66
67
68
{
"author": "Henri Bouvier",
"name": "dns",
"description": "A DNS Server with an Web UI and using Redis a configuration store",
"version": "0.1.5",
"keywords": [
"dns"
],
"repository": {
"type": "git",
"url": "https://github.com/hbouvier/dns.git"
},
"dependencies": {
"hbo-dnsd": "0.9.8",
"native-dns": "0.6.1",
"node-options": "0.0.6",
"redis": "0.12.1",
"tomahawk": "0.1.5",
"winston": "0.7.3"
},
"engines": {
"node": ">= 0.10.0 < 0.11.0"
},
"main": "./lib/dns.js",
"bin": {
"dns": "./bin/dns"
},
"scripts": {
"start": "bin/dns"
},
"configuration": {
"name": "DNS",
"level": "info",
"www": "public",
"config": "config.json",
"context": "/",
"port": 8053,
"ip": "0.0.0.0",
"routes": [],
"cgi": [],
"headers": [],
"socket": {
"level": "error",
"transports": [
"websocket",
"flashsocket",
"htmlfile",
"xhr-polling",
"jsonp-polling"
],
"pollingduration": 10
},
"dns": {
"host": "0.0.0.0",
"port": 53,
"zone": "local.dev",
"ttl": 3600,
"prefix": "dns:",
"primary": "8.8.8.8",
"secondary": "8.8.4.4",
"timeout": 1000
},
"redis": {
"host": "127.0.0.1",
"port": 6379
}
}
}