-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
{
"name": "dns-lookup-cache",
"version": "1.0.4",
"description": "An implementation to speed up the nodejs `dns.lookup` method by avoiding thread pool and using resolve4/resolve6 with DNS TTL values",
"main": "index.js",
"engines": {
"node": ">=6.0"
},
"scripts": {
"lint": "eslint ./",
"tests": "yarn run unit-test && yarn run func-test",
"unit-test": "NODE_ENV=test mocha --opts tests/mocha.opts -R spec ./tests/Unit/**",
"func-test": "NODE_ENV=test mocha --opts tests/mocha.opts --timeout 15000 -R spec ./tests/Functional/**",
"test:coverage": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha --print both -- --opts tests/mocha.opts -R spec ./tests",
"coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --opts tests/mocha.opts -R spec ./tests && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/LCMApps/dns-lookup-cache.git"
},
"keywords": [
"dns",
"lookup",
"resolve4",
"resolve6",
"cache",
"ipv4",
"ipv6"
],
"license": "MIT",
"dependencies": {
"lodash": "^4.17.11",
"rr": "^0.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "5.14.1",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"proxyquire": "^2.1.0",
"sinon": "^7.1.0"
},
"bugs": {
"url": "https://github.com/LCMApps/dns-lookup-cache/issues"
},
"homepage": "https://github.com/LCMApps/dns-lookup-cache"
}