-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 805 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 805 Bytes
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
{
"name": "dns-proxy",
"version": "1.1.0",
"description": "Simple DNS Proxy written in Node.JS. Override hosts, domains, or tlds.",
"bin": {
"dns-proxy": "dns-proxy.js"
},
"main": "dns-proxy.js",
"preferGlobal": true,
"author": "Erik Kristensen <erik@erikkristensen.com>",
"license": "MIT",
"repository": "ekristen/dns-proxy",
"scripts": {
"start": "node ./dns-proxy.js",
"test": "npm run test:standard",
"test:standard": "standard *.js",
"pkg": "pkg --out-dir release --targets node12-macos-x64,node12-alpine-x64,node12-linux-x64,node12-win dns-proxy.js"
},
"dependencies": {
"debug": "^4.0.0",
"native-dns-packet": "~0.1.1",
"rc": "^1.2.8",
"wildcard2": "0.0.2"
},
"devDependencies": {
"pkg": "5.5.2",
"standard": "14.3.3"
}
}