Initial import with skill sheet working

This commit is contained in:
2024-12-04 00:11:23 +01:00
commit 9050c80ab4
4488 changed files with 671048 additions and 0 deletions

36
node_modules/spdx-exceptions/README.md generated vendored Normal file
View File

@ -0,0 +1,36 @@
The package exports an array of strings. Each string is an identifier
for a license exception under the [Software Package Data Exchange
(SPDX)][SPDX] software license metadata standard.
[SPDX]: https://spdx.org
## Copyright and Licensing
### SPDX
"SPDX" is a federally registered United States trademark of The Linux
Foundation Corporation.
From version 2.0 of the [SPDX] specification:
> Copyright © 2010-2015 Linux Foundation and its Contributors. Licensed
> under the Creative Commons Attribution License 3.0 Unported. All other
> rights are expressly reserved.
The Linux Foundation and the SPDX working groups are good people. Only
they decide what "SPDX" means, as a standard and otherwise. I respect
their work and their rights. You should, too.
### This Package
> I created this package by copying exception identifiers out of the
> SPDX specification. That work was mechanical, routine, and required no
> creativity whatsoever. - Kyle Mitchell, package author
United States users concerned about intellectual property may wish to
discuss the following Supreme Court decisions with their attorneys:
- _Baker v. Selden_, 101 U.S. 99 (1879)
- _Feist Publications, Inc., v. Rural Telephone Service Co._,
499 U.S. 340 (1991)

3
node_modules/spdx-exceptions/deprecated.json generated vendored Normal file
View File

@ -0,0 +1,3 @@
[
"Nokia-Qt-exception-1.1"
]

68
node_modules/spdx-exceptions/index.json generated vendored Normal file
View File

@ -0,0 +1,68 @@
[
"389-exception",
"Asterisk-exception",
"Autoconf-exception-2.0",
"Autoconf-exception-3.0",
"Autoconf-exception-generic",
"Autoconf-exception-generic-3.0",
"Autoconf-exception-macro",
"Bison-exception-1.24",
"Bison-exception-2.2",
"Bootloader-exception",
"Classpath-exception-2.0",
"CLISP-exception-2.0",
"cryptsetup-OpenSSL-exception",
"DigiRule-FOSS-exception",
"eCos-exception-2.0",
"Fawkes-Runtime-exception",
"FLTK-exception",
"fmt-exception",
"Font-exception-2.0",
"freertos-exception-2.0",
"GCC-exception-2.0",
"GCC-exception-2.0-note",
"GCC-exception-3.1",
"Gmsh-exception",
"GNAT-exception",
"GNOME-examples-exception",
"GNU-compiler-exception",
"gnu-javamail-exception",
"GPL-3.0-interface-exception",
"GPL-3.0-linking-exception",
"GPL-3.0-linking-source-exception",
"GPL-CC-1.0",
"GStreamer-exception-2005",
"GStreamer-exception-2008",
"i2p-gpl-java-exception",
"KiCad-libraries-exception",
"LGPL-3.0-linking-exception",
"libpri-OpenH323-exception",
"Libtool-exception",
"Linux-syscall-note",
"LLGPL",
"LLVM-exception",
"LZMA-exception",
"mif-exception",
"OCaml-LGPL-linking-exception",
"OCCT-exception-1.0",
"OpenJDK-assembly-exception-1.0",
"openvpn-openssl-exception",
"PS-or-PDF-font-exception-20170817",
"QPL-1.0-INRIA-2004-exception",
"Qt-GPL-exception-1.0",
"Qt-LGPL-exception-1.1",
"Qwt-exception-1.0",
"SANE-exception",
"SHL-2.0",
"SHL-2.1",
"stunnel-exception",
"SWI-exception",
"Swift-exception",
"Texinfo-exception",
"u-boot-exception-2.0",
"UBDL-exception",
"Universal-FOSS-exception-1.0",
"vsftpd-openssl-exception",
"WxWindows-exception-3.1",
"x11vnc-openssl-exception"
]

19
node_modules/spdx-exceptions/package.json generated vendored Normal file
View File

@ -0,0 +1,19 @@
{
"name": "spdx-exceptions",
"description": "list of SPDX standard license exceptions",
"version": "2.5.0",
"author": "The Linux Foundation",
"contributors": [
"Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com/)"
],
"license": "CC-BY-3.0",
"repository": "kemitchell/spdx-exceptions.json",
"files": [
"index.json",
"deprecated.json"
],
"scripts": {
"build": "node build.js",
"latest": "node latest.js"
}
}