-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 KB
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": "cypress-code-coverage-v8",
"version": "1.0.6",
"description": "Saves the code coverage collected during Cypress tests using V8",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parkuman/cypress-code-coverage-v8.git"
},
"keywords": [
"cypress",
"cypress-plugin",
"code",
"coverage",
"v8"
],
"files": [
"task.js",
"task.d.ts",
"support.js",
"support.d.ts"
],
"author": "Parker Rowe <parker@prowe.ca> (http://prowe.ca/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/parkuman/cypress-code-coverage-v8/issues"
},
"homepage": "https://github.com/parkuman/cypress-code-coverage-v8#readme",
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
"chrome-remote-interface": "^0.33.2",
"debug": "^4.4.0",
"fast-glob": "^3.3.3",
"inspector": "^0.5.0",
"istanbul-lib-coverage": "^3.2.2",
"minimatch": "^10.0.1",
"typescript": "^5.7.3",
"v8-to-istanbul": "^9.3.0"
},
"peerDependencies": {
"cypress": "^14.0.0"
},
"devDependencies": {
"@jridgewell/trace-mapping": "^0.3.25",
"@types/chrome-remote-interface": "^0.31.14",
"@types/debug": "^4.1.12",
"@types/node": "^24.9.0"
}
}