-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
36 lines (36 loc) · 825 Bytes
/
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
{
"name": "dns-socket",
"version": "4.2.2",
"description": "Make low-level DNS requests with retry and timeout support.",
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"repository": "mafintosh/dns-socket",
"homepage": "https://github.com/mafintosh/dns-socket",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "eslint --color *.js && tape test.js"
},
"dependencies": {
"dns-packet": "^5.2.4"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"tape": "^4.9.2"
},
"keywords": [
"dns",
"domain",
"socket",
"low-level"
],
"files": [
"index.js"
]
}