@telefonica/opensource-scaffold
Version:
Scaffolding for open source projects. A CLI tool to create open source repositories with standard tools and resources
23 lines (22 loc) • 683 B
JavaScript
// SPDX-FileCopyrightText: 2024 Telefónica Innovación Digital
// SPDX-License-Identifier: Apache-2.0
/**
* The supported licenses in the scaffold
*/
export const SUPPORTED_LICENSES = [
"MPL-2.0",
"Apache-2.0",
"MIT",
"AGPL-3.0-or-later",
"AGPL-3.0-only",
];
/**
* The URLs to the FAQs for each license
*/
export const LICENSE_FAQS = {
"MPL-2.0": "https://www.mozilla.org/en-US/MPL/2.0/FAQ/",
"Apache-2.0": "https://www.apache.org/foundation/license-faq.html",
MIT: "https://opensource.org/licenses/MIT",
"AGPL-3.0-or-later": "https://www.gnu.org/licenses/agpl-3.0.html",
"AGPL-3.0-only": "https://www.gnu.org/licenses/agpl-3.0.html",
};