forked from apify/crawlee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.08 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.08 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
125
126
127
128
129
130
131
{
"name": "apify",
"version": "2.1.0",
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
"engines": {
"node": ">=15.10.0"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"apify",
"headless",
"chrome",
"puppeteer",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <jan@apify.com>",
"Marek Trunkat <marek@apify.com>",
"Ondra Urban <ondra@apify.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-js"
},
"bugs": {
"url": "https://github.com/apify/apify-js/issues"
},
"homepage": "https://sdk.apify.com/",
"files": [
"build"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && node ./tools/typescript_fixes.js",
"build-docs": "npm run build && node ./website/tools/build_docs.js",
"build-readme": "node ./tools/build_readme.js",
"test": "npm run build && jest",
"prepare": "npm run build",
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
"clean": "rimraf ./build",
"lint": "eslint ./src ./test",
"lint:fix": "eslint ./src ./test --ext .js,.jsx --fix"
},
"dependencies": {
"@apify/consts": "^1.3.0",
"@apify/datastructures": "^1.0.1",
"@apify/log": "^1.1.1",
"@apify/ps-tree": "^1.1.4",
"@apify/storage-local": "^2.0.1",
"@apify/utilities": "^1.1.2",
"apify-client": "^2.0.2",
"browser-pool": "^2.0.2",
"cheerio": "1.0.0-rc.10",
"content-type": "^1.0.4",
"got-scraping": "^3.2.3",
"htmlparser2": "^7.0.0",
"iconv-lite": "^0.6.3",
"jquery": "^3.6.0",
"mime-types": "^2.1.31",
"ow": "^0.28.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"stream-json": "^1.7.2",
"tough-cookie": "^4.0.0",
"underscore": "^1.13.0",
"ws": "^7.5.3"
},
"peerDependencies": {
"playwright": "^1.11.0",
"puppeteer": "^9.0.0||^10.0.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
},
"puppeteer": {
"optional": true
}
},
"devDependencies": {
"@apify/eslint-config": "^0.1.4",
"@apify/tsconfig": "^0.1.0",
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.14.8",
"@babel/register": "^7.14.5",
"@types/content-type": "^1.1.5",
"@types/domhandler": "^2.4.2",
"@types/fs-extra": "^9.0.12",
"@types/htmlparser2": "^3.10.3",
"@types/jest": "^27.0.1",
"@types/node": "^15.14.2",
"@types/ps-tree": "^1.1.1",
"@types/request-promise-native": "^1.0.18",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.7",
"@types/sinon": "^10.0.0",
"@types/tough-cookie": "^4.0.1",
"@types/underscore": "^1.11.3",
"@types/ws": "^7.4.7",
"basic-auth-parser": "^0.0.2",
"body-parser": "^1.19.0",
"csv-parse": "^4.16.0",
"eslint": "^7.31.0",
"express": "^4.17.1",
"fpcollect": "^1.0.4",
"fpscanner": "^0.1.5",
"fs-extra": "^10.0.0",
"jest": "^27.1.1",
"jest-circus": "^27.1.1",
"playwright": "1.15.2",
"portastic": "^1.0.1",
"proxy": "^1.0.2",
"puppeteer": "10.4.0",
"sinon": "^11.0.0",
"sinon-stub-promise": "^4.0.0",
"ts-jest": "^27.0.5",
"typescript": "4.4.3",
"ua-parser-js": "^0.7.28",
"why-is-node-running": "^2.2.0"
}
}