forked from apify/crawlee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.63 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
{
"name": "crawlee",
"private": true,
"version": "3.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.",
"workspaces": [
"packages/*"
],
"keywords": [
"apify",
"headless",
"chrome",
"puppeteer",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <[email protected]>",
"Marek Trunkat <[email protected]>",
"Ondra Urban <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/crawlee"
},
"bugs": {
"url": "https://github.com/apify/crawlee/issues"
},
"homepage": "https://crawlee.dev",
"scripts": {
"postinstall": "npx husky install",
"prepublishOnly": "turbo run copy",
"clean": "turbo run clean",
"build": "turbo run build",
"postbuild": "node ./scripts/typescript_fixes.mjs",
"ci:build": "turbo run build --cache-dir=\".turbo\"",
"postci:build": "node ./scripts/typescript_fixes.mjs",
"test": "jest --silent",
"test:e2e": "node test/e2e/run.mjs",
"coverage": "jest --coverage",
"release": "npm run build && lerna version patch && lerna publish from-package --contents dist --force-publish",
"publish:next": "lerna publish from-package --contents dist --dist-tag next --force-publish",
"release:next": "npm run build && npm run publish:next",
"lint": "eslint packages/browser-pool/tab-as-a-container packages/*/src packages/*/test test",
"lint:fix": "eslint packages/browser-pool/tab-as-a-container packages/*/src packages/*/test test --fix"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.2.3",
"@apify/log": "^2.1.3",
"@apify/tsconfig": "^0.1.0",
"@commitlint/config-conventional": "^17.1.0",
"@types/content-type": "^1.1.5",
"@types/deep-equal": "^1.0.1",
"@types/domhandler": "^2.4.2",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/htmlparser2": "^3.10.3",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.8",
"@types/lodash.merge": "^4.6.7",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.7.13",
"@types/proper-lockfile": "^4.1.2",
"@types/ps-tree": "^1.1.2",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.12",
"@types/stream-json": "^1.7.2",
"@types/tough-cookie": "^4.0.2",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"apify": "next",
"basic-auth-parser": "^0.0.2",
"body-parser": "^1.20.0",
"commitlint": "^17.1.2",
"deep-equal": "^2.0.5",
"eslint": "^8.23.0",
"express": "^4.18.1",
"fs-extra": "^10.1.0",
"gen-esm-wrapper": "^1.1.3",
"globby": "^13.1.2",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lerna": "^5.4.3",
"lint-staged": "^13.0.3",
"node-gyp": "^9.1.0",
"playwright": "1.25.2",
"portastic": "^1.0.1",
"proxy": "^1.0.2",
"puppeteer": "17.0.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"turbo": "1.4.6",
"typescript": "^4.8.2",
"ws": "^7.5.9"
},
"packageManager": "[email protected]"
}