mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
29 lines
749 B
Plaintext
29 lines
749 B
Plaintext
---
|
|
Title: License info, <%= projName %> <%= projVersion %>
|
|
---
|
|
|
|
# License information for <%= projName %> <%= projVersion %>
|
|
|
|
This page lists all third party libraries the project depends on.
|
|
|
|
## Libraries
|
|
|
|
| Name | Version | License |
|
|
| --- | --- | --- |
|
|
<% for (var packageName in packages) {
|
|
var lastAtSignPos = packageName.lastIndexOf('@');
|
|
|
|
var name = packageName.substring(0, lastAtSignPos);
|
|
var version = packageName.substring(lastAtSignPos + 1);
|
|
var pack = packages[packageName];
|
|
var licenses = pack['licenseExp'] || 'N/A';
|
|
var repo = pack['repository'];
|
|
var linkedName = name;
|
|
|
|
if (repo) {
|
|
linkedName = `[${name}](${repo})`
|
|
}
|
|
-%>
|
|
| <%= linkedName %> | <%= version %> | <%= licenses %> |
|
|
<% } %>
|