-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@vitest/coverage-v8",
"type": "module",
"version": "4.1.1",
"description": "V8 coverage provider for Vitest",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://opencollective.com/vitest",
"homepage": "https://vitest.dev/guide/coverage",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest.git",
"directory": "packages/coverage-v8"
},
"bugs": {
"url": "https://github.com/vitest-dev/vitest/issues"
},
"keywords": [
"vite",
"vitest",
"test",
"coverage",
"v8"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"default": "./dist/browser.js"
},
"./intercept-new-run-context": {
"types": "./dist/intercept-new-run-context.d.ts",
"default": "./dist/intercept-new-run-context.js"
},
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "premove dist && rollup -c",
"dev": "rollup -c --watch --watch.include 'src/**'"
},
"peerDependencies": {
"@vitest/browser": "workspace:*",
"vitest": "workspace:*"
},
"peerDependenciesMeta": {
"@vitest/browser": {
"optional": true
}
},
"dependencies": {
"@bcoe/v8-coverage": "^1.0.2",
"@vitest/utils": "workspace:*",
"ast-v8-to-istanbul": "^1.0.0",
"get-port-please": "catalog:",
"istanbul-lib-coverage": "catalog:",
"istanbul-lib-report": "catalog:",
"istanbul-reports": "catalog:",
"magicast": "catalog:",
"obug": "catalog:",
"std-env": "catalog:",
"tinyrainbow": "catalog:",
"ws": "catalog:"
},
"devDependencies": {
"@types/istanbul-lib-coverage": "catalog:",
"@types/istanbul-lib-report": "catalog:",
"@types/istanbul-reports": "catalog:",
"@vitest/browser": "workspace:*",
"@vitest/browser-playwright": "workspace:*",
"pathe": "catalog:",
"vitest": "workspace:*"
}
}