forked from thomasdondorf/puppeteer-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "puppeteer-cluster",
"version": "0.22.0",
"description": "Cluster management for puppeteer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "./node_modules/.bin/jest",
"coverage": "./node_modules/.bin/jest --coverage",
"dev": "./node_modules/.bin/tsc --watch",
"lint": "./node_modules/.bin/tslint -c tslint.json --project test/_config/tsconfig.json \"src/**/*.ts\" \"test/**/*.ts\""
},
"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.1.1"
},
"peerDependencies": {
"puppeteer": "^1.5.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^24.9.0",
"@types/node": "^14.0.27",
"@types/puppeteer": "^3.0.1",
"@types/puppeteer-core": "^2.0.0",
"coveralls": "^3.1.0",
"express": "^4.17.1",
"jest": "^24.9.0",
"puppeteer": "^5.2.1",
"puppeteer-core": "^5.2.1",
"tree-kill": "^1.2.2",
"ts-jest": "^24.2.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.7"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/_config/setup.js"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}