forked from thomasdondorf/puppeteer-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.71 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.15.2",
"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": "GPL-3.0",
"dependencies": {
"debug": "^4.1.1"
},
"peerDependencies": {
"puppeteer": "^1.5.0"
},
"devDependencies": {
"@types/debug": "^4.1.1",
"@types/jest": "^24.0.6",
"@types/node": "^11.9.5",
"@types/puppeteer": "^1.12.1",
"@types/puppeteer-core": "^1.9.0",
"coveralls": "^3.0.3",
"express": "^4.16.4",
"jest": "^24.3.1",
"puppeteer": "^1.12.2",
"puppeteer-core": "^1.12.2",
"tree-kill": "^1.2.0",
"ts-jest": "^24.0.0",
"tslint": "^5.13.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.3.3333"
},
"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"
]
}
}