-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "dohnut",
"version": "4.11.0",
"description": "DNS to DNS-over-HTTPS (DoH) proxy server",
"license": "ISC",
"repository": "github:commonshost/dohnut",
"author": "Kenny Shen <[email protected]>",
"contributors": [
"Sebastiaan Deckers <[email protected]>"
],
"main": "source/master.js",
"bin": {
"dohnut": "source/bin.js"
},
"scripts": {
"start": "node source/bin.js",
"test": "npm run lint && npm run proof",
"lint": "standard --verbose | snazzy",
"proof": "tape 'test/*.js'",
"lcov": "nyc --reporter=lcov --reporter=text-summary tape 'test/*.js'"
},
"keywords": [
"doh",
"dns",
"proxy"
],
"devDependencies": {
"blue-tape": "^1.0.0",
"nyc": "^15.1.0",
"snazzy": "^8.0.0",
"standard": "^14.0.0",
"tape": "^5.0.0"
},
"dependencies": {
"@commonshost/resolvers": "^1.4.0",
"base64url": "^3.0.1",
"chalk": "^2.4.2",
"dns-packet": "^5.2.1",
"pino": "^5.13.2",
"please-upgrade-node": "^3.2.0",
"socket-activation": "^3.2.0",
"uri-templates": "^0.2.0",
"user-agents": "^1.0.356",
"yargs": "^14.0.0",
"yauzl": "^2.10.0"
},
"optionalDependencies": {
"sd-notify": "^2.3.0"
},
"engines": {
"node": ">=11.7.0"
}
}