-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "@bgotink/playwright-coverage",
"version": "0.2.1",
"main": "lib/index.js",
"author": "Bram Gotink <bram@gotink.me>",
"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": "yarn@3.5.0",
"peerDependencies": {
"@playwright/test": "^1.14.1"
},
"devDependencies": {
"@jridgewell/trace-mapping": "^0.3.17",
"@playwright/test": "^1.14.1",
"@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.3.1",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.2",
"micromatch": "^4.0.4",
"node-fetch": "^3.2.0",
"v8-to-istanbul": "^9.1.0"
}
}