superc8 1.0.0

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.
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "superc8",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "Output coverage reports using Node.js' built in coverage",
6
+ "main": "./index.js",
7
+ "types": "./index.d.ts",
8
+ "bin": "./bin/c8.js",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/coderaiser/superc8"
12
+ },
13
+ "scripts": {
14
+ "lint": "madrun lint",
15
+ "fix:lint": "madrun fix:lint",
16
+ "test": "madrun test",
17
+ "coverage": "madrun coverage",
18
+ "test:snap": "madrun test:snap",
19
+ "fixture": "madrun fixture"
20
+ },
21
+ "keywords": [
22
+ "coverage",
23
+ "v8",
24
+ "test",
25
+ "istanbul",
26
+ "profiler",
27
+ "inspector",
28
+ "node"
29
+ ],
30
+ "author": "Ben Coe <ben@npmjs.com>",
31
+ "license": "ISC",
32
+ "dependencies": {
33
+ "@bcoe/v8-coverage": "^1.0.1",
34
+ "@istanbuljs/schema": "^0.1.3",
35
+ "find-up": "^8.0.0",
36
+ "foreground-child": "^4.0.3",
37
+ "istanbul-lib-coverage": "^3.2.0",
38
+ "istanbul-lib-report": "^3.0.1",
39
+ "istanbul-reports": "^3.1.6",
40
+ "test-exclude": "^8.0.0",
41
+ "try-to-catch": "^4.0.5",
42
+ "v8-to-istanbul": "^9.0.0",
43
+ "yargs": "^18.0.0",
44
+ "yargs-parser": "^22.0.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^25.3.2",
48
+ "chai": "^6.2.2",
49
+ "chai-jest-snapshot": "^2.0.0",
50
+ "cross-env": "^10.1.0",
51
+ "eslint-plugin-putout": "^31.0.1",
52
+ "madrun": "^13.0.0",
53
+ "mocha": "^11.0.1",
54
+ "putout": "^42.0.18",
55
+ "ts-node": "^10.7.0",
56
+ "typescript": "^5.0.0"
57
+ },
58
+ "peerDependencies": {
59
+ "monocart-coverage-reports": "^2"
60
+ },
61
+ "peerDependenciesMeta": {
62
+ "monocart-coverage-reports": {
63
+ "optional": true
64
+ }
65
+ },
66
+ "engines": {
67
+ "node": ">=22"
68
+ },
69
+ "files": [
70
+ "index.js",
71
+ "index.d.ts",
72
+ "lib",
73
+ "bin"
74
+ ]
75
+ }