-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 989 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 989 Bytes
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
{
"name": "gitrecon",
"version": "0.0.5",
"description": "This CLI tool is designed to retrieve exposed email addresses from a GitHub user’s public activity and to identify a GitHub username associated with a given email address. It is intended strictly for educational use and ethical security research. Please use it responsibly, solely for raising awareness and promoting information security education.",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "jest",
"start": "node index.js"
},
"keywords": [
"osint",
"recon",
"github",
"email"
],
"author": "Atilla",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atiilla/gitrecon.git"
},
"bugs": {
"url": "https://github.com/atiilla/gitrecon/issues"
},
"homepage": "https://github.com/atiilla/gitrecon",
"devDependencies": {
"jest": "^29.7.0"
},
"dependencies": {
"argparse": "^2.0.1",
"axios": "^1.9.0"
}
}