apify 2.3.2 → 2.3.3-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +127 -127
package/package.json
CHANGED
|
@@ -1,131 +1,131 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
"name": "apify",
|
|
3
|
+
"version": "2.3.3-beta.0",
|
|
4
|
+
"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.",
|
|
5
|
+
"engines": {
|
|
6
|
+
"node": ">=15.10.0"
|
|
7
|
+
},
|
|
8
|
+
"main": "build/index.js",
|
|
9
|
+
"types": "build/index.d.ts",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"apify",
|
|
12
|
+
"headless",
|
|
13
|
+
"chrome",
|
|
14
|
+
"puppeteer",
|
|
15
|
+
"crawler",
|
|
16
|
+
"scraper"
|
|
17
|
+
],
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "Apify",
|
|
20
|
+
"email": "support@apify.com",
|
|
21
|
+
"url": "https://apify.com"
|
|
22
|
+
},
|
|
23
|
+
"contributors": [
|
|
24
|
+
"Jan Curn <jan@apify.com>",
|
|
25
|
+
"Marek Trunkat <marek@apify.com>",
|
|
26
|
+
"Ondra Urban <ondra@apify.com>"
|
|
27
|
+
],
|
|
28
|
+
"license": "Apache-2.0",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/apify/apify-js"
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/apify/apify-js/issues"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://sdk.apify.com/",
|
|
37
|
+
"files": [
|
|
38
|
+
"build"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "npm run clean && tsc -p tsconfig.json && node ./tools/typescript_fixes.js",
|
|
42
|
+
"build-docs": "npm run build && node ./website/tools/build_docs.js",
|
|
43
|
+
"build-readme": "node ./tools/build_readme.js",
|
|
44
|
+
"test": "npm run build && jest",
|
|
45
|
+
"prepare": "npm run build",
|
|
46
|
+
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
|
|
47
|
+
"clean": "rimraf ./build",
|
|
48
|
+
"lint": "eslint ./src ./test",
|
|
49
|
+
"lint:fix": "eslint ./src ./test --ext .js,.jsx --fix"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@apify/consts": "^1.7.0",
|
|
53
|
+
"@apify/datastructures": "^1.0.1",
|
|
54
|
+
"@apify/log": "^1.2.0",
|
|
55
|
+
"@apify/ps-tree": "^1.1.4",
|
|
56
|
+
"@apify/storage-local": "^2.0.2",
|
|
57
|
+
"@apify/timeout": "^0.2.1",
|
|
58
|
+
"@apify/utilities": "^1.2.8",
|
|
59
|
+
"apify-client": "^2.3.1",
|
|
60
|
+
"browser-pool": "^3.1.3",
|
|
61
|
+
"cheerio": "1.0.0-rc.10",
|
|
62
|
+
"content-type": "^1.0.4",
|
|
63
|
+
"got-scraping": "^3.2.9",
|
|
64
|
+
"htmlparser2": "^7.0.0",
|
|
65
|
+
"iconv-lite": "^0.6.3",
|
|
66
|
+
"jquery": "^3.6.0",
|
|
67
|
+
"mime-types": "^2.1.35",
|
|
68
|
+
"ow": "^0.28.1",
|
|
69
|
+
"rimraf": "^3.0.2",
|
|
70
|
+
"semver": "^7.3.7",
|
|
71
|
+
"stream-json": "^1.7.4",
|
|
72
|
+
"tough-cookie": "^4.0.0",
|
|
73
|
+
"underscore": "^1.13.3",
|
|
74
|
+
"ws": "^7.5.7"
|
|
75
|
+
},
|
|
76
|
+
"peerDependencies": {
|
|
77
|
+
"playwright": "^1.11.0",
|
|
78
|
+
"puppeteer": ">= 9.x <= 13.x"
|
|
79
|
+
},
|
|
80
|
+
"peerDependenciesMeta": {
|
|
81
|
+
"playwright": {
|
|
82
|
+
"optional": true
|
|
7
83
|
},
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
"keywords": [
|
|
11
|
-
"apify",
|
|
12
|
-
"headless",
|
|
13
|
-
"chrome",
|
|
14
|
-
"puppeteer",
|
|
15
|
-
"crawler",
|
|
16
|
-
"scraper"
|
|
17
|
-
],
|
|
18
|
-
"author": {
|
|
19
|
-
"name": "Apify",
|
|
20
|
-
"email": "support@apify.com",
|
|
21
|
-
"url": "https://apify.com"
|
|
22
|
-
},
|
|
23
|
-
"contributors": [
|
|
24
|
-
"Jan Curn <jan@apify.com>",
|
|
25
|
-
"Marek Trunkat <marek@apify.com>",
|
|
26
|
-
"Ondra Urban <ondra@apify.com>"
|
|
27
|
-
],
|
|
28
|
-
"license": "Apache-2.0",
|
|
29
|
-
"repository": {
|
|
30
|
-
"type": "git",
|
|
31
|
-
"url": "git+https://github.com/apify/apify-js"
|
|
32
|
-
},
|
|
33
|
-
"bugs": {
|
|
34
|
-
"url": "https://github.com/apify/apify-js/issues"
|
|
35
|
-
},
|
|
36
|
-
"homepage": "https://sdk.apify.com/",
|
|
37
|
-
"files": [
|
|
38
|
-
"build"
|
|
39
|
-
],
|
|
40
|
-
"scripts": {
|
|
41
|
-
"build": "npm run clean && tsc -p tsconfig.json && node ./tools/typescript_fixes.js",
|
|
42
|
-
"build-docs": "npm run build && node ./website/tools/build_docs.js",
|
|
43
|
-
"build-readme": "node ./tools/build_readme.js",
|
|
44
|
-
"test": "npm run build && jest",
|
|
45
|
-
"prepare": "npm run build",
|
|
46
|
-
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
|
|
47
|
-
"clean": "rimraf ./build",
|
|
48
|
-
"lint": "eslint ./src ./test",
|
|
49
|
-
"lint:fix": "eslint ./src ./test --ext .js,.jsx --fix"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@apify/consts": "^1.7.0",
|
|
53
|
-
"@apify/datastructures": "^1.0.1",
|
|
54
|
-
"@apify/log": "^1.2.0",
|
|
55
|
-
"@apify/ps-tree": "^1.1.4",
|
|
56
|
-
"@apify/storage-local": "^2.0.2",
|
|
57
|
-
"@apify/timeout": "^0.2.1",
|
|
58
|
-
"@apify/utilities": "^1.2.8",
|
|
59
|
-
"apify-client": "^2.3.1",
|
|
60
|
-
"browser-pool": "^3.1.3",
|
|
61
|
-
"cheerio": "1.0.0-rc.10",
|
|
62
|
-
"content-type": "^1.0.4",
|
|
63
|
-
"got-scraping": "^3.2.9",
|
|
64
|
-
"htmlparser2": "^7.0.0",
|
|
65
|
-
"iconv-lite": "^0.6.3",
|
|
66
|
-
"jquery": "^3.6.0",
|
|
67
|
-
"mime-types": "^2.1.35",
|
|
68
|
-
"ow": "^0.28.1",
|
|
69
|
-
"rimraf": "^3.0.2",
|
|
70
|
-
"semver": "^7.3.7",
|
|
71
|
-
"stream-json": "^1.7.4",
|
|
72
|
-
"tough-cookie": "^4.0.0",
|
|
73
|
-
"underscore": "^1.13.3",
|
|
74
|
-
"ws": "^7.5.7"
|
|
75
|
-
},
|
|
76
|
-
"peerDependencies": {
|
|
77
|
-
"playwright": "^1.11.0",
|
|
78
|
-
"puppeteer": ">= 9.x <= 13.x"
|
|
79
|
-
},
|
|
80
|
-
"peerDependenciesMeta": {
|
|
81
|
-
"playwright": {
|
|
82
|
-
"optional": true
|
|
83
|
-
},
|
|
84
|
-
"puppeteer": {
|
|
85
|
-
"optional": true
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"devDependencies": {
|
|
89
|
-
"@apify/eslint-config": "^0.3.1",
|
|
90
|
-
"@apify/tsconfig": "^0.1.0",
|
|
91
|
-
"@babel/cli": "^7.14.8",
|
|
92
|
-
"@babel/core": "^7.14.8",
|
|
93
|
-
"@babel/eslint-parser": "^7.14.7",
|
|
94
|
-
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
|
95
|
-
"@babel/preset-env": "^7.14.8",
|
|
96
|
-
"@babel/register": "^7.14.5",
|
|
97
|
-
"@types/content-type": "^1.1.5",
|
|
98
|
-
"@types/domhandler": "^2.4.2",
|
|
99
|
-
"@types/fs-extra": "^9.0.12",
|
|
100
|
-
"@types/htmlparser2": "^3.10.3",
|
|
101
|
-
"@types/jest": "^27.0.1",
|
|
102
|
-
"@types/node": "^16.0.0",
|
|
103
|
-
"@types/ps-tree": "^1.1.1",
|
|
104
|
-
"@types/request-promise-native": "^1.0.18",
|
|
105
|
-
"@types/rimraf": "^3.0.2",
|
|
106
|
-
"@types/semver": "^7.3.7",
|
|
107
|
-
"@types/sinon": "^10.0.0",
|
|
108
|
-
"@types/tough-cookie": "^4.0.1",
|
|
109
|
-
"@types/underscore": "^1.11.3",
|
|
110
|
-
"@types/ws": "^7.4.7",
|
|
111
|
-
"basic-auth-parser": "^0.0.2",
|
|
112
|
-
"body-parser": "^1.19.0",
|
|
113
|
-
"eslint": "^8.14.0",
|
|
114
|
-
"express": "^4.17.1",
|
|
115
|
-
"fpcollect": "^1.0.4",
|
|
116
|
-
"fpscanner": "^0.1.5",
|
|
117
|
-
"fs-extra": "^10.0.0",
|
|
118
|
-
"jest": "^27.1.1",
|
|
119
|
-
"jest-circus": "^27.1.1",
|
|
120
|
-
"playwright": "1.21.1",
|
|
121
|
-
"portastic": "^1.0.1",
|
|
122
|
-
"proxy": "^1.0.2",
|
|
123
|
-
"proxy-chain": "^2.0.1",
|
|
124
|
-
"puppeteer": "13.7.0",
|
|
125
|
-
"sinon": "^12.0.0",
|
|
126
|
-
"sinon-stub-promise": "^4.0.0",
|
|
127
|
-
"ts-jest": "^27.0.5",
|
|
128
|
-
"typescript": "4.5.5",
|
|
129
|
-
"ua-parser-js": "^1.0.2"
|
|
84
|
+
"puppeteer": {
|
|
85
|
+
"optional": true
|
|
130
86
|
}
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"@apify/eslint-config": "^0.3.1",
|
|
90
|
+
"@apify/tsconfig": "^0.1.0",
|
|
91
|
+
"@babel/cli": "^7.14.8",
|
|
92
|
+
"@babel/core": "^7.14.8",
|
|
93
|
+
"@babel/eslint-parser": "^7.14.7",
|
|
94
|
+
"@babel/plugin-syntax-class-properties": "^7.12.13",
|
|
95
|
+
"@babel/preset-env": "^7.14.8",
|
|
96
|
+
"@babel/register": "^7.14.5",
|
|
97
|
+
"@types/content-type": "^1.1.5",
|
|
98
|
+
"@types/domhandler": "^2.4.2",
|
|
99
|
+
"@types/fs-extra": "^9.0.12",
|
|
100
|
+
"@types/htmlparser2": "^3.10.3",
|
|
101
|
+
"@types/jest": "^27.0.1",
|
|
102
|
+
"@types/node": "^16.0.0",
|
|
103
|
+
"@types/ps-tree": "^1.1.1",
|
|
104
|
+
"@types/request-promise-native": "^1.0.18",
|
|
105
|
+
"@types/rimraf": "^3.0.2",
|
|
106
|
+
"@types/semver": "^7.3.7",
|
|
107
|
+
"@types/sinon": "^10.0.0",
|
|
108
|
+
"@types/tough-cookie": "^4.0.1",
|
|
109
|
+
"@types/underscore": "^1.11.3",
|
|
110
|
+
"@types/ws": "^7.4.7",
|
|
111
|
+
"basic-auth-parser": "^0.0.2",
|
|
112
|
+
"body-parser": "^1.19.0",
|
|
113
|
+
"eslint": "^8.14.0",
|
|
114
|
+
"express": "^4.17.1",
|
|
115
|
+
"fpcollect": "^1.0.4",
|
|
116
|
+
"fpscanner": "^0.1.5",
|
|
117
|
+
"fs-extra": "^10.0.0",
|
|
118
|
+
"jest": "^27.1.1",
|
|
119
|
+
"jest-circus": "^27.1.1",
|
|
120
|
+
"playwright": "1.21.1",
|
|
121
|
+
"portastic": "^1.0.1",
|
|
122
|
+
"proxy": "^1.0.2",
|
|
123
|
+
"proxy-chain": "^2.0.1",
|
|
124
|
+
"puppeteer": "13.7.0",
|
|
125
|
+
"sinon": "^12.0.0",
|
|
126
|
+
"sinon-stub-promise": "^4.0.0",
|
|
127
|
+
"ts-jest": "^27.0.5",
|
|
128
|
+
"typescript": "4.5.5",
|
|
129
|
+
"ua-parser-js": "^1.0.2"
|
|
130
|
+
}
|
|
131
131
|
}
|