-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 806 Bytes
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
{
"name": "crawl-utils",
"version": "0.1.0",
"description": "",
"type": "module",
"main": "crawl.js",
"bin": "crawl.js",
"scripts": {
"devBuild": "tsc --watch --outDir build",
"devServe": "pnpx serve test/public",
"test": "rsync -a test/public build/test/ && mocha build/test",
"crawl": "node build/src/crawl.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^12.1.0",
"crawlee": "^3.11.5",
"es-main": "^1.3.0",
"got": "^14.4.3",
"playwright": "^1.48.2"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.1",
"chai": "^5.1.2",
"express": "^4.21.1",
"mocha": "^10.8.2",
"typescript": "^5.6.3"
}
}