forked from vercel/dns-cached-resolve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "@zeit/dns-cached-resolve",
"version": "2.1.1",
"description": "Caching DNS resolve",
"license": "MIT",
"author": "Olli Vanhoja",
"keywords": [
"async",
"dns",
"resolve",
"lookup"
],
"homepage": "https://github.com/zeit/dns-cached-resolve",
"bugs": {
"url": "https://github.com/zeit/dns-cached-resolve/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeit/dns-cached-resolve.git"
},
"scripts": {
"prepublishOnly": "yarn build",
"fmt": "prettier --single-quote --print-width=80 --write './{src, test}/**/*.ts'",
"build": "tsc",
"test": "jest"
},
"main": "lib/index.js",
"dependencies": {
"@types/async-retry": "1.2.1",
"@types/lru-cache": "4.1.1",
"@types/node": "10.12.18",
"async-retry": "1.2.3",
"lru-cache": "5.1.1"
},
"devDependencies": {
"@types/jest": "23.3.10",
"jest": "24.8.0",
"prettier": "1.15.3",
"ts-jest": "24.0.2",
"typescript": "3.2.2"
},
"jest": {
"preset": "ts-jest",
"testURL": "http://localhost/",
"verbose": false
}
}