-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "actor-facebook-scraper",
"version": "1.1.0",
"description": "Extract public information from Facebook Pages",
"dependencies": {
"apify": "^0.20.2",
"async-atomic-store": "^1.2.2",
"delayable-idle-abort-promise": "^1.0.0",
"escape-string-regexp": "^3.0.0",
"lodash.get": "^4.4.2",
"make-error": "^1.3.6",
"moment": "^2.24.0",
"puppeteer": "^2.1.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"user-agents": "^1"
},
"repository": {
"type": "git",
"url": "https://github.com/pocesar/actor-facebook-scraper.git"
},
"devDependencies": {
"@apify/eslint-config": "^0.0.3",
"@types/node": "^12",
"@types/puppeteer": "^2.0.1",
"@types/user-agents": "^1.0.0",
"@types/lodash.get": "^4.4.6",
"eslint": "^6.8.0",
"jest": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint-plugin-import": "^2.20.2"
},
"scripts": {
"start": "node -r ts-node/register/transpile-only src/main.ts",
"lint": "eslint ./src --ext .js,.jsx",
"lint:fix": "eslint ./src --ext .js,.jsx --fix",
"test": "jest"
},
"license": "Apache-2.0"
}