-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "@bgotink/playwright-coverage",
"version": "0.3.0",
"main": "lib/index.js",
"author": "Bram Gotink <[email protected]>",
"license": "MIT",
"description": "Track coverage in playwright tests using v8, without instrumentation",
"homepage": "https://github.com/bgotink/playwright-coverage",
"repository": {
"type": "git",
"url": "https://github.com/bgotink/playwright-coverage.git"
},
"keywords": [
"playwright",
"coverage"
],
"files": [
"lib",
"src",
"LICENSE.md",
"README.md"
],
"scripts": {
"prepack": "rm -fr lib && tsc"
},
"packageManager": "[email protected]",
"peerDependencies": {
"@playwright/test": "^1.14.1"
},
"devDependencies": {
"@jridgewell/trace-mapping": "^0.3.17",
"@playwright/test": "^1.14.1",
"@types/convert-source-map": "^2.0.3",
"@types/istanbul-lib-coverage": "^2.0.3",
"@types/istanbul-lib-report": "^3.0.0",
"@types/istanbul-reports": "^3.0.1",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.9.3",
"@types/node-fetch": "^2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
"comlink": "^4.4.2",
"convert-source-map": "^2.0.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.1.7",
"micromatch": "^4.0.8",
"node-fetch": "^3.2.0",
"v8-to-istanbul": "^9.3.0"
}
}