-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "hyper-dns",
"version": "0.12.0",
"description": "DNS lookup for dat/hyper archives",
"main": "index.js",
"browser": "browser.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard",
"test": "cross-env NODE_NO_WARNINGS=1 tape test/index.js",
"test-browser": "browserify test/browser.js | npx tape-run",
"bundle-size": "browserify lookup-cached.js | wc -c",
"coverage": "c8 -r lcov -r html npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinheidegger/hyper-dns.git"
},
"keywords": [
"dat",
"dns",
"hyper"
],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinheidegger/hyper-dns/issues"
},
"homepage": "https://github.com/martinheidegger/hyper-dns#readme",
"dependencies": {
"@consento/promise": "^1.0.7",
"debug": "^4.3.1",
"env-paths": "^2.2.1",
"https-proxy-agent": "^5.0.0",
"node-fetch": "^2.6.1",
"proxy-from-env": "^1.1.0",
"quick-lru": "^4.0.1"
},
"optionalDependencies": {
"better-sqlite3": "^7.1.4"
},
"devDependencies": {
"browserify": "^17.0.0",
"c8": "^7.6.0",
"cross-env": "^7.0.3",
"http-mitm-proxy": "^0.9.0",
"pem": "^1.14.4",
"standard": "^16.0.3",
"tape": "^5.2.2"
}
}