-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
60 lines (60 loc) · 1.26 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
{
"name": "cacheable-lookup",
"version": "7.0.0",
"description": "A cacheable dns.lookup(…) that respects TTL",
"engines": {
"node": ">=14.16"
},
"files": [
"source",
"index.d.ts"
],
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./source/index.mjs"
},
"scripts": {
"test": "xo && nyc --reporter=lcovonly --reporter=text ava && tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szmarczak/cacheable-lookup.git"
},
"keywords": [
"dns",
"lookup",
"cacheable",
"ttl"
],
"author": "Szymon Marczak",
"license": "MIT",
"bugs": {
"url": "https://github.com/szmarczak/cacheable-lookup/issues"
},
"homepage": "https://github.com/szmarczak/cacheable-lookup#readme",
"devDependencies": {
"@types/keyv": "^3.1.1",
"ava": "^4.3.3",
"benchmark": "^2.1.4",
"coveralls": "^3.0.9",
"keyv": "^4.0.0",
"nyc": "^15.0.0",
"quibble": "^0.6.14",
"quick-lru": "^5.1.0",
"tsd": "^0.11.0",
"xo": "^0.25.3"
},
"ava": {
"nodeArguments": [
"--loader=quibble"
]
},
"xo": {
"rules": {
"unicorn/import-index": "off",
"import/extensions": "off",
"import/no-useless-path-segments": "off"
}
}
}