-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.36 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
{
"name": "puppeteer-example",
"version": "1.0.0",
"private": false,
"description": "A Node.js web scraping application using Puppeteer to extract and validate email addresses from search engine results, with MongoDB storage and Hebrew search support",
"repository": {
"type": "git",
"url": "git://github.com/orassayag/puppeteer-example.git"
},
"keywords": [
"puppeteer",
"web-scraping",
"email-extraction",
"mongodb",
"crawler",
"scraper",
"nodejs",
"automation",
"hebrew",
"job-search",
"email-addresses",
"data-mining"
],
"license": "MIT",
"author": "Or Assayag <orassayag@gmail.com>",
"contributors": [
{
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
}
],
"files": [
"src",
".eslintrc",
"package-lock.json",
"package.json",
"README.md"
],
"main": "src/scripts/crawl.script.js",
"scripts": {
"start": "node src/scripts/crawl.script.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0",
"log-update": "^3.3.0",
"mongoose": "^5.8.10",
"request": "^2.88.0",
"puppeteer": "^2.1.1",
"validator": "^12.2.0"
},
"devDependencies": {}
}