-
Notifications
You must be signed in to change notification settings - Fork 309
/
package.json
44 lines (44 loc) · 1022 Bytes
/
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
{
"name": "puppeteer-cluster",
"version": "0.24.0",
"description": "Cluster management for puppeteer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"dev": "tsc --watch"
},
"author": "Thomas Dondorf",
"repository": {
"type": "git",
"url": "https://github.com/thomasdondorf/puppeteer-cluster.git"
},
"homepage": "https://github.com/thomasdondorf/puppeteer-cluster",
"keywords": [
"puppeteer",
"cluster",
"pool"
],
"license": "MIT",
"dependencies": {
"debug": "^4.3.4"
},
"peerDependencies": {
"puppeteer": ">=22.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.28",
"coveralls": "^3.1.1",
"express": "^4.18.3",
"jest": "^29.7.0",
"puppeteer": "^22.5.0",
"puppeteer-core": "^22.5.0",
"tree-kill": "^1.2.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}