mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
20 lines
596 B
JSON
20 lines
596 B
JSON
{
|
|
"name": "@vitest/test-coverage",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "pnpm test:c8 && pnpm test:istanbul && pnpm test:custom && pnpm test:types",
|
|
"test:c8": "node ./testing.mjs --provider c8",
|
|
"test:custom": "node ./testing.mjs --provider custom",
|
|
"test:istanbul": "node ./testing.mjs --provider istanbul",
|
|
"test:types": "vitest typecheck --run --reporter verbose"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "latest",
|
|
"@vue/test-utils": "latest",
|
|
"happy-dom": "latest",
|
|
"vite": "latest",
|
|
"vitest": "workspace:*",
|
|
"vue": "latest"
|
|
}
|
|
}
|