-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "axios-cached-dns-resolve",
"version": "3.3.0",
"main": "index",
"description": "Caches dns resolutions made with async dns.resolve instead of default sync dns.lookup, refreshes in background",
"scripts": {
"watchUnit": "NODE_ENV=DEBUG ava --fail-fast -v **/__tests__/**/*test*.js --watch",
"ava": "ava",
"test": "npm run ava -timeout=2m",
"watchLint": "esw . --ext=js --ext=mjs --ignore-path .gitignore --fix --watch",
"lint": "eslint . --ext=js --ext=mjs --ignore-path .gitignore --fix"
},
"engines": {
"node": ">=14.0.0"
},
"esm": {
"force": true,
"mode": "auto"
},
"keywords": [
"axios",
"dns",
"cache",
"resolve",
"lookup"
],
"author": "Troy Collinsworth",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:tcollinsworth/axios-cached-dns-resolve.git"
},
"devDependencies": {
"ava": "^3.15.0",
"axios": "^0.27.2",
"body-parser": "^1.20.2",
"delay": "^5.0.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-watch": "^8.0.0",
"esm": "^3.2.25",
"express": "^4.18.2",
"ignore-styles": "^5.0.1"
},
"dependencies": {
"json-stringify-safe": "^5.0.1",
"lru-cache": "^7.18.3",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1"
}
}