Gathering detailed insights and metrics for @deltacov/istanbul-lib-report
Gathering detailed insights and metrics for @deltacov/istanbul-lib-report
Gathering detailed insights and metrics for @deltacov/istanbul-lib-report
Gathering detailed insights and metrics for @deltacov/istanbul-lib-report
monorepo containing the various nuts and bolts that facilitate istanbul.js test instrumentation
npm install @deltacov/istanbul-lib-report
Typescript
Module System
Min. Node Version
Node Version
NPM Version
73
Supply Chain
80
Quality
75.2
Maintenance
100
Vulnerability
100
License
istanbul-lib-source-maps: v5.0.6
Updated on Jul 02, 2024
istanbul-lib-source-maps: v5.0.5
Updated on Jul 01, 2024
istanbul-lib-instrument: v6.0.3
Updated on Jun 30, 2024
istanbul-lib-source-maps: v5.0.4
Updated on Feb 26, 2024
istanbul-lib-source-maps: v5.0.3
Updated on Feb 26, 2024
istanbul-lib-source-maps: v5.0.2
Updated on Feb 26, 2024
JavaScript (97.51%)
CSS (2.46%)
Shell (0.03%)
Total Downloads
208
Last Day
1
Last Week
5
Last Month
14
Last Year
77
1,051 Stars
666 Commits
239 Forks
18 Watchers
17 Branches
123 Contributors
Updated on May 07, 2025
Minified
Minified + Gzipped
Latest Version
0.0.1
Package Id
@deltacov/istanbul-lib-report@0.0.1
Unpacked Size
31.07 kB
Size
9.21 kB
File Count
12
NPM Version
8.5.0
Node Version
16.14.2
Published on
Oct 25, 2023
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
66.7%
5
Compared to previous week
Last Month
55.6%
14
Compared to previous month
Last Year
-41.2%
77
Compared to previous year
3
Core reporting utilities for istanbul.
1const libReport = require('istanbul-lib-report'); 2const reports = require('istanbul-reports'); 3 4// coverageMap, for instance, obtained from istanbul-lib-coverage 5const coverageMap; 6 7const configWatermarks = { 8 statements: [50, 80], 9 functions: [50, 80], 10 branches: [50, 80], 11 lines: [50, 80] 12}; 13 14// create a context for report generation 15const context = libReport.createContext({ 16 dir: 'report/output/dir', 17 // The summarizer to default to (may be overridden by some reports) 18 // values can be nested/flat/pkg. Defaults to 'pkg' 19 defaultSummarizer: 'nested', 20 watermarks: configWatermarks, 21 coverageMap, 22}) 23 24// create an instance of the relevant report class, passing the 25// report name e.g. json/html/html-spa/text 26const report = reports.create('json', { 27 skipEmpty: configSkipEmpty, 28 skipFull: configSkipFull 29}) 30 31// call execute to synchronously create and write the report to disk 32report.execute(context)
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
security policy file detected
Details
Reason
Found 10/19 approved changesets -- score normalized to 5
Reason
0 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More