-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.13 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
{
"name": "subquest",
"version": "1.5.3",
"description": "Fast, Elegant subdomain scanner using nodejs",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/skepticfx/subquest.git"
},
"dependencies": {
"async": "^3.0.0",
"cheerio": "^1.0.0-rc.2",
"commander": "^3.0.0",
"lodash": "^4.17.10",
"request": "^2.87.0"
},
"scripts": {
"pretest": "eslint . --fix",
"test": "jest -i --coverage"
},
"engines": {
"node": ">= 0.8.0"
},
"preferGlobal": true,
"keywords": [
"subdomain",
"pentest",
"scanner",
"subbrute",
"bruteforce",
"dns",
"fingerprinting",
"domain"
],
"author": {
"name": "Ahamed Nafeez",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/skepticfx/subquest/issues"
},
"homepage": "https://github.com/skepticfx/subquest",
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-xo-space": "0.21.0",
"jest": "24.9.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
}
}