-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.44 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
61
62
63
{
"name": "dns-scanner",
"version": "1.1.0",
"description": "Brute DNS records to find subdomains.",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "jest",
"test-cov": "jest --coverage --runInBand --forceExit",
"lint": "eslint benchmarks src bin"
},
"bin": {
"dns-scanner": "./bin/dns-scanner.js"
},
"repository": {
"type": "git",
"url": "git://github.com/avin/dns-scanner"
},
"engines": {
"node": ">= 7.6.0"
},
"keywords": [
"security",
"dns",
"scanner",
"evilprobe"
],
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"commander": "^2.16.0",
"log-update": "^2.3.0"
},
"devDependencies": {
"eslint": "^5.2.0",
"husky": "^0.14.3",
"jest": "^23.4.2",
"lint-staged": "^7.2.0",
"prettier": "^1.14.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --tab-width 4 --single-quote --print-width 120 --trailing-comma=all --write",
"git add"
]
},
"jest": {
"testMatch": [
"**/test/**/*.js"
],
"coverageReporters": [
"text-summary",
"lcov"
],
"bail": true,
"testEnvironment": "node"
}
}