mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* ordering fix use common method in datatable * ordering fix use common method in datatable * fix sorting ps e2e * fix ordering * move search page in testing and fix sorting boolean flag * fix import * fix moment * use common sort method in document list test * use common sort method in document list test * remove unnecesary sort control * remove duplicate test * remove e2e suspended removed status * documentation
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
---
|
|
Title: License info, <%= projName %> <%= projVersion %>
|
|
---
|
|
|
|
# License information for <%= projName %> <%= projVersion %>
|
|
|
|
This page lists all third party libraries that ADF <%= projVersion %> depends on.
|
|
|
|
## Risks
|
|
|
|
- Critical risk dependencies <%= jsonAudit.metadata.vulnerabilities.critical %>
|
|
- High risk dependencies <%= jsonAudit.metadata.vulnerabilities.high %>
|
|
- Moderate risk dependencies <%= jsonAudit.metadata.vulnerabilities.moderate %>
|
|
- Low risk dependencies <%= jsonAudit.metadata.vulnerabilities.low %>
|
|
|
|
Dependencies analyzed <%= jsonAudit.metadata.totalDependencies %>
|
|
|
|
## Libraries
|
|
|
|
|
|
| Severity | Vulnerable versions | Module |
|
|
| --- | --- | --- |
|
|
<%
|
|
for(var currentAdvisories in jsonAudit.advisories) {
|
|
|
|
severity = jsonAudit.advisories[currentAdvisories].severity;
|
|
vulnerable_versions = JSON.stringify(jsonAudit.advisories[currentAdvisories].vulnerable_versions);
|
|
module = jsonAudit.advisories[currentAdvisories].module_name;
|
|
-%>
|
|
|<%= severity %> | <%= vulnerable_versions %> | <%= module %> |
|
|
<% } %>
|