forked from vdrmota/Social-Media-and-Contact-Info-Extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 835 Bytes
/
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
{
"name": "actor-social-extractor",
"version": "1.0.0",
"description": "Apify actor for extracting e-mails, phone numbers and social network links from a website.",
"main": "main.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vdrmota/Social-Media-and-Contact-Info-Extractor"
},
"scripts": {
"start": "APIFY_LOCAL_STORAGE_DIR=apify_storage node ./src/main.js",
"lint": "./node_modules/.bin/eslint ./src",
"lint:fix": "./node_modules/.bin/eslint ./src --ext .js --fix"
},
"dependencies": {
"apify": "^2.3.0",
"extract-domain": "^2.0.6",
"getdomain": "^1.3.1",
"puppeteer": "^13.0.0",
"request-promise": "^4.2.2",
"underscore": "^1.9.1"
},
"devDependencies": {
"@apify/eslint-config": "^0.3.1",
"eslint": "^8.12.0"
}
}