forked from apify/crawlee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.97 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
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
{
"name": "apify",
"version": "1.0.2",
"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": ">=10.17.0"
},
"main": "build/index.js",
"types": "types/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/apifytech/apify-js"
},
"bugs": {
"url": "https://github.com/apifytech/apify-js/issues"
},
"homepage": "https://sdk.apify.com/",
"files": [
"build",
"types",
"types-apify"
],
"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 --testTimeout=30000 --maxWorkers=3 --silent",
"prepare": "npm run build",
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
"clean": "rm -rf ./build ./types",
"lint": "eslint ./src ./test",
"lint:fix": "eslint ./src ./test --ext .js,.jsx --fix"
},
"dependencies": {
"@apify/http-request": "^2.1.1",
"@apify/ps-tree": "^1.1.3",
"@apify/storage-local": "^1.0.4",
"@types/cheerio": "^0.22.22",
"@types/domhandler": "^2.4.1",
"@types/node": "^14",
"@types/puppeteer": "^5.4.0",
"@types/socket.io": "^2.1.11",
"@types/tough-cookie": "^4.0.0",
"apify-client": "^1.0.3",
"apify-shared": "^0.5.0",
"browser-pool": "^1.0.2",
"cheerio": "1.0.0-rc.3",
"content-type": "^1.0.4",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"htmlparser2": "^6.0.0",
"iconv-lite": "^0.6.2",
"jquery": "^3.5.1",
"mime-types": "^2.1.27",
"ow": "^0.23.0",
"proxy-chain": "^0.4.5",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"socket.io": "^3.0.3",
"stream-json": "^1.7.1",
"tough-cookie": "^4.0.0",
"underscore": "^1.11.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@apify/eslint-config": "^0.1.3",
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-syntax-class-properties": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@types/content-type": "^1.1.3",
"@types/fs-extra": "^9.0.2",
"@types/htmlparser2": "^3.10.2",
"@types/jest": "^26.0.14",
"@types/request-promise-native": "^1.0.17",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.4",
"@types/sinon": "^9.0.8",
"@types/underscore": "^1.10.24",
"@types/ws": "^7.2.7",
"basic-auth-parser": "^0.0.2",
"body-parser": "^1.19.0",
"csv-parse": "^4.12.0",
"eslint": "^7.11.0",
"fpcollect": "^1.0.4",
"fpscanner": "^0.1.5",
"jest": "^26.5.3",
"jest-circus": "^26.5.3",
"puppeteer": "5.5.0",
"playwright": "1.7.1",
"portastic": "^1.0.1",
"prettier": "^2.1.2",
"proxy": "^1.0.2",
"sinon": "^9.2.0",
"sinon-stub-promise": "^4.0.0",
"socket.io-client": "^3.0.3",
"ts-jest": "^26.4.1",
"typescript": "3.8.3",
"ua-parser-js": "^0.7.22",
"why-is-node-running": "^2.2.0"
}
}