1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "@vitest/coverage-c8",
- "type": "module",
- "version": "0.23.4",
- "description": "C8 coverage provider for Vitest",
- "author": "Anthony Fu <anthonyfu117@hotmail.com>",
- "license": "MIT",
- "funding": "https://github.com/sponsors/antfu",
- "homepage": "https://github.com/vitest-dev/vitest#readme",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vitest-dev/vitest.git",
- "directory": "packages/coverage-c8"
- },
- "bugs": {
- "url": "https://github.com/vitest-dev/vitest/issues"
- },
- "keywords": [
- "vite",
- "vitest",
- "test",
- "coverage",
- "c8"
- ],
- "sideEffects": false,
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.js"
- },
- "./*": "./*"
- },
- "main": "./dist/index.js",
- "module": "./dist/index.js",
- "types": "./dist/index.d.ts",
- "files": [
- "dist"
- ],
- "dependencies": {
- "c8": "^7.12.0",
- "vitest": "0.23.4"
- },
- "devDependencies": {
- "vite-node": "0.23.4"
- },
- "scripts": {
- "build": "rimraf dist && rollup -c",
- "dev": "rollup -c --watch --watch.include=src/**"
- }
- }
|