@code-pushup/coverage-plugin 0.16.6 → 0.16.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +43 -3
package/index.js CHANGED
@@ -615,7 +615,7 @@ import chalk4 from "chalk";
615
615
 
616
616
  // packages/plugin-coverage/package.json
617
617
  var name = "@code-pushup/coverage-plugin";
618
- var version = "0.16.6";
618
+ var version = "0.16.7";
619
619
 
620
620
  // packages/plugin-coverage/src/lib/config.ts
621
621
  import { z as z13 } from "zod";
package/package.json CHANGED
@@ -1,10 +1,50 @@
1
1
  {
2
2
  "name": "@code-pushup/coverage-plugin",
3
- "version": "0.16.6",
3
+ "version": "0.16.7",
4
4
  "dependencies": {
5
5
  "@code-pushup/models": "*",
6
6
  "@code-pushup/utils": "*",
7
7
  "parse-lcov": "^1.0.4",
8
8
  "zod": "^3.22.4"
9
- }
10
- }
9
+ },
10
+ "license": "MIT",
11
+ "homepage": "https://github.com/code-pushup/cli#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/code-pushup/cli/issues"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/code-pushup/cli.git",
18
+ "directory": "packages/plugin-coverage"
19
+ },
20
+ "contributors": [
21
+ {
22
+ "name": "Igor Katsuba",
23
+ "email": "igor@katsuba.dev",
24
+ "url": "https://katsuba.dev"
25
+ },
26
+ {
27
+ "name": "Kateřina Pilátová",
28
+ "email": "katerina.pilatova@flowup.cz",
29
+ "url": "https://github.com/Tlacenka"
30
+ },
31
+ {
32
+ "name": "Matěj Chalk",
33
+ "email": "matej.chalk@flowup.cz",
34
+ "url": "https://github.com/matejchalk"
35
+ },
36
+ {
37
+ "name": "Michael Hladky",
38
+ "email": "michael.hladky@push-based.io",
39
+ "url": "https://push-based.io"
40
+ },
41
+ {
42
+ "name": "Michael Seredenko",
43
+ "email": "misha.seredenko@push-based.io",
44
+ "url": "https://github.com/MishaSeredenkoPushBased"
45
+ }
46
+ ],
47
+ "type": "module",
48
+ "main": "./index.js",
49
+ "types": "./src/index.d.ts"
50
+ }