package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@vitest/coverage-c8",
  3. "type": "module",
  4. "version": "0.23.4",
  5. "description": "C8 coverage provider for Vitest",
  6. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  7. "license": "MIT",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "homepage": "https://github.com/vitest-dev/vitest#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/vitest-dev/vitest.git",
  13. "directory": "packages/coverage-c8"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/vitest-dev/vitest/issues"
  17. },
  18. "keywords": [
  19. "vite",
  20. "vitest",
  21. "test",
  22. "coverage",
  23. "c8"
  24. ],
  25. "sideEffects": false,
  26. "exports": {
  27. ".": {
  28. "types": "./dist/index.d.ts",
  29. "import": "./dist/index.js"
  30. },
  31. "./*": "./*"
  32. },
  33. "main": "./dist/index.js",
  34. "module": "./dist/index.js",
  35. "types": "./dist/index.d.ts",
  36. "files": [
  37. "dist"
  38. ],
  39. "dependencies": {
  40. "c8": "^7.12.0",
  41. "vitest": "0.23.4"
  42. },
  43. "devDependencies": {
  44. "vite-node": "0.23.4"
  45. },
  46. "scripts": {
  47. "build": "rimraf dist && rollup -c",
  48. "dev": "rollup -c --watch --watch.include=src/**"
  49. }
  50. }