-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.05 KB
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": "checkdns",
"version": "0.2.2",
"description": "Resolution of domain names or IP addresses given or from a file",
"keywords": [
"dns",
"lookup",
"domain",
"terminal",
"cli",
"shell",
"nslookup",
"resolve"
],
"author": {
"name": "Florent Detry",
"email": "florent@fdetry.be",
"url": "http://fdetry.be/"
},
"main": "./lib/checkdns",
"bin": {
"checkdns": "./bin/checkdns"
},
"repository": {
"type": "git",
"url": "git://github.com/Fridus/checkdns.git"
},
"readmeFilename": "README.md",
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "~2.19.0",
"table": "^5.1.1"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "~5.2.0",
"should": "~13.2.3"
},
"files": [
"bin",
"lib"
]
}