-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "crawler",
"version": "1.0.0",
"private": false,
"description": "A Node.js + Puppeteer.js application that crawls web pages from search engine results to discover and validate email addresses using specific and random search keys. Built to automate large-scale email discovery with intelligent search strategies, validation logic, and MongoDB storage at scale",
"keywords": [
"crawler",
"web-scraping",
"email-extraction",
"puppeteer",
"mongodb",
"search-engine",
"email-validation",
"data-mining",
"web-crawler",
"headless-browser",
"bing",
"google",
"automation",
"typo-correction",
"gibberish-detection"
],
"homepage": "https://github.com/orassayag/crawler#readme",
"bugs": {
"url": "https://github.com/orassayag/crawler/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/orassayag/crawler.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/orassayag"
},
"license": "MIT",
"author": {
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
},
"contributors": [
{
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
}
],
"type": "module",
"main": "src/scripts/crawl.script.js",
"files": [
".github",
".vscode",
"dist",
"misc",
"sources",
"src",
".eslintrc",
".gitignore",
".npmignore",
".prettierrc",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"INSTRUCTIONS.md",
"knip.json",
"LICENSE",
"package-lock.json",
"package.json",
"README.md",
"SECURITY.md"
],
"scripts": {
"backup": "node src/scripts/backup.script.js",
"cases": "node src/tests/emailAddressTestCases.test.js",
"delay": "node src/scripts/delay.script.js",
"domains": "node src/scripts/domains.script.js",
"generator": "node src/tests/emailAddressGenerator.test.js",
"postinstall": "node src/scripts/initiate.script.js",
"link": "node src/tests/linkCrawl.test.js",
"pre_load": "node src/scripts/preload.script.js",
"preload": "npm run pre_load && npm i & npm run delay & npm i",
"sand": "node src/tests/sandBox.test.js",
"session": "node src/tests/linksSession.test.js",
"start": "node src/monitor/monitor.js",
"stop": "taskkill -f -im node.exe",
"typos": "node src/tests/emailAddressTypos.test.js",
"val": "node src/tests/validateEmailAddress.test.js",
"valdebug": "node --inspect-brk src/tests/validateEmailAddress.test.js",
"valmany": "node src/tests/validateEmailAddresses.test.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"axios": "^1.12.2",
"chance": "^1.1.13",
"forever-monitor": "^3.0.3",
"fs-extra": "^11.3.2",
"gibberish-detector": "^1.0.0",
"log-update": "^4.0.0",
"lorem-ipsum": "^2.0.8",
"micromatch": "^4.0.8",
"mongoose": "^8.19.1",
"puppeteer": "^24.23.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"random-email": "^1.0.3",
"random-useragent": "^0.5.0",
"tree-kill": "^1.2.2",
"uuid": "^13.0.0",
"validator": "^13.15.15"
},
"devDependencies": {
"@babel/eslint-parser": "^10.1.0",
"eslint": "^9.37.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
}
}