When including karma-html-reporter as a dependency in a project, a warning is shown any time npm audit is run. This PR updates the dependencies so the warning is no longer displayed.
$ npm audit
=== npm audit security report ===
┌──────────────────────────────────────────────────────────────────────────────┐
│ Manual Review │
│ Some vulnerabilities require your attention to resolve │
│ │
│ Visit https://go.npm.me/audit-guide for additional guidance │
└──────────────────────────────────────────────────────────────────────────────┘
┌───────────────┬──────────────────────────────────────────────────────────────┐
│ Low │ Prototype Pollution │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ Package │ lodash │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ Patched in │ >=4.17.5 │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ Dependency of │ karma-html-reporter [dev] │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ Path │ karma-html-reporter > lodash │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ More info │ https://nodesecurity.io/advisories/577 │
└───────────────┴──────────────────────────────────────────────────────────────┘
found 1 low severity vulnerability in 12000 scanned packages
1 vulnerability requires manual review. See the full report for details.
When including
karma-html-reporter
as a dependency in a project, a warning is shown any timenpm audit
is run. This PR updates the dependencies so the warning is no longer displayed.