-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "lookup-dns-cache",
"version": "2.1.0",
"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": {
"prettier": "./node_modules/.bin/prettier --single-quote --tab-width 4 --write \"**/*.js\"",
"lint": "./node_modules/.bin/eslint ./",
"test": "yarn run unit-test && yarn run func-test",
"unit-test": "NODE_ENV=test ./node_modules/.bin/mocha --opts tests/mocha.opts -R spec ./tests/Unit/**",
"func-test": "NODE_ENV=test ./node_modules/.bin/mocha --opts tests/mocha.opts --timeout 15000 -R spec ./tests/Functional/**",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --print both -- --opts tests/mocha.opts -R spec ./tests"
},
"dependencies": {
"async": "2.6.0",
"lodash": "^4.17.10",
"rr": "0.1.0"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.15.0",
"istanbul": "0.4.5",
"mocha": "4.1.0",
"prettier": "1.9.2",
"proxyquire": "1.8.0",
"sinon": "4.1.4"
},
"author": {
"name": "Eduard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/eduardbcom/lookup-dns-cache"
},
"keywords": [
"dns",
"lookup",
"resolve4",
"resolve6",
"cache",
"ipv4",
"ipv6"
],
"homepage": "https://github.com/eduardbcom/lookup-dns-cache",
"license": "MIT"
}