-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
69 lines (69 loc) · 1.67 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
64
65
66
67
68
69
{
"name": "infoooze",
"version": "1.3.1",
"description": "A OSINT based famework",
"main": "bin/infoooze.js",
"type": "commonjs",
"scripts": {
"start": "node bin/infoooze.js",
"help": "node bin/infoooze.js -h",
"check": "prettier --check .",
"format": "prettier --write .",
"fix": "eslint . --ext .js --ignore-pattern temp/ --ignore-pattern src/secret.js --fix",
"lint": "eslint --ignore-pattern temp/ --ignore-pattern src/secret.js",
"postinstall": "node ./src/postinstall.js"
},
"license": "MIT",
"author": {
"name": "DevXprite",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/devXprite/infoooze.git"
},
"homepage": "https://infoooze.js.org/",
"keywords": [
"OSINT",
"NodeJs",
"cybersecurity",
"infosec",
"kali-tools",
"termux",
"information-gathering"
],
"dependencies": {
"args": "^5.0.1",
"axios": "^0.27.2",
"boxen": "^5.1.2",
"chalk": "^4.1.0",
"cli-spinner": "^0.2.10",
"easy-table": "^1.2.0",
"enquirer": "^2.3.6",
"exif": "^0.6.0",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"open": "^8.4.0",
"portscanner": "^2.2.0",
"sentence-case": "^3.0.4",
"update-notifier": "^5.1.0",
"whois-json": "^2.0.4"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "2.5.1"
},
"pre-commit": [],
"bin": {
"infoooze": "bin/infoooze.js",
"infooze": "bin/infoooze.js",
"infoze": "bin/infoooze.js"
},
"engines": {
"node": ">=8.0.0"
},
"engineStrict": true
}