forked from forwardemail/nodejs-dns-over-https-tangerine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
167 lines (167 loc) · 3.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "tangerine",
"description": "Tangerine is the best Node.js drop-in replacement for dns.promises.Resolver using DNS over HTTPS (\"DoH\") via undici with built-in retries, timeouts, smart server rotation, AbortControllers, and caching support for multiple backends (with TTL and purge support).",
"version": "1.5.4",
"author": "Forward Email (https://forwardemail.net)",
"bugs": {
"url": "https://github.com/forwardemail/nodejs-dns-over-https-tangerine/issues"
},
"contributors": [
"Forward Email (https://forwardemail.net)"
],
"dependencies": {
"@ungap/structured-clone": "^1.2.0",
"auto-bind": "4",
"dns-packet": "^5.6.0",
"dohdec": "^5.0.3",
"get-stream": "6",
"hostile": "^1.3.3",
"ipaddr.js": "^2.0.1",
"merge-options": "3.0.4",
"p-map": "4",
"p-timeout": "4",
"p-wait-for": "3",
"port-numbers": "6.0.1",
"private-ip": "^3.0.0",
"punycode": "^2.3.0",
"semver": "^7.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"ava": "^5.2.0",
"axios": "^1.4.0",
"benchmark": "^2.1.4",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-xo-lass": "^2.0.1",
"fetch-mock": "^9.11.0",
"fixpack": "^4.0.0",
"got": "11",
"husky": "^8.0.3",
"ioredis": "^5.3.2",
"ioredis-mock": "^8.7.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"nock": "^13.3.1",
"node-fetch": "2",
"nyc": "^15.1.0",
"phin": "^3.7.0",
"remark-cli": "^11.0.0",
"remark-preset-github": "^4.0.4",
"request": "^2.88.2",
"sort-keys": "4.2.0",
"superagent": "^8.0.9",
"undici": "^5.22.1",
"xo": "^0.54.2"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js"
],
"homepage": "https://github.com/forwardemail/nodejs-dns-over-https-tangerine",
"keywords": [
"1:1",
"abort",
"abortcontroller",
"abuse",
"adapter",
"alternative",
"api",
"backend",
"better",
"cache",
"caching",
"callback",
"callbacks",
"cloudflare",
"controller",
"ddos",
"dns",
"doh",
"drop-in",
"dropin",
"dummy",
"email",
"fast",
"fe",
"forward",
"google",
"http",
"https",
"lad",
"layer",
"lookup",
"lru",
"malware",
"mandarin",
"mechanism",
"memory",
"modern",
"mongo",
"over",
"package",
"phishing",
"prevention",
"project",
"promise",
"promises",
"proof",
"protection",
"pttl",
"query",
"records",
"redis",
"replace",
"replacement",
"resolve",
"resolver",
"retries",
"retry",
"rotate",
"rotation",
"security",
"server",
"signal",
"smart",
"spam",
"storage",
"tangelo",
"tangerine",
"tangerines",
"timeout",
"timeouts",
"ttl",
"undici",
"wrapper"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"undici": "*"
},
"peerDependenciesMeta": {
"undici": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/forwardemail/nodejs-dns-over-https-tangerine"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"benchmarks": "node benchmarks/lookup && node benchmarks/resolve && node benchmarks/reverse",
"lint": "xo --fix && remark . -qfo && fixpack",
"nyc": "cross-env NODE_ENV=test nyc ava",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run nyc"
}
}