diff --git a/.github/workflows/check_licenses.yml b/.github/workflows/check_licenses.yml new file mode 100644 index 0000000000..f9973cb350 --- /dev/null +++ b/.github/workflows/check_licenses.yml @@ -0,0 +1,180 @@ +name: Check and update licenses + +on: + push: + branches: [ "main", "licenses" ] # this should be kept like this for now because we will continue to do testing in this branches + pull_request: + branches: [ "main", "licenses" ] + # types: [opened, synchronized] +permissions: + contents: read # we dont need to write + +jobs: + license_update: + + strategy: + fail-fast: false + matrix: + # we just do these two architectures for now as they are ones causing more discrepancies + include: + - runs_on: ubuntu-24.04-arm + EESSI_SOFTWARE_SUBDIR_OVERRIDE: aarch64/generic + NO_SLASH_NAME: aarch64-generic + - runs_on: ubuntu-24.04 + EESSI_SOFTWARE_SUBDIR_OVERRIDE: x86_64/generic + NO_SLASH_NAME: x86_64-generic + + runs-on: ${{ matrix.runs_on }} + + steps: + - uses: actions/checkout@v4 + - uses: eessi/github-action-eessi@v3 + + - name: Check for missing installations + env: + PR_NUMBER: ${{ github.event.number }} + + run: | + export EESSI_SOFTWARE_SUBDIR_OVERRIDE=${{matrix.EESSI_SOFTWARE_SUBDIR_OVERRIDE}} + source /cvmfs/software.eessi.io/versions/${EESSI_VERSION}/init/bash + + # set $EESSI_CPU_FAMILY to the CPU architecture that corresponds to $EESSI_SOFTWARE_SUBDIR_OVERRIDE (part before the first slash), + # to prevent issues with checks in the Easybuild configuration that use this variable + export EESSI_CPU_FAMILY=${EESSI_SOFTWARE_SUBDIR_OVERRIDE%%/*} + export EESSI_PREFIX=/cvmfs/software.eessi.io/versions/${EESSI_VERSION} + export EESSI_OS_TYPE=linux + env | grep ^EESSI | sort + module load EasyBuild + + # create a temporary directory to store the output + LOCAL_TMPDIR=$(mktemp -d) + eb_missing_out=$LOCAL_TMPDIR/eb_missing.out + echo "eb_missing_out=$LOCAL_TMPDIR/eb_missing.out" >> $GITHUB_ENV + echo "Temporary directory created: ${eb_missing_out}" + file_list=$(curl -sS \ + -H "Accept: application/vnd.github+json" \ + "https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/${PR_NUMBER}/files?per_page=100" | + jq -r '.[].filename | select(test("easystack"))') + echo "Files to check:" + echo $file_list + + for easystack_file in $file_list; do + eb_version=$(echo ${easystack_file} | sed 's/.*eb-\([0-9.]*\).*.yml/\1/g') + echo "check missing installations for ${easystack_file} with EasyBuild ${eb_version}..." + module purge + module load EasyBuild/${eb_version} + module load EESSI-extend/${EESSI_VERSION}-easybuild + which eb + ${EB:-eb} --version + ${EB:-eb} --missing --easystack ${easystack_file} 2>&1 | tee ${eb_missing_out} + + exit_code=${PIPESTATUS[0]} + #echo "exit code for eb --missing --easystack ${easystack_file} is ${exit_code}" + grep " required modules missing:" ${eb_missing_out} # > /dev/null + exit_code=$? + + if [[ ${exit_code} -eq 0 ]]; then echo "missing installations found for ${easystack_file}!" >&2; + else + echo "no missing installations found for ${easystack_file}." + exit 0 + fi + done + + - name: Check for software existing in licenses.yml file + run: | + # double check this + if [ -s licenses/licenses.yml ]; then + echo "licenses.yml file exists, checking for software versions that are not in the file..." + echo "tmp file check: ${eb_missing_out}" + # cat ${eb_missing_out} + grep -oP '^\* \K[^ ]+' "${eb_missing_out}" | sort -u > missing.txt + echo "Modules to check" + cat missing.txt + + # Check if software exists as key in YAML + + while IFS= read -r module; do + # module format: NAME/VERSION-TOOLCHAIN + # e.g. ALL/0.9.2-foss-2023a + + name="${module%%/*}" # ALL + rest="${module#*/}" # 0.9.2-foss-2023a + version="${rest%%-*}" # 0.9.2 + + # Check if licenses.yml has: NAME -> VERSION + if ! yq -e ".\"$name\".\"$version\"" "$LICENSES_YAML" >/dev/null 2>&1; then + echo "$module" >> missing_modules.txt + fi + done < missing.txt + + echo "Modules not in licenses.yml: " + cat missing_modules.txt + + else + echo "licenses.yml file does not exist? what happened?" + exit 1 + fi + + - name : Search sources for missing modules + run: | + if [ -s missing_modules.txt ]; then + echo "Searching sources for missing modules..." + # Generates a "modules_results.json" file + module load Python-bundle-PyPI/2023.06-GCCcore-12.3.0 + python licenses/parsing_easyconfigs.py missing_modules.txt + cat modules_results.json + fi + + - name : Try to fetch the license + run: | + if [ -s modules_results.json ]; then + echo "modules_results.json file exists, trying to fetch the license..." + ml Python-bundle-PyPI/2023.06-GCCcore-12.3.0 BeautifulSoup/4.12.2-GCCcore-12.3.0 PyYAML/6.0-GCCcore-12.3.0 + python licenses/parse_licenses.py modules_results.json licenses/licenses.yml + cat temporal_print.yaml + else + echo "modules_results.json file does not exist, skipping license fetch." + fi + + - name: Check and generate report on missing licenses + run: | + echo "" + # Look for missing licences in licenses_aux.yaml + OUTPUT=$(yq eval '.. | select(has("License")) | select(.License == "not found" or .License == "Other") | (path | join(" --> ")) + ": " + .License' licenses_aux.yaml) + + # Check if the variable is NOT empty (-n) + if [[ -n "$OUTPUT" ]]; then + echo "Missing licenses found, please check the missing_report.yaml file." + echo "$OUTPUT" + echo "$OUTPUT" > missing_report.yaml + else + echo "No missing licenses found." + fi + + # Create a patch file + diff -Naur licenses/licenses.yml licenses_aux.yaml > patch.txt || true + echo "patch.txt file generated." + + + - name: Generate artifacts + uses: actions/upload-artifact@v4 + with: + name: license-results-${{ matrix.NO_SLASH_NAME }} + path: | + missing_report.yaml + patch.txt + + + - name: How to edit artifacts and apply patch + run: | + echo "Artifacts generated. To resolve the missing licenses, please edit 'patch.txt' manually, making sure you follow the following format: " + echo "" + echo ":" + echo " :" + echo " License: " + echo " Permission to redistribute: " + echo " Retrieved from: " + echo "" + echo " Once edited, you can apply the patch automatically using the patch command from the licenses directory: " + + echo " patch < " diff --git a/.gitignore b/.gitignore index 52e4e61140..528f471250 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.pyc *.pyo +venv/ \ No newline at end of file diff --git a/licenses/README.md b/licenses/README.md new file mode 100644 index 0000000000..36a7615b21 --- /dev/null +++ b/licenses/README.md @@ -0,0 +1,3 @@ +see https://spdx.org/licenses + +Python function to download SPDX list of licenses is available in `spdx.py` diff --git a/licenses/extension_licenses.yml b/licenses/extension_licenses.yml new file mode 100644 index 0000000000..a27c6a53fb --- /dev/null +++ b/licenses/extension_licenses.yml @@ -0,0 +1,31698 @@ +ASE: + 3.22.1: + ase: + License: + - LGPL-2.1+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/ase/ase + ase-ext: + License: + - LGPL-2.1+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/ase/ase_ext + pytest-mock: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-mock +Arrow: + 14.0.1: + pyarrow: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/apache/arrow + 16.1.0: + pyarrow: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/apache/arrow +BeautifulSoup: + 4.12.2: + BeautifulSoup: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/BeautifulSoup/ + soupsieve: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/facelessuser/soupsieve +BioPerl: + 1.7.8: + Bio::Procedural: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Bio::Procedural + BioPerl: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/BioPerl + XML::Writer: + License: Unrestricted + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::Writer#COPYRIGHT-AND-LICENSE +Cartopy: + 0.22.0: + Cartopy: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Cartopy + OWSLib: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/OWSLib + pyepsg: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/rhattersley/pyepsg + pykdtree: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/storpipfugl/pykdtree + pyshp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/GeospatialPython/pyshp +Cassiopeia: + 2.0.0: + Cassiopeia: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/cassiopeia + Levenshtein: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Levenshtein + bleach: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/mozilla/bleach + comm: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/comm + defusedxml: + License: + - Python-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/tiran/defusedxml + deprecation: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briancurtin/deprecation + fastjsonschema: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/horejsek/python-fastjsonschema + hits: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/jeffhussmann/hits + ipywidgets: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter-widgets/ipywidgets + itolapi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/albertyw/itolapi + jupyter_client: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter_client + jupyter_core: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter_core + jupyter_packaging: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter-packaging + jupyterlab_pygments: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyterlab/jupyterlab_pygments + jupyterlab_widgets: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/jupyterlab-widgets + mistune: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/lepture/mistune + nbclient: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/nbclient + nbconvert: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/nbconvert + nbformat: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/nbformat + ngs-tools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Lioscro/ngs-tools + pandocfilters: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jgm/pandocfilters + python-Levenshtein: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://pypi.org/project/python-Levenshtein + shortuuid: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/skorokithakis/shortuuid + tinycss2: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/Kozea/tinycss2 + traitlets: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/traitlets + widgetsnbextension: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/widgetsnbextension +Fiona: + 1.9.5: + click-plugins: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/click-contrib/click-plugins + cligj: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mapbox/cligj + fiona: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/Toblerity/Fiona + munch: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Infinidat/munch +Flask: + 2.2.3: + Flask: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/flask + Flask-Cors: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/corydolphin/flask-cors + Flask-Session: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets-eco/flask-session + Werkzeug: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/werkzeug + asgiref: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/django/asgiref + cachelib: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets-eco/cachelib + itsdangerous: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/itsdangerous +GROMACS: + '2024.1': + gmxapi: + License: + - LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://github.com/kassonlab/gromacs-gmxapi + '2024.3': + gmxapi: + License: + - LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://github.com/kassonlab/gromacs-gmxapi + '2024.4': + gmxapi: + License: + - LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://github.com/kassonlab/gromacs-gmxapi +GitPython: + 3.1.40: + GitPython: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/GitPython/ + gitdb: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/gitpython-developers/gitdb + smmap: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/gitpython-developers/smmap +IPython: + 8.14.0: + asttokens: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gristlabs/asttokens + backcall: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/takluyver/backcall + executing: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/alexmojaki/executing + ipython: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/ipython + jedi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/davidhalter/jedi + matplotlib-inline: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/matplotlib-inline + parso: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/davidhalter/parso + pickleshare: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pickleshare/pickleshare + prompt_toolkit: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/prompt-toolkit/ + pure_eval: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pure-eval/ + stack_data: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/stack-data/ + traitlets: + License: + - Other + Permission to redistribute: false + Retrieved from: https://github.com/ipython/traitlets + 8.17.2: + asttokens: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gristlabs/asttokens + backcall: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/takluyver/backcall + executing: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/alexmojaki/executing + ipython: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/ipython + matplotlib-inline: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/matplotlib-inline + pickleshare: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pickleshare/pickleshare + prompt_toolkit: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/prompt-toolkit/ + pure_eval: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pure-eval/ + stack_data: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/stack-data/ + traitlets: + License: + - Other + Permission to redistribute: false + Retrieved from: https://github.com/ipython/traitlets +JupyterLab: + 4.0.5: + async-lru: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/aio-libs/async-lru + json5: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dpranke/pyjson5 + jupyter-lsp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter-lsp/jupyterlab-lsp + jupyterlab: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jupyterlab/jupyterlab + jupyterlab_server: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyterlab/jupyterlab_server +LRBinner: + '0.1': + LRBinner: + License: GPL-2.0-only + Permission to redistribute: true + Retrieved from: https://github.com/anuradhawick/LRBinner + tabulate: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/astanin/python-tabulate +LightGBM: + 4.5.0: + lightgbm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/microsoft/LightGBM +MDAnalysis: + 2.4.2: + GridDataFormats: + License: LGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://pypi.org/project/GridDataFormats + MDAnalysis: + License: LGPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://pypi.org/project/MDAnalysis + fasteners: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/harlowja/fasteners + funcsigs: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/testing-cabal/funcsigs + gsd: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/glotzerlab/gsd + mmtf-python: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rcsb/mmtf-python + mrcfile: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ccpem/mrcfile + msgpack: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/msgpack/msgpack-python +Mako: + 1.2.4: + Mako: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Mako/ + MarkupSafe: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/MarkupSafe/ +MultiQC: + '1.14': + Markdown: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/Python-Markdown/markdown + Pygments: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Pygments + coloredlogs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/xolox/python-coloredlogs + colormath: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/gtaylor/python-colormath + commonmark: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rtfd/commonmark.py + humanfriendly: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/xolox/python-humanfriendly + lzstring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gkovacs/lz-string-python + markdown-it-py: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/executablebooks/markdown-it-py + mdurl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/executablebooks/mdurl + multiqc: + License: + - GPL-3.0-only + Permission to redistribute: true + Retrieved from: https://github.com/MultiQC/MultiQC + rich: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Textualize/rich + rich-click: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ewels/rich-click + spectra: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jsvine/spectra +NLTK: + 3.8.1: + NLTK: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/nltk + python-crfsuite: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/scrapinghub/python-crfsuite + regex: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/mrabarnett/mrab-regex +Perl: + 5.36.0: + Algorithm::Dependency: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Algorithm-Dependency + Algorithm::Diff: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Algorithm::Diff#LICENSE + AnyEvent: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/AnyEvent-7.17/source/COPYING + App::Cmd: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/App-Cmd + App::cpanminus: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/cpanminus + AppConfig: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilbowers/AppConfig + Archive::Extract: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Archive-Extract + Array::Transpose: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mrdvt92/perl-Array-Transpose + Array::Utils: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Array::Utils#COPYRIGHT + Authen::NTLM: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Authen::NTLM#HISTORY + Authen::SASL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/gbarr/perl-authen-sasl + AutoLoader: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=AutoLoader + B::Hooks::EndOfScope: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/B-Hooks-EndOfScope + B::Lint: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=B-Lint + Business::ISBN: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briandfoy/business-isbn + Business::ISBN::Data: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briandfoy/business-isbn-data + CPAN::Meta::Check: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/cpan-meta-check + CPANPLUS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jib/cpanplus-devel + Canary::Stability: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/Canary-Stability-2013/source/COPYING + Capture::Tiny: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Capture-Tiny + Carp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Carp + Carp::Clan: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Carp-Clan + Carp::Heavy: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/XSAWYERX/Carp-1.50/source/README + Class::Accessor: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Class-Accessor + Class::DBI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Class::DBI#LICENSE + Class::DBI::SQLite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Class::DBI#LICENSE + Class::Data::Inheritable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Class-Data-Inheritable + Class::ISA: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Class::Inspector#COPYRIGHT-AND-LICENSE + Class::Inspector: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/plicease/Class-Inspector + Class::Load: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Class-Load + Class::Load::XS: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/moose/Class-Load-XS + Class::Singleton: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/steve-m-hay/Class-Singleton + Class::Tiny: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Class-Tiny + Class::Trigger: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/Class-Trigger + Clone: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Clone + Clone::Choose: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/Clone-Choose + Config::General: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Config-General + Config::INI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Config-INI + Config::MVP: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Config-MVP + Config::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Config::Simple#COPYRIGHT + Config::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/Config-Tiny + Crypt::DES: + License: + - Other + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/Crypt::DES#COPYRIGHT + Crypt::Rijndael: + License: + - LGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://github.com/leont/crypt-rijndael + Cwd: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Cwd#COPYRIGHT + Cwd::Guard: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/kazeburo/Cwd-Guard + DBD::CSV: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-dbi/DBD-CSV + DBD::SQLite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=DBD-SQLite + DBI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=DBI + DBIx::Admin::TableInfo: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/DBIx-Admin-TableInfo + DBIx::ContextualFetch: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/DBIx::ContextualFetch#LICENSE + DBIx::Simple: + License: + - Other + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/DBIx::Simple#LICENSE + Data::Dump: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Data-Dump + Data::Dumper: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Data-Dumper + Data::Dumper::Concise: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/Data-Dumper-Concise + Data::Grove: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/KMACLEOD/libxml-perl-0.08/source/README + Data::OptList: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Data-OptList + Data::Section: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Data-Section + Data::Section::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/Data-Section-Simple + Data::Stag: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Data::Stag#COPYRIGHT + Data::Types: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/manwar/Data-Types + Data::UUID: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Data-UUID + Date::Handler: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Date::Handler#COPYRIGHT + Date::Language: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/ATOOMIC/TimeDate-2.33/source/README + DateTime: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/DateTime.pm + DateTime::Locale: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/DateTime-Locale + DateTime::TimeZone: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/DateTime-TimeZone + DateTime::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/DateTime-Tiny + Devel::CheckCompiler: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tokuhirom/Devel-CheckCompiler + Devel::CheckLib: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Devel-CheckLib + Devel::Cycle: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Devel::Cycle#COPYRIGHT-AND-LICENSE + Devel::GlobalDestruction: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-GlobalDestruction.git + Devel::OverloadInfo: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ilmari/Devel-OverloadInfo + Devel::Size: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Devel-Size + Devel::StackTrace: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Devel-StackTrace + Digest::HMAC: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/arodland/Digest-HMAC + Digest::MD5::File: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Digest::MD5::File#COPYRIGHT-AND-LICENSE + Digest::SHA1: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Digest-SHA1 + Dist::CheckConflicts: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/doy/dist-checkconflicts + Dist::Zilla: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Dist-Zilla + Email::Date::Format: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Email-Date-Format + Encode: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Encode + Encode::Locale: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Encode-Locale + Error: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/perl-error.pm + Eval::Closure: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/doy/eval-closure + Exception::Class: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Exception-Class + Expect: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jacoby/expect.pm + Exporter: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Exporter + Exporter::Declare: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Exporter-Declare + Exporter::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tobyink/p5-exporter-tiny + ExtUtils::CBuilder: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder + ExtUtils::Config: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/extutils-config + ExtUtils::Constant: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/NWCLARK/ExtUtils-Constant-0.25/source/README + ExtUtils::CppGuess: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tsee/extutils-cppguess + ExtUtils::Helpers: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/extutils-helpers + ExtUtils::InstallPaths: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/extutils-installpaths + ExtUtils::MakeMaker: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=ExtUtils-MakeMaker + ExtUtils::ParseXS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/ExtUtils::ParseXS#COPYRIGHT + Fennec::Lite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Fennec-Lite + File::CheckTree: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rafl/file-checktree + File::Copy::Recursive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/drmuey/p5-File-Copy-Recursive + File::Copy::Recursive::Reduced: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jkeenan/file-copy-recursive-reduced + File::Find::Rule: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/File::Find::Rule#COPYRIGHT + File::Find::Rule::Perl: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/File-Find-Rule-Perl + File::Grep: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MNEYLON/File-Grep-0.02/source/README + File::HomeDir: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/File-HomeDir + File::Listing: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/PerlAlien/File-Listing + File::Next: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=File-Next + File::Path: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jkeenan/File-Path + File::Remove: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/File-Remove + File::ShareDir: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/File-ShareDir + File::ShareDir::Install: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/File-ShareDir-Install + File::Slurp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perhunter/slurp + File::Slurp::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/file-slurp-tiny + File::Slurper: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/file-slurp-sane + File::Spec: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/File::Spec#COPYRIGHT + File::Temp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/File-Temp + File::Which: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/uperl/File-Which + File::pushd: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/File-pushd + Font::TTF: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/silnrsi/font-ttf + GO: + License: Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/GO + GO::Utils: + License: MIT + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/GO::Utils::File + Getopt::Long: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/sciurius/perl-Getopt-Long + Getopt::Long::Descriptive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Getopt-Long-Descriptive + Git: + License: + - LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Git#COPYRIGHT + Graph: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/graphviz-perl/Graph + Graph::ReadWrite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilb/Graph-ReadWrite + HTML::Entities::Interpolate: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/HTML-Entities-Interpolate + HTML::Form: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTML-Form + HTML::Parser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTML-Parser + HTML::Tagset: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/petdance/html-tagset + HTML::Template: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=HTML-Template + HTML::Tree: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/kentfredric/HTML-Tree + HTTP::Cookies: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTTP-Cookies + HTTP::Daemon: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTTP-Daemon + HTTP::Date: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTTP-Date + HTTP::Negotiate: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=HTTP-Negotiate + HTTP::Request: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/HTTP::Request#COPYRIGHT-AND-LICENSE + HTTP::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/HTTP-Tiny + Hash::Merge: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/Hash-Merge + Heap: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Heap#COPYRIGHT + IO::HTML: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/madsen/io-html + IO::Socket::SSL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/noxxi/p5-io-socket-ssl + IO::String: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/IO::String#COPYRIGHT + IO::Stringy: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/genio/IO-Stringy + IO::Tty: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=IO-Tty + IPC::Cmd: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=IPC-Cmd + IPC::Run: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=IPC-Run + IPC::Run3: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/IPC::Run3#LICENSE + IPC::System::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/pjf/ipc-system-simple + Ima::DBI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Ima::DBI#LICENSE + Import::Into: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Import-Into.git + Importer: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Importer + Inline: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/inline-pm + JSON: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=JSON + JSON::XS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/JSON-XS-4.03/source/COPYING + LWP::MediaTypes: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/lwp-mediatypes + LWP::Protocol::https: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/LWP-Protocol-https + LWP::Simple: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/LWP::Simple + Lingua::EN::PluralToSingular: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Lingua-EN-PluralToSingular + List::AllUtils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/List-AllUtils + List::MoreUtils: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/List-MoreUtils + List::MoreUtils::XS: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/List-MoreUtils-XS + List::SomeUtils: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/List-SomeUtils + List::Util: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/List::Util#COPYRIGHT + List::UtilsBy: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=List-UtilsBy + Locale::Maketext::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Locale-Maketext-Simple + Log::Dispatch: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Log-Dispatch + Log::Dispatchouli: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Log-Dispatchouli + Log::Handler: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Log-Handler + Log::Log4perl: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/mschilli/log4perl + Log::Message: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Log-Message + Log::Message::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Log-Message-Simple + Log::Report: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-Log-Report + Log::Report::Optional: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-Log-Report-Optional + Logger::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Logger::Simple#COPYRIGHT + MCE::Mutex: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/MCE::Mutex + MIME::Base64: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Dual-Life/mime-base64 + MIME::Charset: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=MIME-Charset + MIME::Lite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=MIME-Lite + MIME::Types: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-MIME-Types + MRO::Compat: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MRO-Compat + Mail::Util: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Mail::Util + Math::Bezier: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/Math::Bezier + Math::CDF: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/Math::CDF + Math::Round: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilb/Math-Round + Math::Utils: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Math-Utils + Math::VecStat: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Math-VecStat + Meta::Builder: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Meta-Builder + Mixin::Linewise::Readers: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Mixin::Linewise::Readers#COPYRIGHT-AND-LICENSE + Mock::Quick: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Mock-Quick + Module::Build: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Build + Module::Build::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/module-build-tiny + Module::Build::XSUtil: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/hideo55/Module-Build-XSUtil + Module::CoreList: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-CoreList + Module::Implementation: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/autarch/Module-Implementation + Module::Install: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Install + Module::Load: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Load + Module::Load::Conditional: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Load-Conditional + Module::Metadata: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Module-Metadata + Module::Path: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilbowers/Module-Path + Module::Pluggable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/simonwistow/Module-Pluggable + Module::Runtime: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/haarg/Module-Runtime + Module::Runtime::Conflicts: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Module-Runtime-Conflicts + Moo: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Moo + Moose: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Moose + MooseX::LazyRequire: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MooseX-LazyRequire + MooseX::OneArgNew: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/MooseX-OneArgNew + MooseX::Role::Parameterized: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MooseX-Role-Parameterized + MooseX::SetOnce: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/MooseX-SetOnce + MooseX::Types: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MooseX-Types + MooseX::Types::Perl: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/MooseX-Types-Perl + Mouse: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/xslate/p5-Mouse + Mozilla::CA: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/Mozilla-CA + Net::Domain: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Net::Domain + Net::HTTP: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/Net-HTTP + Net::SMTP::SSL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Net::SMTP::SSL#COPYRIGHT + Net::SNMP: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Net-SNMP + Net::SSLeay: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/radiator-software/p5-net-ssleay + Number::Compare: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Net::SMTP::SSL#COPYRIGHT + Number::Format: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Number-Format + Object::Accessor: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jib/object-accessor + Object::InsideOut: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Object-InsideOut + PDF::API2: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/ssimms/pdfapi2 + Package::Constants: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Package-Constants + Package::DeprecationManager: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/moose/Package-DeprecationManager + Package::Stash: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Package-Stash + Package::Stash::XS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Package-Stash-XS + PadWalker: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=PadWalker + Parallel::ForkManager: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/dluxhu/perl-parallel-forkmanager + Params::Check: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Params-Check + Params::Util: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/Params-Util + Params::Validate: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Params-Validate + Params::ValidationCompiler: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Params-ValidationCompiler + Parse::RecDescent: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jtbraun/Parse-RecDescent + Path::Tiny: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Path-Tiny + Perl::OSType: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Perl-OSType + PerlIO::utf8_strict: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/perlio-utf8_strict + Pod::Elemental: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Pod-Elemental + Pod::Escapes: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilbowers/Pod-Escapes + Pod::Eventual: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Pod-Eventual + Pod::LaTeX: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/timj/perl-Pod-LaTeX + Pod::Man: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Pod::Man + Pod::POM: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilb/Pod-POM + Pod::Parser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MAREKR/Pod-Parser-1.67/source/README + Pod::Plainer: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Pod-Plainer + Pod::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl-pod/pod-simple + Pod::Weaver: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Pod-Weaver + Readonly: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/sanko/readonly + Regexp::Common: + License: + - MIT + - MIT + - BSD-3-Clause + - Artistic-1.0 + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Regexp-Common + Role::HasMessage: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Role-HasMessage + Role::Identifiable::HasIdent: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Role::Identifiable::HasIdent + Role::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Role-Tiny + SQL::Abstract: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/dbsrgits/sql-abstract + SQL::Statement: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-dbi/SQL-Statement + SVG: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/manwar/SVG + Scalar::Util: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Scalar::Util#COPYRIGHT + Scalar::Util::Numeric: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Scalar-Util-Numeric + Scope::Guard: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Scope-Guard + Set::Array: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Set-Array + Set::IntSpan: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Set::IntSpan#COPYRIGHT + Set::IntSpan::Fast: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Set-IntSpan-Fast + Set::IntervalTree: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Set-IntervalTree + Set::Object: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rurban/Set-Object + Set::Scalar: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/daoswald/Set-Scalar + Shell: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Shell + Socket: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Socket + Software::License: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Software-License + Specio: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Specio + Statistics::Basic: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Statistics::Basic#COPYRIGHT + Statistics::Descriptive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/perl-Statistics-Descriptive + Storable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Storable + String::Flogger: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-Flogger + String::Print: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-String-Print + String::RewritePrefix: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-RewritePrefix + String::Truncate: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-Truncate + Sub::Exporter: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Sub-Exporter + Sub::Exporter::ForMethods: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Sub-Exporter-ForMethods + Sub::Exporter::Progressive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/frioux/Sub-Exporter-Progressive + Sub::Identify: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rgs/Sub-Identify + Sub::Info: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Sub-Info + Sub::Install: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Sub-Install + Sub::Name: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/Sub-Name + Sub::Quote: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Sub-Quote + Sub::Uplevel: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Sub-Uplevel + Switch: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Switch + Sys::Info: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info + Sys::Info::Base: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info-Base + Sys::Info::Driver::Linux: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info-Driver-Linux + Sys::Info::Driver::Unknown: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info-Driver-Unknown + Template: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Template#COPYRIGHT + Template::Plugin::Number::Format: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/release/DARREN/Template-Plugin-Number-Format-1.06/source/README + Term::Encoding: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/Term-Encoding + Term::ReadKey: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Term::ReadKey#LICENSE + Term::ReadLine::Gnu: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/hirooih/perl-trg + Term::Table: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Term-Table + Term::UI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jib/term-ui + Test: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/JESSE/Test-1.26/source/README + Test2::Plugin::NoWarnings: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Test2-Plugin-NoWarnings + Test2::Require::Module: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Test2::Require::Module#COPYRIGHT + Test::ClassAPI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-ClassAPI + Test::CleanNamespaces: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-CleanNamespaces + Test::Deep: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Test-Deep + Test::Differences: + License: + - Artistic-1.0 + - GPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-Differences + Test::Exception: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Test-More/test-exception + Test::Fatal: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Test-Fatal + Test::File::ShareDir::Dist: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Test::File::ShareDir::Dist#COPYRIGHT-AND-LICENSE + Test::Harness: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-Harness + Test::LeakTrace: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/gfx/p5-Test-LeakTrace + Test::Memory::Cycle: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Test::Memory::Cycle#COPYRIGHT + Test::More: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Test::More#COPYRIGHT + Test::More::UTF8: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-More-UTF8 + Test::Most: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Ovid/test--most + Test::Needs: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/haarg/Test-Needs + Test::NoWarnings: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/haarg/Test-NoWarnings + Test::Output: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briandfoy/test-output + Test::Pod: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl-pod/test-pod + Test::Requires: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tokuhirom/Test-Requires + Test::RequiresInternet: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/mrallen1/Test-RequiresInternet + Test::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-Simple + Test::Version: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/plicease/test-version + Test::Warn: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/hanfried/test-warn + Test::Warnings: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-Warnings + Test::Without::Module: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Corion/test-without-module + Text::Aligner: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/text-aligner + Text::Balanced: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/steve-m-hay/Text-Balanced + Text::CSV: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-CSV + Text::CSV_XS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Tux/Text-CSV_XS + Text::Diff: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-Diff + Text::Format: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/perl-Module-Format + Text::Glob: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-Glob + Text::Iconv: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MPIOTR/Text-Iconv-1.7/source/README + Text::ParseWords: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-ParseWords + Text::Soundex: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-Soundex + Text::Table: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Text::Table#COPYRIGHT + Text::Template: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/mschout/perl-text-template + Thread::Queue: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Thread-Queue + Throwable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Throwable + Tie::Function: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/release/DAVIDNICO/Tie-Function-0.02/source/README + Tie::IxHash: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Tie-IxHash + Time::HiRes: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl/perl5 + Time::Local: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Time-Local + Time::Piece: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Time-Piece + Time::Piece::MySQL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Time::Piece::MySQL#COPYRIGHT + Tree::DAG_Node: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/Tree-DAG_Node + Try::Tiny: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/Try-Tiny + Types::Serialiser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/Types-Serialiser-1.01/source/COPYING + UNIVERSAL::moniker: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/UNIVERSAL::moniker#COPYRIGHT + URI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/URI + URI::Escape: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/URI::Escape#COPYRIGHT + Unicode::LineBreak: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Unicode-LineBreak + Unix::Processors: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Unix-Processors + Variable::Magic: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git + WWW::RobotRules: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=WWW-RobotRules + Want: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Want#COPYRIGHT + XML::Bare: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-Bare + XML::DOM: + License: + - Other + Permission to redistribute: false + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-DOM + XML::Filter::BufferText: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::Filter::BufferText#COPYRIGHT + XML::NamespaceSupport: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perigrin/xml-namespacesupport + XML::Parser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-Parser + XML::RegExp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/TJMATHER/XML-RegExp-0.04/source/README + XML::SAX: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::SAX#LICENSE + XML::SAX::Base: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/grantm/XML-SAX-Base + XML::SAX::Expat: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-SAX-Expat + XML::SAX::Writer: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perigrin/xml-sax-writer + XML::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/grantm/xml-simple + XML::Tiny: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::SAX#LICENSE + XML::Twig: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-Twig + XML::XPath: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/manwar/XML-XPath + XSLoader: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XSLoader + YAML: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/yaml-pm + YAML::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/YAML-Tiny + aliased: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/aliased + boolean: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/boolean-pm + common::sense: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/common-sense-3.75/source/LICENSE + constant: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=constant + if: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=if + local::lib: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/local-lib + namespace::autoclean: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/namespace-autoclean + namespace::clean: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/namespace-clean + parent: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Corion/parent + strictures: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/strictures + version: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl/version.pm + 5.36.1: + Carp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Carp + Data::Dumper: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Data-Dumper + Exporter: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Exporter + File::Path: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jkeenan/File-Path + File::Spec: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/File::Spec#COPYRIGHT + Getopt::Long: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/sciurius/perl-Getopt-Long + IO::File: + License: unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/IO::File + Text::ParseWords: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-ParseWords + Thread::Queue: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Thread-Queue + constant: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=constant + threads: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=threads + 5.38.0: + Carp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Carp + Data::Dumper: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Data-Dumper + Exporter: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Exporter + File::Path: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jkeenan/File-Path + File::Spec: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/File::Spec#COPYRIGHT + Getopt::Long: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/sciurius/perl-Getopt-Long + IO::File: + License: unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/IO::File + Text::ParseWords: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-ParseWords + Thread::Queue: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Thread-Queue + constant: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=constant + threads: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=threads +Perl-bundle-CPAN: + 5.36.1: + Algorithm::Dependency: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Algorithm-Dependency + Algorithm::Diff: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Algorithm::Diff#LICENSE + AnyEvent: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/AnyEvent-7.17/source/COPYING + App::Cmd: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/App-Cmd + App::cpanminus: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/cpanminus + AppConfig: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilbowers/AppConfig + Archive::Extract: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Archive-Extract + Array::Transpose: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mrdvt92/perl-Array-Transpose + Array::Utils: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Array-Utils + Authen::NTLM: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Authen::NTLM#HISTORY + Authen::SASL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/gbarr/perl-authen-sasl + AutoLoader: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=AutoLoader + B::COW: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/atoomic/B-COW + B::Hooks::EndOfScope: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/B-Hooks-EndOfScope + B::Lint: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=B-Lint + Business::ISBN: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briandfoy/business-isbn + Business::ISBN::Data: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briandfoy/business-isbn-data + CGI: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/leejo/CGI.pm + CPAN::Meta::Check: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/cpan-meta-check + CPAN::Uploader: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/CPAN-Uploader + CPANPLUS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jib/cpanplus-devel + Canary::Stability: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/Canary-Stability-2013/source/COPYING + Capture::Tiny: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Capture-Tiny + Carp::Clan: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Carp-Clan + Carp::Heavy: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/XSAWYERX/Carp-1.50/source/README + Class::Accessor: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Class-Accessor + Class::DBI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Class::DBI#LICENSE + Class::DBI::SQLite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Class::DBI#LICENSE + Class::Data::Inheritable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Class-Data-Inheritable + Class::ISA: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Class::Inspector#COPYRIGHT-AND-LICENSE + Class::Inspector: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/plicease/Class-Inspector + Class::Load: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Class-Load + Class::Load::XS: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/moose/Class-Load-XS + Class::Method::Modifiers: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Class-Method-Modifiers + Class::Singleton: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/steve-m-hay/Class-Singleton + Class::Tiny: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Class-Tiny + Class::Trigger: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/Class-Trigger + Class::XSAccessor: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Class-XSAccessor + Clone: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Clone + Clone::Choose: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/Clone-Choose + Compress::Raw::Zlib: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/pmqs/Compress-Raw-Zlib + Config::General: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Config-General + Config::INI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Config-INI + Config::MVP: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Config-MVP + Config::MVP::Reader::INI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Config-MVP-Reader-INI + Config::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Config::Simple#COPYRIGHT + Config::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/Config-Tiny + Const::Exporter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/robrwo/Const-Exporter + Const::Fast: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/const-fast + Crypt::DES: + License: + - Other + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/Crypt::DES#COPYRIGHT + Crypt::Rijndael: + License: + - LGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://github.com/leont/crypt-rijndael + Cwd: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Cwd#COPYRIGHT + Cwd::Guard: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/kazeburo/Cwd-Guard + DBD::CSV: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-dbi/DBD-CSV + DBD::SQLite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=DBD-SQLite + DBI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=DBI + DBIx::Admin::CreateTable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/DBIx-Admin-CreateTable + DBIx::Admin::DSNManager: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/DBIx-Admin-DSNManager + DBIx::Admin::TableInfo: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/DBIx-Admin-TableInfo + DBIx::ContextualFetch: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/DBIx::ContextualFetch#LICENSE + DBIx::Simple: + License: + - Other + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/DBIx::Simple#LICENSE + Data::Dump: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Data-Dump + Data::Dumper::Concise: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/Data-Dumper-Concise + Data::Grove: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/KMACLEOD/libxml-perl-0.08/source/README + Data::OptList: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Data-OptList + Data::Section: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Data-Section + Data::Section::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/Data-Section-Simple + Data::Stag: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Data::Stag#COPYRIGHT + Data::Types: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/manwar/Data-Types + Data::UUID: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Data-UUID + Date::Handler: + License: + - Uknown + Permission to redistribute: false + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Date-Handler + Date::Language: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/ATOOMIC/TimeDate-2.33/source/README + DateTime: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/DateTime.pm + DateTime::Locale: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/DateTime-Locale + DateTime::TimeZone: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/DateTime-TimeZone + DateTime::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/DateTime-Tiny + Devel::CheckCompiler: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tokuhirom/Devel-CheckCompiler + Devel::CheckLib: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Devel-CheckLib + Devel::Cycle: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Devel::Cycle#COPYRIGHT-AND-LICENSE + Devel::FindPerl: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/devel-findperl + Devel::GlobalDestruction: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-GlobalDestruction.git + Devel::OverloadInfo: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ilmari/Devel-OverloadInfo + Devel::Size: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Devel-Size + Devel::StackTrace: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Devel-StackTrace + Digest::HMAC: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/arodland/Digest-HMAC + Digest::MD5::File: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Digest::MD5::File#COPYRIGHT-AND-LICENSE + Digest::SHA1: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Digest-SHA1 + Dist::CheckConflicts: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/doy/dist-checkconflicts + Dist::Zilla: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Dist-Zilla + Email::Date::Format: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Email-Date-Format + Encode: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Encode + Encode::Locale: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Encode-Locale + Error: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/perl-error.pm + Eval::Closure: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/doy/eval-closure + Exception::Class: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Exception-Class + Expect: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jacoby/expect.pm + Exporter::Declare: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Exporter-Declare + Exporter::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tobyink/p5-exporter-tiny + ExtUtils::CBuilder: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/ExtUtils-CBuilder + ExtUtils::Config: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/extutils-config + ExtUtils::Constant: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/NWCLARK/ExtUtils-Constant-0.25/source/README + ExtUtils::CppGuess: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tsee/extutils-cppguess + ExtUtils::Helpers: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/extutils-helpers + ExtUtils::InstallPaths: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/extutils-installpaths + ExtUtils::MakeMaker: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=ExtUtils-MakeMaker + ExtUtils::ParseXS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/ExtUtils::ParseXS#COPYRIGHT + Fennec::Lite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Fennec-Lite + File::CheckTree: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rafl/file-checktree + File::Copy::Recursive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/drmuey/p5-File-Copy-Recursive + File::Copy::Recursive::Reduced: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jkeenan/file-copy-recursive-reduced + File::Find::Rule: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/File::Find::Rule#COPYRIGHT + File::Find::Rule::Perl: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/File-Find-Rule-Perl + File::Grep: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MNEYLON/File-Grep-0.02/source/README + File::HomeDir: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/File-HomeDir + File::Listing: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/PerlAlien/File-Listing + File::Next: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=File-Next + File::Remove: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/File-Remove + File::ShareDir: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/File-ShareDir + File::ShareDir::Install: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/File-ShareDir-Install + File::Slurp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perhunter/slurp + File::Slurp::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/file-slurp-tiny + File::Slurper: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/file-slurp-sane + File::Temp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/File-Temp + File::Which: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/uperl/File-Which + File::pushd: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/File-pushd + Font::TTF: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/silnrsi/font-ttf + GO: + License: Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/GO + GO::Utils: + License: MIT + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/GO::Utils::File + Getopt::Long::Descriptive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Getopt-Long-Descriptive + Git: + License: + - GPL-2.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Git + Graph: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/graphviz-perl/Graph + Graph::ReadWrite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilb/Graph-ReadWrite + HTML::Entities::Interpolate: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/HTML-Entities-Interpolate + HTML::Form: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTML-Form + HTML::Parser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTML-Parser + HTML::Tagset: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/petdance/html-tagset + HTML::Template: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=HTML-Template + HTML::Tree: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/kentfredric/HTML-Tree + HTTP::CookieJar: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/HTTP-CookieJar + HTTP::Cookies: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTTP-Cookies + HTTP::Daemon: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTTP-Daemon + HTTP::Date: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTTP-Date + HTTP::Message: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/HTTP-Message + HTTP::Negotiate: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=HTTP-Negotiate + HTTP::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/HTTP-Tiny + Hash::Merge: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/Hash-Merge + Hash::Objectify: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Hash-Objectify + Heap: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Heap#COPYRIGHT + Hook::LexWrap: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Hook-LexWrap + IO::Compress::Zip: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/IO::Compress::Zip + IO::HTML: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/madsen/io-html + IO::Socket::SSL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/noxxi/p5-io-socket-ssl + IO::String: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/IO::String#COPYRIGHT + IO::Stringy: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/genio/IO-Stringy + IO::TieCombine: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/IO-TieCombine + IO::Tty: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=IO-Tty + IPC::Cmd: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=IPC-Cmd + IPC::Run: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=IPC-Run + IPC::Run3: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/IPC::Run3#LICENSE + IPC::System::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/pjf/ipc-system-simple + Ima::DBI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Ima::DBI#LICENSE + Import::Into: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Import-Into.git + Importer: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Importer + Inline: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/inline-pm + JSON: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=JSON + JSON::MaybeXS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/JSON-MaybeXS + JSON::XS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/JSON-XS-4.03/source/COPYING + LWP::MediaTypes: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/lwp-mediatypes + LWP::Protocol::https: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/LWP-Protocol-https + LWP::Simple: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/LWP::Simple + Lingua::EN::PluralToSingular: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Lingua-EN-PluralToSingular + List::AllUtils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/List-AllUtils + List::MoreUtils: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/List-MoreUtils + List::MoreUtils::XS: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/List-MoreUtils-XS + List::SomeUtils: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/List-SomeUtils + List::UtilsBy: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=List-UtilsBy + Locale::Maketext::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Locale-Maketext-Simple + Log::Dispatch: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Log-Dispatch + Log::Dispatch::Array: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Log-Dispatch-Array + Log::Dispatchouli: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Log-Dispatchouli + Log::Handler: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Log-Handler + Log::Log4perl: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/mschilli/log4perl + Log::Message: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Log-Message + Log::Message::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Log-Message-Simple + Log::Report: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-Log-Report + Log::Report::Optional: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-Log-Report-Optional + Logger::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Logger::Simple#COPYRIGHT + MCE::Mutex: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/MCE::Mutex + MIME::Base64: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Dual-Life/mime-base64 + MIME::Charset: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=MIME-Charset + MIME::Lite: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=MIME-Lite + MIME::Types: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-MIME-Types + MRO::Compat: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MRO-Compat + Mail::Util: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Mail::Util + Math::Bezier: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/Math::Bezier + Math::CDF: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Math-CDF + Math::Round: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilb/Math-Round + Math::Utils: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Math-Utils + Math::VecStat: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Math-VecStat + Meta::Builder: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Meta-Builder + Mixin::Linewise::Readers: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Mixin::Linewise::Readers#COPYRIGHT-AND-LICENSE + Mock::Quick: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Mock-Quick + Module::Build: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Build + Module::Build::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/module-build-tiny + Module::Build::XSUtil: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/hideo55/Module-Build-XSUtil + Module::CoreList: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-CoreList + Module::Implementation: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/autarch/Module-Implementation + Module::Install: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Install + Module::Load: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Load + Module::Load::Conditional: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Module-Load-Conditional + Module::Metadata: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Module-Metadata + Module::Path: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilbowers/Module-Path + Module::Pluggable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/simonwistow/Module-Pluggable + Module::Runtime: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/haarg/Module-Runtime + Module::Runtime::Conflicts: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Module-Runtime-Conflicts + Moo: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Moo + Moose: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Moose + MooseX::LazyRequire: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MooseX-LazyRequire + MooseX::OneArgNew: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/MooseX-OneArgNew + MooseX::Role::Parameterized: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MooseX-Role-Parameterized + MooseX::SetOnce: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/MooseX-SetOnce + MooseX::Types: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/MooseX-Types + MooseX::Types::Perl: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/MooseX-Types-Perl + Mouse: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/xslate/p5-Mouse + Mozilla::CA: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/Mozilla-CA + Net::Domain: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Net::Domain + Net::HTTP: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/Net-HTTP + Net::SMTP::SSL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Net::SMTP::SSL#COPYRIGHT + Net::SNMP: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Net-SNMP + Net::SSLeay: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/radiator-software/p5-net-ssleay + Number::Compare: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Net::SMTP::SSL#COPYRIGHT + Number::Format: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Number-Format + Object::Accessor: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jib/object-accessor + Object::InsideOut: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Object-InsideOut + PDF::API2: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/ssimms/pdfapi2 + PPI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Critic/PPI + Package::Constants: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Package-Constants + Package::DeprecationManager: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/moose/Package-DeprecationManager + Package::Stash: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Package-Stash + Package::Stash::XS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Package-Stash-XS + PadWalker: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=PadWalker + Parallel::ForkManager: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/dluxhu/perl-parallel-forkmanager + Params::Check: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Params-Check + Params::Util: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-utils/Params-Util + Params::Validate: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Params-Validate + Params::ValidationCompiler: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Params-ValidationCompiler + Parse::RecDescent: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jtbraun/Parse-RecDescent + Parse::Yapp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Parse::Yapp#COPYRIGHT + Path::Tiny: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Path-Tiny + Perl::OSType: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Perl-OSType + Perl::PrereqScanner: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Perl-PrereqScanner + PerlIO::utf8_strict: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/perlio-utf8_strict + Pod::Elemental: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Pod-Elemental + Pod::Escapes: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilbowers/Pod-Escapes + Pod::Eventual: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Pod-Eventual + Pod::LaTeX: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/timj/perl-Pod-LaTeX + Pod::Man: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Pod::Man + Pod::POM: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilb/Pod-POM + Pod::Parser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MAREKR/Pod-Parser-1.67/source/README + Pod::Plainer: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Pod-Plainer + Pod::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl-pod/pod-simple + Pod::Weaver: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Pod-Weaver + Readonly: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/sanko/readonly + Ref::Util: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/p5pclub/ref-util + Regexp::Common: + License: + - MIT + - MIT + - BSD-3-Clause + - Artistic-1.0 + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Regexp-Common + Role::HasMessage: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Role-HasMessage + Role::Identifiable::HasIdent: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Role::Identifiable::HasIdent + Role::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Role-Tiny + SQL::Abstract: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/dbsrgits/sql-abstract + SQL::Statement: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl5-dbi/SQL-Statement + SVG: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/manwar/SVG + Scalar::Util: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Scalar::Util#COPYRIGHT + Scalar::Util::Numeric: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Scalar-Util-Numeric + Scope::Guard: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Scope-Guard + Set::Array: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Set-Array + Set::IntSpan: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Set::IntSpan#COPYRIGHT + Set::IntSpan::Fast: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Set-IntSpan-Fast + Set::IntervalTree: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Set-IntervalTree + Set::Object: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rurban/Set-Object + Set::Scalar: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/daoswald/Set-Scalar + Shell: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Shell + Socket: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Socket + Software::License: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Software-License + Specio: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Specio + Spiffy: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/spiffy-pm + Statistics::Basic: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Statistics::Basic#COPYRIGHT + Statistics::Descriptive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/perl-Statistics-Descriptive + Storable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Storable + String::Errf: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-Errf + String::Flogger: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-Flogger + String::Formatter: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-Formatter + String::Print: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/markov2/perl5-String-Print + String::RewritePrefix: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-RewritePrefix + String::Truncate: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/String-Truncate + String::TtyLength: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/neilb/String-TtyLength + Sub::Exporter: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Sub-Exporter + Sub::Exporter::ForMethods: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Sub-Exporter-ForMethods + Sub::Exporter::GlobExporter: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Sub-Exporter-GlobExporter + Sub::Exporter::Progressive: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/frioux/Sub-Exporter-Progressive + Sub::Identify: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rgs/Sub-Identify + Sub::Info: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Sub-Info + Sub::Install: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Sub-Install + Sub::Name: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/Sub-Name + Sub::Quote: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/Sub-Quote + Sub::Uplevel: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/Sub-Uplevel + Switch: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Switch + Sys::Info: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info + Sys::Info::Base: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info-Base + Sys::Info::Driver::Linux: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info-Driver-Linux + Sys::Info::Driver::Linux::Device::CPU: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Sys::Info::Driver::Linux::Device::CPU + Sys::Info::Driver::Unknown: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Sys-Info-Driver-Unknown + Sys::Info::Driver::Unknown::Device::CPU: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Sys::Info::Driver::Unknown::Device::CPU + Template: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Template#COPYRIGHT + Template::Plugin::Number::Format: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/release/DARREN/Template-Plugin-Number-Format-1.06/source/README + Term::Encoding: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/miyagawa/Term-Encoding + Term::ReadKey: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Term::ReadKey#LICENSE + Term::ReadLine::Gnu: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/hirooih/perl-trg + Term::Table: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Term-Table + Term::UI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/jib/term-ui + Test: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/JESSE/Test-1.26/source/README + Test2::Plugin::NoWarnings: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Test2-Plugin-NoWarnings + Test::Base: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/test-base-pm + Test::CheckDeps: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Leont/test-checkdeps + Test::ClassAPI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-ClassAPI + Test::CleanNamespaces: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-CleanNamespaces + Test::Deep: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Test-Deep + Test::Differences: + License: + - Artistic-1.0 + - GPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-Differences + Test::Exception: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Test-More/test-exception + Test::FailWarnings: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dagolden/Test-FailWarnings + Test::Fatal: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Test-Fatal + Test::File: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briandfoy/test-file + Test::File::ShareDir::Dist: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Test::File::ShareDir::Dist#COPYRIGHT-AND-LICENSE + Test::Harness: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-Harness + Test::LeakTrace: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/gfx/p5-Test-LeakTrace + Test::Memory::Cycle: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Test::Memory::Cycle#COPYRIGHT + Test::More::UTF8: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-More-UTF8 + Test::Most: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Ovid/test--most + Test::Needs: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/haarg/Test-Needs + Test::NoWarnings: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/haarg/Test-NoWarnings + Test::Object: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-Object + Test::Output: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briandfoy/test-output + Test::Pod: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perl-pod/test-pod + Test::Requires: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tokuhirom/Test-Requires + Test::RequiresInternet: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/mrallen1/Test-RequiresInternet + Test::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Test-Simple + Test::SubCalls: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-SubCalls + Test::Sys::Info: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/burak/CPAN-Test-Sys-Info + Test::Version: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/plicease/test-version + Test::Warn: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/hanfried/test-warn + Test::Warnings: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/Test-Warnings + Test::Without::Module: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Corion/test-without-module + Test::YAML: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/test-yaml-pm + Text::Aligner: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/text-aligner + Text::Balanced: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/steve-m-hay/Text-Balanced + Text::CSV: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-CSV + Text::CSV_XS: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Tux/Text-CSV_XS + Text::Diff: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-Diff + Text::Format: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/shlomif/perl-Module-Format + Text::Glob: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-Glob + Text::Iconv: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MPIOTR/Text-Iconv-1.7/source/README + Text::Soundex: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Text-Soundex + Text::Table: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Text::Table#COPYRIGHT + Text::Table::Manifold: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/Text-Table-Manifold + Text::Template: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/mschout/perl-text-template + Throwable: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/rjbs/Throwable + Tie::Function: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/release/DAVIDNICO/Tie-Function-0.02/source/README + Tie::IxHash: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Tie-IxHash + Time::HiRes: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl/perl5 + Time::Local: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/houseabsolute/Time-Local + Time::Piece: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Time-Piece + Time::Piece::MySQL: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Time::Piece::MySQL#COPYRIGHT + Tree::DAG_Node: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ronsavage/Tree-DAG_Node + Try::Tiny: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/Try-Tiny + Type::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/tobyink/p5-type-tiny + Types::Serialiser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/Types-Serialiser-1.01/source/COPYING + UNIVERSAL::moniker: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/UNIVERSAL::moniker#COPYRIGHT + URI: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/libwww-perl/URI + Unicode::EastAsianWidth: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/audreyt/Unicode-EastAsianWidth + Unicode::LineBreak: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Unicode-LineBreak + Unix::Processors: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=Unix-Processors + Variable::Magic: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git + WWW::RobotRules: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=WWW-RobotRules + Want: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Want#COPYRIGHT + XML::Bare: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-Bare + XML::DOM: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://metacpan.org/pod/XML::DOM + XML::Filter::BufferText: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::Filter::BufferText#COPYRIGHT + XML::NamespaceSupport: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perigrin/xml-namespacesupport + XML::Parser: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-Parser + XML::RegExp: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/TJMATHER/XML-RegExp-0.04/source/README + XML::SAX: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::SAX#LICENSE + XML::SAX::Base: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/grantm/XML-SAX-Base + XML::SAX::Expat: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-SAX-Expat + XML::SAX::Writer: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/perigrin/xml-sax-writer + XML::Simple: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/grantm/xml-simple + XML::Tiny: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::SAX#LICENSE + XML::Twig: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XML-Twig + XML::Writer: + License: + - Unrestricted + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::Writer + XML::XPath: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/manwar/XML-XPath + XSLoader: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=XSLoader + YAML: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/yaml-pm + YAML::Tiny: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/YAML-Tiny + aliased: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/karenetheridge/aliased + boolean: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/ingydotnet/boolean-pm + common::sense: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/MLEHMANN/common-sense-3.75/source/LICENSE + if: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/metacpan.org/lookup?name=if + local::lib: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl-Toolchain-Gang/local-lib + namespace::autoclean: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/moose/namespace-autoclean + namespace::clean: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/namespace-clean + parent: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Corion/parent + strictures: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/p5sagit/strictures + version: + License: + - Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://github.com/Perl/version.pm +Pint: + '0.24': + Pint: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Pint/ + appdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ActiveState/appdirs + flexcache: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/hgrecco/flexcache + flexparser: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/hgrecco/flexparser +PyOpenGL: + 3.1.7: + PyOpenGL: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/PyOpenGL + PyOpenGL-accelerate: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/PyOpenGL-accelerate +PyQt-builder: + 1.15.4: + PyQt-builder: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/PyQt-builder/ +Python: + 3.10.8: + Babel: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Babel/json + CacheControl: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/cachecontrol + Cython: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Cython/json + Jinja2: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/jinja + MarkupSafe: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/MarkupSafe/json + PyNaCl: + License: Apache License 2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/PyNaCl/json + Pygments: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Pygments/json + SecretStorage: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/SecretStorage/json + Sphinx: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Sphinx + alabaster: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/alabaster + appdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ActiveState/appdirs + asn1crypto: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/wbond/asn1crypto + atomicwrites: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/untitaker/python-atomicwrites + attrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-attrs/attrs + backports.entry-points-selectable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/backports.entry_points_selectable + backports.functools-lru-cache: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/backports.functools_lru_cache + bcrypt: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pyca/bcrypt + bitstring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/scott-griffiths/bitstring + blist: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/DanielStutzbach/blist + cachy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/cachy + certifi: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/certifi/python-certifi + cffi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-cffi/cffi + chardet: + License: + - LGPL-2.1-only + Permission to redistribute: true + Retrieved from: https://github.com/chardet/chardet + charset-normalizer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jawah/charset_normalizer + cleo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/cleo + click: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/click + clikit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/clikit + cloudpickle: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/cloudpipe/cloudpickle + colorama: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/tartley/colorama + commonmark: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rtfd/commonmark.py + crashtest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/crashtest + cryptography: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pyca/cryptography + decorator: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/micheles/decorator + distlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pypa/distlib + docopt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docopt/docopt + docutils: + License: + - BSD-3-Clause + - GPL-2.0+ + - PSF-2.0 + - Unlicense + Permission to redistribute: true + Retrieved from: https://pypi.org/project/docutils + doit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydoit/doit + dulwich: + License: + - MulanPSL-2.0 + - GPL-2.0+ + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dulwich/dulwich + ecdsa: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tlsfuzzer/python-ecdsa + editables: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pfmoore/editables + exceptiongroup: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/agronholm/exceptiongroup + execnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/execnet + filelock: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/py-filelock + flit: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/flit + flit-core: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/flit + flit-scm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://gitlab.com/WillDaSilva/flit_scm + fsspec: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fsspec/filesystem_spec + future: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PythonCharmers/python-future + glob2: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/miracle2k/python-glob2 + hatch-fancy-pypi-readme: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hynek/hatch-fancy-pypi-readme + hatch-vcs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ofek/hatch-vcs + hatchling: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/hatch + html5lib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/html5lib/html5lib-python + idna: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kjd/idna + imagesize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/shibukawa/imagesize_py + importlib-metadata: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_metadata + importlib-resources: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_resources + iniconfig: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/iniconfig + intervaltree: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/chaimleib/intervaltree + intreehooks: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/takluyver/intreehooks + ipaddress: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/phihag/ipaddress + jaraco.classes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/jaraco.classes + jeepney: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/jeepney + joblib: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joblib/joblib + jsonschema: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/jsonschema + keyring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyring + keyrings.alt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyrings.alt + liac-arff: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/renatopp/liac-arff + lockfile: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/lockfile + mock: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/testing-cabal/mock + more-itertools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/more-itertools/more-itertools + msgpack: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/msgpack/msgpack-python + netaddr: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/netaddr/netaddr + netifaces: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/al45tair/netifaces + packaging: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/packaging + paramiko: + License: + - LGPL-2.1-only + Permission to redistribute: true + Retrieved from: https://github.com/paramiko/paramiko + pastel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/pastel + pathlib2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jazzband/pathlib2 + pathspec: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/cpburnz/python-pathspec + pbr: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pbr + pexpect: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/pexpect + pip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pip + pkginfo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pkginfo + platformdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/platformdirs + pluggy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pluggy + poetry: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/poetry + poetry-core: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/poetry + poetry-plugin-export: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/poetry-plugin-export + pooch: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fatiando/pooch + psutil: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/giampaolo/psutil + ptyprocess: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/ptyprocess + py: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/py + py-expression-eval: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/AxiaCore/py-expression-eval + pyasn1: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pyasn1/pyasn1 + pycparser: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/eliben/pycparser + pycryptodome: + License: + - BSD-3-Clause + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/Legrandin/pycryptodome + pydevtool: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydoit/pydevtool + pylev: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/toastdriven/pylev + pyparsing: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pyparsing/pyparsing + pyrsistent: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tobgu/pyrsistent + pytest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest + pytest-xdist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-xdist + python-dateutil: + License: + - DOC + Permission to redistribute: true + Retrieved from: https://github.com/dateutil/dateutil + pytoml: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/avakar/pytoml + pytz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/stub42/pytz + regex: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/mrabarnett/mrab-regex + requests: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/requests + requests-toolbelt: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/requests/toolbelt + rich: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Textualize/rich + rich-click: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ewels/rich-click + scandir: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/benhoyt/scandir + semantic-version: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rbarrois/python-semanticversion + setuptools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools + setuptools-rust: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PyO3/setuptools-rust + setuptools-scm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools-scm + shellingham: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/sarugaku/shellingham + simplegeneric: + License: + - ZPL-2.1 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/simplegeneric + simplejson: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/simplejson/simplejson + six: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/benjaminp/six + snowballstemmer: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/snowballstem/snowball + sortedcontainers: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grantjenks/python-sortedcontainers + sphinx-bootstrap-theme: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ryan-roemer/sphinx-bootstrap-theme + sphinxcontrib-applehelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-applehelp + sphinxcontrib-devhelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-devhelp + sphinxcontrib-htmlhelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-htmlhelp + sphinxcontrib-jsmath: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/sphinxcontrib-jsmath + sphinxcontrib-qthelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-qthelp + sphinxcontrib-serializinghtml: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-serializinghtml + sphinxcontrib-websupport: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-websupport + tabulate: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/astanin/python-tabulate + threadpoolctl: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joblib/threadpoolctl + toml: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/uiri/toml + tomli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli + tomli-w: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli-w + tomlkit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/tomlkit + typing-extensions: + License: + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/python/typing_extensions + ujson: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ultrajson/ultrajson + urllib3: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/urllib3/urllib3 + virtualenv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/virtualenv + wcwidth: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jquast/wcwidth + webencodings: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/SimonSapin/python-webencodings + wheel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/wheel + xlrd: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/xlrd + zipfile36: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/zipfile36 + zipp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/zipp + 3.11.3: + flit-core: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/flit + packaging: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/packaging + pip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pip + setuptools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools + setuptools-scm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools-scm + tomli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli + typing-extensions: + License: + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/python/typing_extensions + wheel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/wheel + 3.11.5: + flit-core: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/flit + packaging: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/packaging + pip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pip + setuptools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools + setuptools-scm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools-scm + tomli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli + typing-extensions: + License: + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/python/typing_extensions + wheel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/wheel +Python-bundle-PyPI: + '2023.06': + Babel: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Babel/json + CacheControl: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/cachecontrol + Cython: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Cython/json + Jinja2: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/jinja + MarkupSafe: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/markupsafe + PyNaCl: + License: Apache License 2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/PyNaCl/json + Pygments: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Pygments/json + SecretStorage: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/SecretStorage/json + Sphinx: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinx + alabaster: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/alabaster + appdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ActiveState/appdirs + asn1crypto: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/wbond/asn1crypto + atomicwrites: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/untitaker/python-atomicwrites + attrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-attrs/attrs + backports.entry-points-selectable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/backports.entry_points_selectable + backports.functools-lru-cache: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/backports.functools_lru_cache + bitstring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/scott-griffiths/bitstring + blist: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/DanielStutzbach/blist + cachy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/cachy + certifi: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/certifi/python-certifi + cffi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-cffi/cffi + chardet: + License: + - LGPL-2.1-only + Permission to redistribute: true + Retrieved from: https://github.com/chardet/chardet + charset-normalizer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jawah/charset_normalizer + cleo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/cleo + click: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/click + cloudpickle: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/cloudpipe/cloudpickle + colorama: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/tartley/colorama + commonmark: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rtfd/commonmark.py + crashtest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/crashtest + decorator: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/micheles/decorator + distlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pypa/distlib + distro: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python-distro/distro + docopt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docopt/docopt + docutils: + License: + - BSD-3-Clause + - GPL-2.0+ + - PSF-2.0 + - Unlicense + Permission to redistribute: true + Retrieved from: https://pypi.org/project/docutils + doit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydoit/doit + dulwich: + License: + - MulanPSL-2.0 + - GPL-2.0+ + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dulwich/dulwich + ecdsa: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tlsfuzzer/python-ecdsa + editables: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pfmoore/editables + exceptiongroup: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/agronholm/exceptiongroup + execnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/execnet + filelock: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/py-filelock + fsspec: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fsspec/filesystem_spec + future: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PythonCharmers/python-future + glob2: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/miracle2k/python-glob2 + html5lib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/html5lib/html5lib-python + idna: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kjd/idna + imagesize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/shibukawa/imagesize_py + importlib-metadata: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_metadata + importlib-resources: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_resources + iniconfig: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/iniconfig + intervaltree: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/chaimleib/intervaltree + intreehooks: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/takluyver/intreehooks + ipaddress: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/phihag/ipaddress + jaraco.classes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/jaraco.classes + jeepney: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/jeepney + joblib: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joblib/joblib + jsonschema: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/jsonschema + keyring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyring + keyrings.alt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyrings.alt + liac-arff: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/renatopp/liac-arff + lockfile: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/lockfile + markdown-it-py: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/executablebooks/markdown-it-py + mdurl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/executablebooks/mdurl + mock: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/testing-cabal/mock + more-itertools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/more-itertools/more-itertools + msgpack: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/msgpack/msgpack-python + netaddr: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/netaddr/netaddr + netifaces: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/al45tair/netifaces + packaging: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/packaging + pastel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/pastel + pathlib2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jazzband/pathlib2 + pathspec: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/cpburnz/python-pathspec + pbr: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pbr + pexpect: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/pexpect + pkginfo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pkginfo + platformdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/platformdirs + pluggy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pluggy + pooch: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fatiando/pooch + psutil: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/giampaolo/psutil + ptyprocess: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/ptyprocess + py: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/py + py-expression-eval: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/AxiaCore/py-expression-eval + pyasn1: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pyasn1/pyasn1 + pycparser: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/eliben/pycparser + pycryptodome: + License: + - BSD-3-Clause + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/Legrandin/pycryptodome + pydevtool: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydoit/pydevtool + pylev: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/toastdriven/pylev + pyparsing: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pyparsing/pyparsing + pyrsistent: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tobgu/pyrsistent + pytest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest + pytest-xdist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-xdist + python-dateutil: + License: + - DOC + Permission to redistribute: true + Retrieved from: https://github.com/dateutil/dateutil + pytoml: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/avakar/pytoml + pytz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/stub42/pytz + rapidfuzz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rapidfuzz/RapidFuzz + regex: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/mrabarnett/mrab-regex + requests: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/requests + requests-toolbelt: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/requests/toolbelt + rich: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Textualize/rich + rich-click: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ewels/rich-click + scandir: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/benhoyt/scandir + semantic-version: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rbarrois/python-semanticversion + shellingham: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/sarugaku/shellingham + simplegeneric: + License: + - ZPL-2.1 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/simplegeneric + simplejson: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/simplejson/simplejson + six: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/benjaminp/six + snowballstemmer: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/snowballstem/snowball + sortedcontainers: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grantjenks/python-sortedcontainers + sphinx-bootstrap-theme: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ryan-roemer/sphinx-bootstrap-theme + sphinxcontrib-applehelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-applehelp + sphinxcontrib-devhelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-devhelp + sphinxcontrib-htmlhelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-htmlhelp + sphinxcontrib-jsmath: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/sphinxcontrib-jsmath + sphinxcontrib-qthelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-qthelp + sphinxcontrib-serializinghtml: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-serializinghtml + sphinxcontrib-websupport: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-websupport + tabulate: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/astanin/python-tabulate + threadpoolctl: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joblib/threadpoolctl + toml: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/uiri/toml + tomli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli + tomli-w: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli-w + tomlkit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/tomlkit + ujson: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ultrajson/ultrajson + urllib3: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/urllib3/urllib3 + wcwidth: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jquast/wcwidth + webencodings: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/SimonSapin/python-webencodings + xlrd: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/xlrd + zipfile36: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/zipfile36 + zipp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/zipp + '2023.10': + Babel: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Babel/json + Cython: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Cython/json + Jinja2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/jinja + MarkupSafe: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/markupsafe + PyNaCl: + License: Apache License 2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/PyNaCl/json + Pygments: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/Pygments/json + SecretStorage: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/SecretStorage/json + alabaster: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/alabaster + appdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ActiveState/appdirs + asn1crypto: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/wbond/asn1crypto + atomicwrites: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/untitaker/python-atomicwrites + attrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-attrs/attrs + backports.entry-points-selectable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/backports.entry_points_selectable + backports.functools-lru-cache: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/backports.functools_lru_cache + bitarray: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ilanschnell/bitarray + bitstring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/scott-griffiths/bitstring + blist: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/DanielStutzbach/blist + cachecontrol: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/cachecontrol + cachy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/cachy + certifi: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/certifi/python-certifi + cffi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-cffi/cffi + chardet: + License: + - LGPL-2.1-only + Permission to redistribute: true + Retrieved from: https://github.com/chardet/chardet + charset-normalizer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jawah/charset_normalizer + cleo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/cleo + click: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pallets/click + cloudpickle: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/cloudpipe/cloudpickle + colorama: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/tartley/colorama + commonmark: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rtfd/commonmark.py + crashtest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/crashtest + decorator: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/micheles/decorator + distlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pypa/distlib + distro: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python-distro/distro + docopt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docopt/docopt + docutils: + License: + - BSD-3-Clause + - GPL-2.0+ + - PSF-2.0 + - Unlicense + Permission to redistribute: true + Retrieved from: https://pypi.org/project/docutils + doit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydoit/doit + dulwich: + License: + - MulanPSL-2.0 + - GPL-2.0+ + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dulwich/dulwich + ecdsa: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tlsfuzzer/python-ecdsa + editables: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pfmoore/editables + exceptiongroup: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/agronholm/exceptiongroup + execnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/execnet + filelock: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/py-filelock + fsspec: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fsspec/filesystem_spec + future: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PythonCharmers/python-future + glob2: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/miracle2k/python-glob2 + html5lib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/html5lib/html5lib-python + idna: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kjd/idna + imagesize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/shibukawa/imagesize_py + importlib-metadata: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_metadata + importlib-resources: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_resources + iniconfig: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/iniconfig + intervaltree: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/chaimleib/intervaltree + intreehooks: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/takluyver/intreehooks + ipaddress: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/phihag/ipaddress + jaraco.classes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/jaraco.classes + jeepney: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/jeepney + joblib: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joblib/joblib + jsonschema: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/jsonschema + keyring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyring + keyrings.alt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyrings.alt + liac-arff: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/renatopp/liac-arff + lockfile: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/lockfile + markdown-it-py: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/executablebooks/markdown-it-py + mdurl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/executablebooks/mdurl + mock: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/testing-cabal/mock + more-itertools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/more-itertools/more-itertools + msgpack: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/msgpack/msgpack-python + netaddr: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/netaddr/netaddr + netifaces: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/al45tair/netifaces + packaging: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/packaging + pastel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/pastel + pathlib2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jazzband/pathlib2 + pathspec: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/cpburnz/python-pathspec + pbr: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pbr + pexpect: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/pexpect + pkginfo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pkginfo + platformdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/platformdirs + pluggy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pluggy + pooch: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fatiando/pooch + psutil: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/giampaolo/psutil + ptyprocess: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/ptyprocess + py: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/py + py-expression-eval: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/AxiaCore/py-expression-eval + pyasn1: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pyasn1/pyasn1 + pycparser: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/eliben/pycparser + pycryptodome: + License: + - BSD-3-Clause + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/Legrandin/pycryptodome + pydevtool: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydoit/pydevtool + pylev: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/toastdriven/pylev + pyparsing: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pyparsing/pyparsing + pyrsistent: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tobgu/pyrsistent + pytest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest + pytest-xdist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-xdist + python-dateutil: + License: + - DOC + Permission to redistribute: true + Retrieved from: https://github.com/dateutil/dateutil + pytoml: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/avakar/pytoml + pytz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/stub42/pytz + rapidfuzz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rapidfuzz/RapidFuzz + regex: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/mrabarnett/mrab-regex + requests: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/requests + requests-toolbelt: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/requests/toolbelt + rich: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Textualize/rich + rich-click: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ewels/rich-click + scandir: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/benhoyt/scandir + semantic-version: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rbarrois/python-semanticversion + shellingham: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/sarugaku/shellingham + simplegeneric: + License: + - ZPL-2.1 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/simplegeneric + simplejson: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/simplejson/simplejson + six: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/benjaminp/six + snowballstemmer: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/snowballstem/snowball + sortedcontainers: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grantjenks/python-sortedcontainers + sphinx: + License: + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinx + sphinx-bootstrap-theme: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ryan-roemer/sphinx-bootstrap-theme + sphinxcontrib-applehelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-applehelp + sphinxcontrib-devhelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-devhelp + sphinxcontrib-htmlhelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-htmlhelp + sphinxcontrib-jsmath: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/sphinxcontrib-jsmath + sphinxcontrib-qthelp: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-qthelp + sphinxcontrib-serializinghtml: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-serializinghtml + sphinxcontrib-websupport: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sphinx-doc/sphinxcontrib-websupport + tabulate: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/astanin/python-tabulate + threadpoolctl: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joblib/threadpoolctl + toml: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/uiri/toml + tomli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli + tomli-w: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hukkin/tomli-w + tomlkit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/tomlkit + ujson: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ultrajson/ultrajson + urllib3: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/urllib3/urllib3 + wcwidth: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jquast/wcwidth + webencodings: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/SimonSapin/python-webencodings + xlrd: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/xlrd + zipfile36: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/zipfile36 + zipp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/zipp +R: + 4.2.2: + ADGofTest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ADGofTest + AICcmodavg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=AICcmodavg + AMAPVox: + License: + - CECILL-2.0 + Permission to redistribute: true + Retrieved from: https://amapvox.org + AUC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=AUC + AlgDesign: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jvbraun/AlgDesign + BB: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.jhsph.edu/agingandhealth/People/Faculty_personal_pages/Varadhan.html + BBmisc: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/berndbischl/BBmisc + BCEE: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=BCEE + BDgraph: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.uva.nl/profile/a.mohammadi + BH: + License: + - BSL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/bh + BIGL: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/openanalytics/BIGL + BMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hanase/BMA + BatchJobs: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/tudo-r/BatchJobs + BayesLogit: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jwindle/BayesLogit + BayesPen: + License: not found + Permission to redistribute: true + Retrieved from: not found + BayesianTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/florianhartig/BayesianTools + BiasedUrn: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.agner.org/random/ https://www.r-project.org/ + Boruta: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/mbq/Boruta + Brobdingnag: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/Brobdingnag + CBPS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CBPS + CVST: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CVST + CVXR: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://cvxr.rbind.io + Cairo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/Cairo/ + ComICS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'http://dcq.tau.ac.il/ ' + CompQuadForm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CompQuadForm + ComplexUpset: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krassowski/complex-upset + CovSel: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CovSel + DBI: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-dbi/DBI + DEoptim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ArdiaD/DEoptim + DEoptimR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: svn://svn.r-forge.r-project.org/svnroot/robustbase/pkg/DEoptimR + DHARMa: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/florianhartig/DHARMa + DMCfun: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/igmmgi/DMCfun + DRR: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/gdkrmr/DRR + DT: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/DT + DTRreg: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DTRreg + DataCombine: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://CRAN.R-project.org/package=DataCombine + DepthProc: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zzawadz/DepthProc + Deriv: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/sgsokol/Deriv + DescTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/andrisignorell/DescTools + DiagrammeR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rich-iannone/DiagrammeR + DiceKriging: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dicekrigingclub/www + DiscriMiner: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DiscriMiner + DistributionUtils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DistributionUtils + ECOSolveR: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/ECOSolveR + ENMeval: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/jamiemkass/ENMeval + EValue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=EValue + EasyABC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://easyabc.r-forge.r-project.org/ + EnvStats: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/alexkowa/EnvStats + ExPosition: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/derekbeaton/ExPosition1 + Exact: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Exact + FKSUM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FKSUM + FME: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://fme.r-forge.r-project.org/ + FNN: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FNN + FactoMineR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://factominer.free.fr + FactorCopula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FactorCopula + Formula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Formula + GGally: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ggobi/ggally + GJRM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.ucl.ac.uk/statistics/people/giampieromarra + GPArotation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://optimizer.r-forge.r-project.org/GPArotation_www/ + GSA: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://tibshirani.su.domains/GSA/ + GUTS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GUTS + GenSA: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GenSA + GeneNet: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + GetoptLong: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/GetoptLong + GillespieSSA: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcannood/GillespieSSA + GlobalOptions: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/GlobalOptions + GxEScanR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GxEScanR + HGNChelper: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/waldronlab/HGNChelper + HWxtest: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=HWxtest + HiddenMarkov: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.statsresearch.co.nz/dsh/sslib/ + Hmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://hbiostat.org/R/Hmisc/ + Hmsc: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.helsinki.fi/en/researchgroups/statistical-ecology/software/hmsc + IDPmisc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=IDPmisc + ISOcodes: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ISOcodes + ISOweek: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ISOweek + Iso: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Iso + JADE: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=JADE + JBTools: + License: GPL-2 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/src/contrib/Archive/JBTools/ + KODAMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=KODAMA + KernSmooth: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=KernSmooth + LCFdata: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LCFdata + LMERConvenienceFunctions: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LMERConvenienceFunctions + LaplacesDemon: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/LaplacesDemonR/LaplacesDemon + LearnBayes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LearnBayes + Lmoments: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://users.jyu.fi/~jutakarv/ + MALDIquant: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + MASS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + MCMCpack: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=MCMCpack + MESS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ekstroem/MESS + MIIVsem: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zackfisher/MIIVsem + MLmetrics: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/yanyachen/MLmetrics + MODIStsp: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/MODIStsp + MatchIt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kosukeimai/MatchIt + Matching: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/JasjeetSekhon/Matching + Matrix: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://Matrix.R-forge.R-project.org + MatrixModels: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://Matrix.R-forge.R-project.org/ + MetaUtility: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=MetaUtility + ModelMetrics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ModelMetrics + MonteCarlo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/FunWithR/MonteCarlo + NCmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NCmisc + NISTunits: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NISTunits + NLP: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NLP + OceanView: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=OceanView + OpenMx: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/OpenMx/OpenMx + PCAmatchR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/machiela-lab/PCAmatchR + PMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/PMA + ParamHelpers: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/ParamHelpers + PearsonDS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PearsonDS + PermAlgo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PermAlgo + PoissonSeq: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/PoissonSeq + Polychrome: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + PresenceAbsence: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PresenceAbsence + Publish: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Publish + R.cache: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.cache + R.matlab: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.matlab + R.methodsS3: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.methodsS3 + R.oo: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.oo + R.rsp: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.rsp + R.utils: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.utils + R2WinBUGS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=R2WinBUGS + R6: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/R6 + RANN: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jefferislab/RANN + RBesT: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://opensource.nibr.com/RBesT/ + RCAL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.rutgers.edu/~ztan + RCircos: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hzhanghenry/RCircos + RColorBrewer: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RColorBrewer + RCurl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RCurl + RGCCA: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rgcca-factory/RGCCA + RInside: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rinside + RItools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=RItools + RJSONIO: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RJSONIO + RMTstat: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/evanbiederstedt/RMTstat + RNeXML: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/RNeXML + RNifti: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jonclayden/RNifti + ROCR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ipa-tys/ROCR + ROI: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://roi.r-forge.r-project.org/ + ROI.plugin.glpk: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://roi.r-forge.r-project.org/ + RPMM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RPMM + RSNNS: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/cbergmeir/RSNNS + RSQLite: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-dbi/RSQLite + RSpectra: + License: + - MulanPSL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/RSpectra + RUnit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RUnit + RWeka: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RWeka + RWekajars: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RWekajars + Rborist: + License: + - SimPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/suiji/Rborist.CRAN + Rcgmin: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rcgmin + Rcpp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/Rcpp + RcppArmadillo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/RcppArmadillo + RcppEigen: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/RcppEigen + RcppGSL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rcppgsl + RcppParallel: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcppcore/RcppParallel + RcppProgress: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/kforner/rcpp_progress + RcppRoll: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RcppRoll + RcppTOML: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://dirk.eddelbuettel.com/code/rcpp.toml.html + RcppThread: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/RcppThread + Rdpack: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/Rdpack + RefFreeEWAS: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RefFreeEWAS + Rglpk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://R-Forge.R-project.org/projects/rglp/ + RhpcBLASctl: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://prs.ism.ac.jp/~nakama/Rhpc/ + Rmpfr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rmpfr.r-forge.r-project.org/ + Rook: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/evanbiederstedt/rook + Rserve: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.rforge.net/Rserve/ + Rsolnp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rsolnp + Rssa: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/asl/rssa + Rtsne: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/jkrijthe/Rtsne + Rttf2pt1: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/wch/Rttf2pt1 + Rvmmin: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rvmmin + SBdecomp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SBdecomp + SDMTools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=SDMTools + SKAT: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SKAT + SNFtool: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SNFtool + SOAR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SOAR + SPAtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SPAtest + SQUAREM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html + SignifReg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SignifReg + SimSeq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SimSeq + SnowballC: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/nalimilan/R.TeMiS + SparseM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html + StanHeaders: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://mc-stan.org/ + StatMatch: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/marcellodo/StatMatch + SuperLearner: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ecpolley/SuperLearner + SuppDists: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SuppDists + TFisher: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TFisher + TH.data: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TH.data + TMB: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaskr/adcomp + TTR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/TTR + TeachingDemos: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TeachingDemos + TraMineR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://traminer.unige.ch + TruncatedNormal: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lbelzile/TruncatedNormal + UpSetR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hms-dbmi/UpSetR + V8: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/V8 + VGAM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yee/VGAM/ + VIM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/statistikat/VIM + VSURF: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/robingenuer/VSURF + VennDiagram: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=VennDiagram + VineCopula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/VineCopula + WeightSVM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/#weights_for_data_instances + WikidataQueryServiceR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bearloga/WikidataQueryServiceR + WikidataR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/TS404/WikidataR + WikipediR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/WikipediR + WriteXLS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/marcschwartz/WriteXLS + XML: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://www.omegahat.net/RSXML/ + abc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abc + abc.data: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abc.data + abe: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abe + abind: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abind + acepack: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=acepack + adabag: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=adabag + ade4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/adeverse/ade4 + admisc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/dusadrian/admisc + aggregation: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=aggregation + akima: + License: + - MIT-CMU + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=akima + alabama: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=alabama + alluvial: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mbojan/alluvial + animation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://yihui.org/animation/ + aod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=aod + apcluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/UBod/apcluster + ape: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/emmanuelparadis/ape + aplot: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/YuLab-SMU/aplot + argparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-argparse + aricode: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jchiquet/aricode + arm: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=arm + askpass: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://r-lib.r-universe.dev/askpass + asnipe: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=asnipe + assertive: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive + assertive.base: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.base + assertive.code: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.code + assertive.data: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data + assertive.data.uk: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data.uk + assertive.data.us: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data.us + assertive.datetimes: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.datetimes + assertive.files: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.files + assertive.matrices: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.matrices + assertive.models: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.models + assertive.numbers: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.numbers + assertive.properties: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.properties + assertive.reflection: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.reflection + assertive.sets: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.sets + assertive.strings: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.strings + assertive.types: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.types + assertthat: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=assertthat + audio: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://www.rforge.net/audio/ + aws: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.wias-berlin.de/people/polzehl/ + awsMethods: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.wias-berlin.de/software/imaging/ + backports: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/backports + bacr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bacr + bartMachine: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bartMachine + bartMachineJARs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bartMachineJARs + base: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/base/html/base-package.html + base64: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=base64 + base64enc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/base64enc + batchmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=batchmeans + bayesm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bayesm + bayesplot: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/bayesplot/ + bbmle: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bbolker/bbmle + bdsmatrix: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bdsmatrix + beanplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=beanplot + beeswarm: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/aroneklund/beeswarm + berryFunctions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brry/berryFunctions + betareg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://topmodels.R-Forge.R-project.org/betareg/ + bibtex: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/bibtex + bigD: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bigD + bigmemory: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaneplusplus/bigmemory + bigmemory.sri: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bigmemory.sri + bindr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/bindr + bindrcpp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/bindrcpp + bio3d: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://bitbucket.org/Grantlab/bio3d + biom: + License: not found + Permission to redistribute: true + Retrieved from: not found + biomod2: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/biomodhub/biomod2 + bit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/bit + bit64: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/bit64 + bitops: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/R-bitops + blavaan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/ecmerkle/blavaan + blob: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/blob + bmp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bmp + bnlearn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.bnlearn.com/ + bold: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/boldsource + boot: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=boot + bootstrap: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://gitlab.com/scottkosty/bootstrap + brew: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gregfrog/brew + brglm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ikosmidis/brglm + bridgedist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/swihart/bridgedist + bridgesampling: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/quentingronau/bridgesampling + brio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/brio + brms: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/paul-buerkner/brms + broom: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/broom + broom.helpers: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/broom.helpers + broom.mixed: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bbolker/broom.mixed + bslib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bslib + bst: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bst + cNORM: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/WLenhard/cNORM + cSEM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/FloSchuberth/cSEM + caTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=caTools + cachem: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cachem + calibrate: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=calibrate + callr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/callr + car: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/car/ + carData: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/car/ + caret: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/topepo/caret + catlearn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ajwills72/catlearn + celestial: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=celestial + cellranger: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rsheets/cellranger + cgdsr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/cBioPortal/cgdsr + cghFLasso: + License: not found + Permission to redistribute: true + Retrieved from: not found + changepoint: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rkillick/changepoint + checkmate: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mllg/checkmate + chemometrics: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://cstat.tuwien.ac.at/filz/ + chkptstanr: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=chkptstanr + chron: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=chron + circlize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/circlize + circular: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=circular + clValid: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clValid + class: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + classInt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/classInt + cld2: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/cld2/ + + https://ropensci.r-universe.dev/cld2' + cli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cli + clipr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mdlincoln/clipr + clisymbols: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/clisymbols + clock: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/clock + clue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clue + cluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/cluster/ + clusterGeneration: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clusterGeneration + clusterRepro: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.ncbi.nlm.nih.gov/pubmed/16613834. + clustree: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lazappi/clustree + cmprsk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.R-project.org + cobalt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ngreifer/cobalt + cobs: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://curves-etc.r-forge.r-project.org/ + coda: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=coda + codetools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/luke-tierney/codetools + coin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://coin.r-forge.r-project.org + collapse: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/sebkrantz/collapse + colorspace: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://colorspace.R-Forge.R-project.org/ + colourpicker: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/colourpicker + combinat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=combinat + commonmark: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/commonmark/ + + https://ropensci.r-universe.dev/commonmark' + compiler: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/compiler/html/ compiler-package.html + compositions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.boogaart.de/compositions/ + conditionz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropenscilabs/conditionz + conflicted: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/conflicted + conquer: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/XiaoouPan/conquer + contfrac: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/contfrac + copCAR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=copCAR + copula: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://copula.r-forge.r-project.org/ + corpcor: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + corrplot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/taiyun/corrplot + covr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/covr + covsim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=covsim + cowplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://wilkelab.org/cowplot/ + coxed: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jkropko/coxed + coxme: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=coxme + cpp11: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cpp11 + crayon: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/crayon + credentials: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/credentials/ + + https://r-lib.r-universe.dev/credentials' + crfsuite: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/crfsuite + crosstalk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/crosstalk + crul: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/crul/ + csSAM: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/csSAM + ctmle: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ctmle + cubature: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/cubature + cubelyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/cubelyr + curl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/curl + cvAUC: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ledell/cvAUC + d3Network: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/christophergandrud/d3Network + dHSIC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dHSIC + dagitty: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jtextor/dagitty + data.table: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/Rdatatable/data.table + data.tree: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gluc/data.tree + datasets: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/datasets/html/datasets-package.html + date: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=date + dbarts: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/vdorie/dbarts + dbplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dbplyr + dbscan: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/dbscan + dcurver: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/oguzhanogreden/dcurver + ddalpha: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ddalpha + deSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://desolve.r-forge.r-project.org/ + deal: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=deal + debugme: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/debugme + deldir: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=deldir + dendextend: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/dendextend + desc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/desc + devtools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/devtools + dfidx: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=dfidx + diagram: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=diagram + dichromat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dichromat + diffobj: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brodieG/diffobj + digest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/digest + dimRed: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.guido-kraemer.com/software/dimred/ + diptest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/diptest + dismo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://rspatial.org/raster/sdm/ + distillery: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=distillery + distr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + distrEx: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + distributional: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mitchelloharawild/distributional + diveRsity: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://diversityinlife.weebly.com/ + dlm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dlm + doMC: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=doMC + doParallel: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/doparallel + doRNG: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/doRNG + doSNOW: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=doSNOW + doc2vec: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/doc2vec + docstring: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dasonk/docstring + dotCall64: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://git.math.uzh.ch/reinhard.furrer/dotCall64 + downlit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/downlit + downloader: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/downloader + dplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dplyr + dr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=dr + drgee: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=drgee + drugCombo: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/drugCombo + dtangle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dtangle + dtplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dtplyr + dtw: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://dynamictimewarping.github.io/ + dummies: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dummies + dygraphs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/dygraphs + dynamicTreeCut: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/BranchCutting/ + e1071: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=e1071 + earth: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.milbo.users.sonic.net/earth/ + elementR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/charlottesirot/elementR + ellipse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/ellipse + ellipsis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ellipsis + elliptic: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/elliptic + emdbook: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.math.mcmaster.ca/bolker/emdbook + emmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/emmeans + emoa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/emoa + emulator: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/emulator + energy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mariarizzo/energy + entropy: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + epitools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=epitools + ergm: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + ergm.count: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + estimability: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/estimability + evaluate: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/evaluate + evd: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=evd + expm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://R-Forge.R-project.org/projects/expm/ + expsmooth: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/expsmooth + extRemes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=extRemes + extrafont: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/extrafont + extrafontdb: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/extrafontdb + fail: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mllg/fail + fansi: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brodieG/fansi + farver: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/farver + fastDummies: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jacobkap/fastDummies + fastICA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fastICA + fastcluster: + License: + - BSD-2-Clause-FreeBSD + Permission to redistribute: true + Retrieved from: https://danifold.net/fastcluster.html + fasterize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ecohealthalliance/fasterize + fastmap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/fastmap + fastmatch: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www.rforge.net/fastmatch + fdrtool: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + feather: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wesm/feather + ff: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/truecluster/ff + fftw: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fftw + fftwtools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/krahim/fftwtools + fields: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dnychka/fieldsRPackage + filehash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rdpeng/filehash + finalfit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ewenharrison/finalfit + findpython: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/findpython + fishMod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fishMod + fitdistrplus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lbbe-software/fitdistrplus + flashClust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flashClust + flexclust: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flexclust + flexmix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flexmix + flextable: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ardata-fr/flextable-book + fma: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/fma + fmri: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.wias-berlin.de/software/imaging/ + fontBitstreamVera: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontBitstreamVera + fontLiberation: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontLiberation + fontawesome: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/fontawesome + fontquiver: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontquiver + forcats: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/forcats + foreach: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/foreach + forecast: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/forecast + foreign: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/foreign/ + formatR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/formatR + formula.tools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/decisionpatterns/formula.tools + fossil: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://matthewvavrek.com/programs-and-code/fossil/ + fpc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.unibo.it/sitoweb/christian.hennig/en/ + fpp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://otexts.com/fpp/ + fracdiff: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/fracdiff + fs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/fs + furrr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/DavisVaughan/furrr + futile.logger: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=futile.logger + futile.options: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=futile.options + future: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/future + future.apply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/future.apply + gWidgets2: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/gWidgets3/gWidgets2 + gWidgets2tcltk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jverzani/gWidgets2tcltk + gam: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gam + gamlss: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.data: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.dist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.tr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamm4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gamm4 + gap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jinghuazhao/R + gap.datasets: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jinghuazhao/R + gapfill: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/florafauna/gapfill + gargle: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gargle + gaussquad: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gaussquad + gbRd: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gbRd + gbm: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/gbm-developers/gbm + gclus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gclus + gdalUtilities: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/JoshOBrien/gdalUtilities + gdalUtils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gearslaboratory/gdalUtils + gdata: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gdata + gdistance: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/AgrDataSci/gdistance + gdtools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/davidgohel/gdtools + gee: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gee + geeM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geeM + geepack: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geepack + geex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bsaul/geex + geiger: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geiger + generics: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/generics + genoPlotR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://genoplotr.r-forge.r-project.org/ + geojson: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/geojson + geojsonio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/geojsonio + geojsonsf: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/SymbolixAU/geojsonsf + geometries: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dcooley/geometries + geometry: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/davidcsterratt/geometry + gert: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/gert/ + getopt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-getopt + gfonts: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dreamrs/gfonts + ggExtra: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/ggExtra + ggbeeswarm: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/eclarke/ggbeeswarm + ggdag: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-causal/ggdag + ggfan: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/jasonhilton/ggfan + ggforce: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/ggforce + ggformula: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ProjectMOSAIC/ggformula + ggfun: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/YuLab-SMU/ggfun + ggh4x: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/teunbrand/ggh4x + ggnetwork: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/briatte/ggnetwork + ggplot2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/ggplot2 + ggplotify: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/GuangchuangYu/ggplotify + ggpubr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rpkgs.datanovia.com/ggpubr/ + ggraph: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/ggraph + ggrepel: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/slowkow/ggrepel + ggridges: + License: + - AML + Permission to redistribute: true + Retrieved from: https://wilkelab.org/ggridges/ + ggsci: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/nanxstats/ggsci + ggsignif: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/const-ae/ggsignif + ggstance: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lionel-/ggstance + ggvenn: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ggvenn + ggvis: + License: + - AML + Permission to redistribute: true + Retrieved from: https://ggvis.rstudio.com/ + gh: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gh + git2r: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/git2r + gitcreds: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gitcreds + glasso: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www-stat.stanford.edu/~tibs/glasso + gld: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/newystats/gld + gllvm: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jenniniku/gllvm + glmmML: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=glmmML + glmmTMB: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/glmmTMB/glmmTMB + glmnet: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://glmnet.stanford.edu + globals: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/globals + glue: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/glue + gmm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gmm + gmodels: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gmodels + gmp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://forgemia.inra.fr/sylvain.jasson/gmp + gnumeric: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gnumeric + goftest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/baddstats/goftest + gomms: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gomms + googledrive: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/googledrive + googlesheets4: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/googlesheets4 + gower: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/markvanderloo/gower + gplots: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/gplots + grDevices: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/grDevices/html/grDevices-package.html + grImport2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/grimport/ + graphics: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/graphics/html/graphics-package.html + graphlayouts: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/schochastics/graphlayouts + grf: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/grf-labs/grf + grid: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/grid/html/grid-package.html + gridBase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gridBase + gridExtra: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gridExtra + gridGraphics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/pmur002/gridgraphics + grpreg: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/pbreheny/grpreg + gsalib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/broadinstitute/gsalib + gsl: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/gsl + gsw: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/teos-10/GSW-R + gt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/gt + gtable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gtable + gtools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gtools + gtsummary: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ddsjoberg/gtsummary + h2o: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/h2oai/h2o-3 + hal9001: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tlverse/hal9001 + haldensify: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/nhejazi/haldensify + hardhat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/hardhat + harmony: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/immunogenomics/harmony + hash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.johnhughes.org + haven: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/WizardMac/ReadStat + hdf5r: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hhoeflin/hdf5r + hdm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hdm + heatmap3: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=heatmap3 + here: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/here + hexbin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/edzer/hexbin + highr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/highr + hms: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/hms + htmlTable: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://gforge.se/packages/ + htmltools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/htmltools + htmlwidgets: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ramnathv/htmlwidgets + httpcode: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sckott/httpcode + httpuv: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/httpuv + httr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/httr + httr2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/httr2 + huge: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=huge + hunspell: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/hunspell/ + + https://ropensci.r-universe.dev/hunspell' + hwriter: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hwriter + hypergeo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hypergeo + ica: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ica + idr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=idr + ids: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/richfitz/ids + ie2misc: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/iembry/ie2misc + igraph: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r.igraph.org/ + image.binarization: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/DIGI-VUB/image.binarization + imager: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/asgr/imager + imagerExtra: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ShotaOchi/imagerExtra + ineq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ineq + influenceR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/khanna-lab/influenceR + infotheo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://homepage.meyerp.com/software + ini: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dvdscripter/ini + inline: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/inline + intergraph: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mbojan/intergraph + interp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=interp + interpretR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=interpretR + intrinsicDimension: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=intrinsicDimension + inum: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=inum + ipred: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ipred + irace: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mlopez-ibanez/irace + irlba: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bwlewis/irlba + ismev: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.ral.ucar.edu/~ericg/softextreme.php + isoband: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://isoband.r-lib.org + iterators: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/iterators + itertools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=itertools + janeaustenr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/juliasilge/janeaustenr + jiebaR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/qinwf/jiebaR + jiebaRD: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/qinwf/jiebaRD + jomo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jomo + jpeg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.rforge.net/jpeg/ + jqr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/jqr/ https://ropensci.r-universe.dev/jqr + jquerylib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jquerylib + jsonify: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jsonify + jsonlite: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://jeroen.r-universe.dev/jsonlite + + https://arxiv.org/abs/1403.2805' + jstable: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jinseob2kim/jstable + juicyjuice: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rich-iannone/juicyjuice + kde1d: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/kde1d + kedd: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/iagogv/kedd + kernlab: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=kernlab + kinship2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=kinship2 + klaR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statistik.tu-dortmund.de + knitr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://yihui.org/knitr/ + kohonen: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=kohonen + ks: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.mvstat.net/mvksa/ + labdsv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=labdsv + labeling: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=labeling + labelled: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/labelled + laeken: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=laeken + lambda.r: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lambda.r + lars: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://doi.org/10.1214/009053604000000067 + lassosum: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=lassosum + later: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/later + lattice: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://lattice.r-forge.r-project.org/ + latticeExtra: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://latticeextra.r-forge.r-project.org/ + lava: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kkholst/lava + lavaan: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://lavaan.ugent.be + lazy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lazy + lazyeval: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lazyeval + lda: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lda + ldbounds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ldbounds + leafem: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/leafem + leaflet: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/leaflet + leaflet.providers: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/leaflet.providers + leafsync: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/leafsync + leaps: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=leaps + leiden: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/leiden + lhs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bertcarnell/lhs + libcoin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=libcoin + lifecycle: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/lifecycle + limSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=limSolve + linkcomm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alextkalinka/linkcomm + linprog: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://linprog.r-forge.r-project.org/ + liquidSVM: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=liquidSVM + listenv: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/listenv + lme4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lme4/lme4 + lmerTest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/runehaubo/lmerTestR + lmom: + License: + - CPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lmom + lmtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lmtest + lobstr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/lobstr + locfdr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=locfdr + locfit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=locfit + logcondens: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: 'http://www.kasparrufibach.ch ' + logger: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daroczig/logger + logistf: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cemsiis.meduniwien.ac.at/en/kb/science-research/software/statistical-software/firth-correction/ + logspline: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=logspline + longitudinal: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + longmemo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=longmemo + loo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/loo/ + lpSolve: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/lpSolve + lpSolveAPI: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lpSolveAPI + lqa: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=lqa + lsei: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yongwang/ + lslx: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/psyphh/lslx + lubridate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/lubridate + lwgeom: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/lwgeom + mRMRe: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.pmgenomics.ca/bhklab/ + magic: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/magic + magick: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/magick/ + + https://ropensci.r-universe.dev/magick' + magrittr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/magrittr + manipulateWidget: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rte-antares-rpackage/manipulateWidget + mapproj: + License: + - LPL-1.02 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mapproj + maps: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maps + maptools: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://maptools.r-forge.r-project.org/ + markdown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/markdown + mathjaxr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/mathjaxr + matlab: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=matlab + matrixStats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/matrixStats + matrixcalc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/matrixcalc + maxLik: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maxLik + maxlike: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maxlike + maxnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mrmaxent/maxnet + mboost: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/boost-R/mboost + mclogit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/melff/mclogit + mclust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mclust-org/mclust + mcmc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/cjgeyer/mcmc + mcmcse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mcmcse + mda: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mda + medflex: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jmpsteen/medflex + mediation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://imai.princeton.edu/projects/mechanisms.html + memisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/melff/memisc + memoise: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/memoise + memuse: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/shinra-dev/memuse + metadat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/metadat + metafor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/metafor + methods: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/methods/html/methods-package.html + mets: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kkholst/mets + mgcv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mgcv + mgsub: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bmewing/mgsub + mhsmm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mhsmm + mi: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.columbia.edu/~gelman/ + mice: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/amices/mice + miceadds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alexanderrobitzsch/miceadds + microbenchmark: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/microbenchmark + mime: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/mime + minerva: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + miniUI: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=miniUI + minpack.lm: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=minpack.lm + minqa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://optimizer.r-forge.r-project.org + mirt: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/philchalmers/mirt + misc3d: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/luke-tierney/misc3d + miscTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/arne-henningsen/miscTools + missForest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/stekhoven/missForest + mitml: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/simongrund1/mitml + mitools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mitools + mixtools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dsy109/mixtools + mlbench: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mlbench + mlegp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mlegp + mlogit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=mlogit + mlr: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/mlr + mlrMBO: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/mlrMBO + mltools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ben519/mltools + mnormt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://azzalini.stat.unipd.it/SW/Pkg-mnormt/ + modelr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/modelr + modeltools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=modeltools + momentfit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=momentfit + moments: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + mosaicCore: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ProjectMOSAIC/mosaicCore + mpath: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhuwang46/mpath + msm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/chjackson/msm + mstate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hputter/mstate + multcomp: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://multcomp.R-forge.R-project.org + multcompView: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=multcompView + multicool: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jmcurran/multicool + multipol: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=multipol + munsell: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/cwickham/munsell + mvabund: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mvabund + mvnfast: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mfasiolo/mvnfast + mvtnorm: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://mvtnorm.R-forge.R-project.org + nabor: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jefferis/nabor + naniar: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/njtierney/naniar + natserv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/natserv + naturalsort: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kos59125/naturalsort + ncbit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ncbit + ncdf4: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://cirrus.ucsd.edu/~pierce/ncdf/ + network: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statnet.org/ + networkDynamic: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://statnet.org/ + networkLite: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/EpiModel/networkLite + neuRosim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=neuRosim + neuralnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bips-hb/neuralnet + ngspatial: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ngspatial + nleqslv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nleqslv + nlme: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/nlme/ + nloptr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/astamm/nloptr + nlsem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/nwickel/nlsem + nnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + nnls: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nnls + nonnest2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/qpsy/nonnest2 + nor1mix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://curves-etc.r-forge.r-project.org/ + norm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=norm + nortest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nortest + np: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/JeffreyRacine/R-Package-np + npsurv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yongwang/ + numDeriv: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://optimizer.r-forge.r-project.org/ + oai: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/oai + oce: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dankelley/oce + oddsratio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pat-s/oddsratio + officer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ardata-fr/officeverse + openair: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/davidcarslaw/openair + openssl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/openssl + openxlsx: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ycphs/openxlsx + operator.tools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/decisionpatterns/operator.tools + optextras: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=optextras + optimParallel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/florafauna/optimParallel-R + optimr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=optimr + optimx: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nashjc/optimx + optmatch: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/markmfredrickson/optmatch + optparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-optparse + ordinal: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/runehaubo/ordinal + origami: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tlverse.org/origami/ + oro.nifti: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://rigorousanalytics.blogspot.com + orthopolynom: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=orthopolynom + osqp: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://osqp.org + outliers: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.R-project.org + pROC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/xrobin/pROC + packrat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/packrat + pacman: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/trinker/pacman + pammtools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/adibender/pammtools + pamr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pamr + pan: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pan + parallel: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/parallel/html/parallel-package.html + parallelDist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alexeckert/parallelDist + parallelMap: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/parallelMap + parallelly: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/parallelly + parsedate: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/parsedate + party: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://party.R-forge.R-project.org + partykit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://partykit.r-forge.r-project.org/partykit/ + pastecs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SciViews/pastecs + patchwork: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/patchwork + pbapply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/psolymos/pbapply + pbivnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brentonk/pbivnorm + pbkrtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://people.math.aau.dk/~sorenh/software/pbkrtest/ + pcaPP: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/pcaPP + pdp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bgreenwell/pdp + pec: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pec + penalized: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=penalized + penfa: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/egeminiani/penfa + peperr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/fbertran/peperr + permute: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gavinsimpson/permute + phangorn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/KlausVigo/phangorn + pheatmap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pheatmap + phylobase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/fmichonneau/phylobase + phytools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/liamrevell/phytools + pillar: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pillar + pim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/CenterForStatistics-UGent/pim + pinfsc50: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pinfsc50 + pixmap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pixmap + pkgbuild: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgbuild + pkgconfig: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgconfig + pkgdown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgdown + pkgload: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgload + pkgmaker: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/pkgmaker + plogr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/plogr + plot3D: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=plot3D + plot3Drgl: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=plot3Drgl + plotly: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://plotly-r.com + plotmo: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.milbo.users.sonic.net + plotrix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/plotrix + pls: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/khliland/pls + plyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/plyr + png: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/png/ + poLCA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dlinzer/poLCA + polspline: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=polspline + polyclip: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://github.com/baddstats/polyclip + polycor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/polycor/ + polynom: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=polynom + posterior: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://mc-stan.org/posterior/ + ppcor: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ppcor + prabclus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.unibo.it/sitoweb/christian.hennig/en/ + pracma: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pracma + praise: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/praise + preseqR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=preseqR + prettyGraphs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/derekbeaton/ExPosition1 + prettyunits: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/prettyunits + princurve: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rcannood/princurve + processx: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/processx + prodlim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tagteam/prodlim + profileModel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ikosmidis/profileModel + proftools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=proftools + profvis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/profvis + progress: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/progress + progressr: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/progressr + projpred: + License: + - AML + Permission to redistribute: true + Retrieved from: https://mc-stan.org/projpred/ + promises: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/promises + proto: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hadley/proto + protolite: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jeroen/protolite + proxy: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=proxy + proxyC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/koheiw/proxyC + pryr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hadley/pryr + ps: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ps + pscl: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/atahk/pscl + pspline: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pspline + psych: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: 'https://personality-project.org/r/psych/ + + https://personality-project.org/r/psych-manual.pdf' + pulsar: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/zdk123/pulsar + purrr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/purrr + pvclust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://stat.sys.i.kyoto-u.ac.jp/prog/pvclust/ + qgam: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=qgam + qgraph: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SachaEpskamp/qgraph + qqman: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/stephenturner/qqman + qrnn: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=qrnn + quadprog: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=quadprog + quanteda: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://quanteda.io + quantmod: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/quantmod + quantreg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + questionr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/juba/questionr + rARPACK: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/rARPACK + rJava: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: http://www.rforge.net/rJava/ + ragg: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ragg + random: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.random.org + randomForest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.berkeley.edu/~breiman/RandomForests/ + randomForestSRC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://www.randomforestsrc.org/ https://ishwaran.org/ + randtoolbox: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/rmetrics/ + rangeModelMetadata: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rangeModelMetadata + ranger: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/imbs-hl/ranger + rapidjsonr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rapidjsonr + rappdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rappdirs + raster: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://rspatial.org/raster + rasterVis: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/oscarperpinan/rastervis + ratelimitr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tarakc02/ratelimitr + rbibutils: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/rbibutils + rbison: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rbisondevel + rcmdcheck: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rcmdcheck + rda: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/rda + rdrop2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/karthik/rdrop2 + readODS: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/readODS + readbitmap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jefferis/readbitmap + reader: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=reader + readr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/readr + readxl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/readxl + rebird: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rebird + recipes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/recipes + registry: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=registry + regsem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/Rjacobucci/regsem + relsurv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=relsurv + rematch: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/rematch + rematch2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rematch2 + remotes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/remotes + rentrez: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docs.ropensci.org/rentrez + renv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/renv + reprex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/reprex + resample: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=resample + reshape: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://had.co.nz/reshape + reshape2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/reshape + reticulate: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/reticulate + rex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kevinushey/rex + rgbif: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rgbifdevel + rgdal: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://rgdal.r-forge.r-project.org + rgeos: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://r-forge.r-project.org/projects/rgeos/ https://libgeos.org + + http://rgeos.r-forge.r-project.org/index.html' + rgexf: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gvegayon/rgexf + rgl: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/rgl + ridge: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SteffenMoritz/ridge + ridigbio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/iDigBio/ridigbio + rio: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gesistsa/rio + riskRegression: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tagteam/riskRegression + ritis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/ritisdevel + rjson: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/alexcb/rjson + rlang: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rlang + rle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/statnet/rle + rlecuyer: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.iro.umontreal.ca/~lecuyer/myftp/papers/streams00.pdf + rlemon: + License: + - BSL-1.0 + Permission to redistribute: true + Retrieved from: https://errickson.net/rlemon/ + rlist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/renkun-ken/rlist + rmarkdown: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rmarkdown + rmeta: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rmeta + rms: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/harrelfe/rms + rncl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fmichonneau/rncl + rnetcarto: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rnetcarto + rngWELL: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rngWELL + rngtools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/renozao/rngtools + robustbase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://robustbase.R-forge.R-project.org/ + rootSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rootSolve + roptim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ypan1988/roptim + rotl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rotl + roxygen2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/roxygen2 + rpact: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.rpact.org + rpart: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bethatkinson/rpart + rpf: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jpritikin/rpf + rprojroot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rprojroot + rrcov: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/rrcov + rredlist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rredlist + rsample: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/rsample + rsconnect: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rsconnect + rstan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/rstan/ + rstantools: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/rstantools/ + rstatix: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://rpkgs.datanovia.com/rstatix/ + rstudioapi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rstudioapi + rtdists: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rtdists/rtdists + ruv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www-personal.umich.edu/~johanngb/ruv/ + rversions: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-hub/rversions + rvertnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rvertnet + rvest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/rvest + rvinecopulib: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/vinecopulib/rvinecopulib + s2: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/s2 + sampling: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=sampling + sandwich: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://sandwich.R-Forge.R-project.org/ + sass: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/sass + scales: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/scales + scam: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scam + scatterpie: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scatterpie + scatterplot3d: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scatterplot3d + scs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/FlorianSchwendinger/scs + sctransform: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/satijalab/sctransform + seewave: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rug.mnhn.fr/seewave/ + segmented: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=segmented + selectr: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://sjp.co.nz/projects/selectr + sem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=sem + semPLS: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=semPLS + semTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/simsem/semTools + sendmailR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/sendmailR + sensemakr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/carloscinelli/sensemakr + sentometrics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://sentometrics-research.com/sentometrics/ + seqinr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lbbe-software/seqinr + servr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/servr + sessioninfo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/sessioninfo + setRNG: + License: + - AML + Permission to redistribute: false + Retrieved from: http://distr.r-forge.r-project.org/ + sf: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/sf + sfheaders: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dcooley/sfheaders + sfsmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/sfsmisc + shadowtext: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/GuangchuangYu/shadowtext + shape: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shape + shapefiles: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shapefiles + shiny: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shiny + shinycssloaders: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/shinycssloaders + shinydashboard: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shinydashboard + shinyjs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://deanattali.com/shinyjs/ + shinystan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/shinystan/ + shinythemes: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shinythemes + signal: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://signal.R-forge.R-project.org + simex: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/wolfganglederer/simex + slam: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=slam + slider: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/slider + sm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=sm + smoof: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jakobbossek/smoof + smoother: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=smoother + sn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://azzalini.stat.unipd.it/SN/ + sna: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statnet.org + snow: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=snow + snowfall: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=snowfall + solrium: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/solriumdevel + som: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=som + soundecology: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ljvillanueva/soundecology + sourcetools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kevinushey/sourcetools + sp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/edzer/sp + spData: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://jakubnowosad.com/spData/ + spThin: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mlammens/spThin + spaMM: + License: + - CECILL-2.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + spaa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/helixcn/spaa + spam: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://www.math.uzh.ch/pages/spam/ + spatial: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + spatstat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.core: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.data: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.explore: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.geom: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.linnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.model: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.random: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.sparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.utils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + splines: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/splines/html/splines-package.html + splitstackshape: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mrdwab/splitstackshape + spls: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=spls + spocc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/spoccdevel + stabledist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/scm/viewvc.php/pkg/stabledist/?root=rmetrics + stabs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hofnerb/stabs + stargazer: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=stargazer + stars: + License: + - Apache-1.1 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/stars + startupmsg: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=startupmsg + statmod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=statmod + statnet: + License: + - AML + Permission to redistribute: true + Retrieved from: http://statnet.org + statnet.common: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + stats: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/stats/html/stats-package.html + stats4: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/stats4/html/stats4-package.html + stdReg: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/web/packages/stdReg/index.html + stopwords: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/quanteda/stopwords + stringdist: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/markvanderloo/stringdist + stringi: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://stringi.gagolewski.com/ + stringr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/stringr + strucchange: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=strucchange + styler: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/styler + subplex: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kingaa/subplex + survey: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://r-survey.r-forge.r-project.org/survey/ + survival: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/therneau/survival + survivalROC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=survivalROC + svd: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/asl/svd + svglite: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/svglite + swagger: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/swagger + symmoments: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=symmoments + sys: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/sys + systemfonts: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/systemfonts + tableone: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaz-yos/tableone + tabletools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=tabletools + tau: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tau + taxize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/taxize/ (website) + tcltk: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/tcltk/html/tcltk-package.html + tcltk2: + License: + - AML + Permission to redistribute: true + Retrieved from: http://www.sciviews.org/SciViews-R + tclust: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/valentint/tclust + tensor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tensor + tensorA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.boogaart.de/tensorA/ + tergm: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + terra: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rspatial/terra + testit: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/yihui/testit + testthat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/testthat + textcat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=textcat + textplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/textplot + textshaping: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/textshaping + threejs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bwlewis/rthreejs + tibble: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tibble + tictoc: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jabiru/tictoc + tidygraph: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/tidygraph + tidyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tidyr + tidyselect: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/tidyselect + tidytext: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/juliasilge/tidytext + tidytree: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.amazon.com/Integration-Manipulation-Visualization-Phylogenetic-Computational-ebook/dp/B0B5NLZR1Z/ + tidyverse: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tidyverse + tiff: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.rforge.net/tiff/ + timeDate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/timeDateDoc + timechange: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/vspinu/timechange + timereg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/scheike/timereg + tinytex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/tinytex + tkrplot: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tkrplot + tm: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tm.r-forge.r-project.org/ + tmap: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-tmap/tmap + tmaptools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-tmap/tmaptools + tmle: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=tmle + tmvnsim: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + tmvtnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + tokenizers: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/tokenizers + tools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/tools/html/tools-package.html + topicmodels: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=topicmodels + tree: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tree + triebeard: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/triebeard + trimcluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.homepages.ucl.ac.uk/~ucakche/ + tripack: + License: + - MIT-CMU + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tripack + truncnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/truncnorm + trust: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://www.stat.umn.edu/geyer/trust/ + tseries: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tseries + tseriesChaos: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tseriesChaos + tsna: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://statnet.org/ + tsne: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jdonaldson/rtsne + tuneR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://tuner.R-forge.R-project.org + twang: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=twang + tweedie: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tweedie + tweenr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/tweenr + tzdb: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/tzdb + ucminf: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hdakpo/ucminf + udpipe: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/udpipe + umap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tkonopka/umap + unbalanced: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=unbalanced + unikn: + License: + - CC-BY-SA-4.0 + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=unikn + uniqueAtomMat: + License: unknown + Permission to redistribute: false + Retrieved from: https://github.com/gitlongor/uniqueAtomMat + units: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-quantities/units + unmarked: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/biodiverse/unmarked + urca: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=urca + urlchecker: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/urlchecker + urltools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/urltools + uroot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/uroot + usethis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/usethis + utf8: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/patperry/r-utf8 + utils: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/utils/html/utils-package.html + uuid: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://www.rforge.net/uuid + varhandle: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://codeberg.org/mehrad/varhandle + vcd: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=vcd + vcfR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/knausb/vcfR + vctrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/vctrs + vegan: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/vegandevs/vegan + vioplot: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/vioplot + vipor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=vipor + viridis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sjmgarnier/viridis + viridisLite: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sjmgarnier/viridisLite + visNetwork: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/datastorm-open/visNetwork + visdat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/visdat + vroom: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/vroom + waldo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/waldo + warp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/DavisVaughan/warp + waveslim: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://waveslim.blogspot.com + wdm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/wdm-r + webshot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/webshot + webutils: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/webutils + weights: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=weights + wellknown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/wellknown + whisker: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/edwindj/whisker + widgetframe: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bhaskarvk/widgetframe + wikitaxa: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/wikitaxa + withr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/withr + wk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/paleolimbot/wk + word2vec: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/word2vec + wordcloud: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: http://blog.fellstat.com/?cat=11 http://www.fellstat.com + worrms: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/worrms/ + xfun: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/yihui/xfun + xgboost: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dmlc/xgboost + xlsx: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/colearendt/xlsx + xlsxjars: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=xlsxjars + xml2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://xml2.r-lib.org + xopen: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/xopen + xtable: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://xtable.r-forge.r-project.org/ + xts: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/xts + yaImpute: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jeffreyevans/yaImpute + yaml: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/vubiostat/r-yaml + yulab.utils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://yulab-smu.top/ + zeallot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/nteetor/zeallot + zip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/zip + zoo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://zoo.R-Forge.R-project.org/ + 4.3.2: + R6: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/R6 + Rcpp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/Rcpp + askpass: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://r-lib.r-universe.dev/askpass + base: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/base/html/base-package.html + base64enc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/base64enc + brew: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gregfrog/brew + brio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/brio + bslib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bslib + cachem: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cachem + callr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/callr + cli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cli + clipr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mdlincoln/clipr + commonmark: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/commonmark/ + + https://ropensci.r-universe.dev/commonmark' + compiler: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/compiler/html/ compiler-package.html + cpp11: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cpp11 + crayon: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/crayon + credentials: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/credentials/ + + https://r-lib.r-universe.dev/credentials' + curl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/curl + datasets: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/datasets/html/datasets-package.html + desc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/desc + devtools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/devtools + diffobj: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brodieG/diffobj + digest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/digest + downlit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/downlit + ellipsis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ellipsis + evaluate: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/evaluate + fansi: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brodieG/fansi + fastmap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/fastmap + fontawesome: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/fontawesome + fs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/fs + gert: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/gert/ + gh: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gh + gitcreds: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gitcreds + glue: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/glue + grDevices: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/grDevices/html/grDevices-package.html + graphics: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/graphics/html/graphics-package.html + grid: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/grid/html/grid-package.html + highr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/highr + htmltools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/htmltools + htmlwidgets: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ramnathv/htmlwidgets + httpuv: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/httpuv + httr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/httr + httr2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/httr2 + ini: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dvdscripter/ini + jquerylib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jquerylib + jsonlite: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://jeroen.r-universe.dev/jsonlite + + https://arxiv.org/abs/1403.2805' + knitr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://yihui.org/knitr/ + later: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/later + lifecycle: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/lifecycle + magrittr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/magrittr + memoise: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/memoise + methods: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/methods/html/methods-package.html + mime: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/mime + miniUI: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=miniUI + openssl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/openssl + parallel: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/parallel/html/parallel-package.html + pillar: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pillar + pkgbuild: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgbuild + pkgconfig: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgconfig + pkgdown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgdown + pkgload: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgload + praise: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/praise + prettyunits: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/prettyunits + processx: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/processx + profvis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/profvis + promises: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/promises + ps: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ps + purrr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/purrr + ragg: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ragg + rappdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rappdirs + rcmdcheck: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rcmdcheck + rematch2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rematch2 + remotes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/remotes + rlang: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rlang + rmarkdown: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rmarkdown + roxygen2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/roxygen2 + rprojroot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rprojroot + rstudioapi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rstudioapi + rversions: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-hub/rversions + sass: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/sass + sessioninfo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/sessioninfo + shiny: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shiny + sourcetools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kevinushey/sourcetools + splines: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/splines/html/splines-package.html + stats: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/stats/html/stats-package.html + stats4: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/stats4/html/stats4-package.html + stringi: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://stringi.gagolewski.com/ + stringr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/stringr + sys: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/sys + systemfonts: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/systemfonts + tcltk: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/tcltk/html/tcltk-package.html + testthat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/testthat + textshaping: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/textshaping + tibble: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tibble + tinytex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/tinytex + tools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/tools/html/tools-package.html + urlchecker: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/urlchecker + usethis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/usethis + utf8: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/patperry/r-utf8 + utils: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/utils/html/utils-package.html + vctrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/vctrs + waldo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/waldo + whisker: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/edwindj/whisker + withr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/withr + xfun: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/yihui/xfun + xml2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://xml2.r-lib.org + xopen: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/xopen + xtable: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://xtable.r-forge.r-project.org/ + yaml: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/vubiostat/r-yaml + zip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/zip + 4.4.1: + R6: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/R6 + Rcpp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/Rcpp + askpass: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://r-lib.r-universe.dev/askpass + base: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/base/html/base-package.html + base64enc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/base64enc + brew: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gregfrog/brew + brio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/brio + bslib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bslib + cachem: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cachem + callr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/callr + cli: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cli + clipr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mdlincoln/clipr + commonmark: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/commonmark/ + + https://ropensci.r-universe.dev/commonmark' + compiler: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/compiler/html/ compiler-package.html + cpp11: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/cpp11 + crayon: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/crayon + credentials: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/credentials/ + + https://r-lib.r-universe.dev/credentials' + curl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/curl + datasets: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/datasets/html/datasets-package.html + desc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/desc + devtools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/devtools + diffobj: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brodieG/diffobj + digest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/digest + downlit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/downlit + ellipsis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ellipsis + evaluate: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/evaluate + fansi: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brodieG/fansi + fastmap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/fastmap + fontawesome: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/fontawesome + fs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/fs + gert: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/gert/ + gh: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gh + gitcreds: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gitcreds + glue: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/glue + grDevices: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/grDevices/html/grDevices-package.html + graphics: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/graphics/html/graphics-package.html + grid: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/grid/html/grid-package.html + highr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/highr + htmltools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/htmltools + htmlwidgets: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ramnathv/htmlwidgets + httpuv: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/httpuv + httr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/httr + httr2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/httr2 + ini: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dvdscripter/ini + jquerylib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jquerylib + jsonlite: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://jeroen.r-universe.dev/jsonlite + + https://arxiv.org/abs/1403.2805' + knitr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://yihui.org/knitr/ + later: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/later + lifecycle: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/lifecycle + magrittr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/magrittr + memoise: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/memoise + methods: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/methods/html/methods-package.html + mime: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/mime + miniUI: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=miniUI + openssl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/openssl + parallel: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/parallel/html/parallel-package.html + pillar: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pillar + pkgbuild: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgbuild + pkgconfig: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgconfig + pkgdown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgdown + pkgload: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/pkgload + praise: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/praise + prettyunits: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/prettyunits + processx: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/processx + profvis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/profvis + promises: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/promises + ps: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ps + purrr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/purrr + ragg: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/ragg + rappdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rappdirs + rcmdcheck: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rcmdcheck + rematch2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rematch2 + remotes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/remotes + rlang: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rlang + rmarkdown: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rmarkdown + roxygen2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/roxygen2 + rprojroot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/rprojroot + rstudioapi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rstudioapi + rversions: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-hub/rversions + sass: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/sass + sessioninfo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/sessioninfo + shiny: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shiny + sourcetools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kevinushey/sourcetools + splines: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/splines/html/splines-package.html + stats: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/stats/html/stats-package.html + stats4: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/stats4/html/stats4-package.html + stringi: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://stringi.gagolewski.com/ + stringr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/stringr + sys: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/sys + systemfonts: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/systemfonts + tcltk: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/tcltk/html/tcltk-package.html + testthat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/testthat + textshaping: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/textshaping + tibble: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tibble + tinytex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/tinytex + tools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/tools/html/tools-package.html + urlchecker: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/urlchecker + usethis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/usethis + utf8: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/patperry/r-utf8 + utils: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://search.r-project.org/R/refmans/utils/html/utils-package.html + vctrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/vctrs + waldo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/waldo + whisker: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/edwindj/whisker + withr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/withr + xfun: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/yihui/xfun + xml2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://xml2.r-lib.org + xopen: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/xopen + xtable: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://xtable.r-forge.r-project.org/ + yaml: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/vubiostat/r-yaml + zip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/zip +R-bundle-Bioconductor: + '3.16': + ALDEx2: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/ggloor/ALDEx_bioc + ALL: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/experiment/html/ALL.html + ANCOMBC: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/FrederickHuangLin/ANCOMBC + ATACseqQC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ATACseqQC + AUCell: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://scenic.aertslab.org ' + AgiMicroRna: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=AgiMicroRna + AnnotationDbi: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/AnnotationDbi ' + AnnotationFilter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Bioconductor/AnnotationFilter + AnnotationForge: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/AnnotationForge ' + AnnotationHub: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=AnnotationHub + BSgenome: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/BSgenome ' + BSgenome.Cfamiliaris.UCSC.canFam3: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/annotation/html/BSgenome.Cfamiliaris.UCSC.canFam3.html + BSgenome.Hsapiens.UCSC.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/data/annotation/html/BSgenome.Hsapiens.UCSC.hg19.html + BSgenome.Hsapiens.UCSC.hg38: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/data/annotation/html/BSgenome.Hsapiens.UCSC.hg38.html + BSgenome.Mmusculus.UCSC.mm10: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/annotation/html/BSgenome.Mmusculus.UCSC.mm10.html + Biobase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Biobase ' + BiocBaseUtils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocBaseUtils + BiocFileCache: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocFileCache + BiocGenerics: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/BiocGenerics ' + BiocIO: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocIO + BiocManager: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bioconductor/BiocManager + BiocNeighbors: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocNeighbors + BiocParallel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/Bioconductor/BiocParallel + BiocSingular: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/LTLA/BiocSingular + BiocStyle: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Bioconductor/BiocStyle + BiocVersion: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocVersion + Biostrings: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Biostrings ' + CAGEr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=CAGEr + CAMERA: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://msbi.ipb-halle.de/msbi/CAMERA/ ' + CGHbase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tgac-vumc/CGHbase + CGHcall: + License: + - CNRI-Python-GPL-Compatible + - MPL-2.0-no-copyleft-exception + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=CGHcall + CNEr: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/ge11232002/CNEr + Category: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Category + ChIPpeakAnno: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ChIPpeakAnno + ComplexHeatmap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/ComplexHeatmap-reference + ConsensusClusterPlus: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ConsensusClusterPlus + CytoML: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://github.com/RGLab/CytoML + DECIPHER: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://DECIPHER.codes ' + DEGseq: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DEGseq + DESeq2: + License: + - Unknown + Permission to redistribute: true + Retrieved from: https://github.com/thelovelab/DESeq2 + DNABarcodes: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DNABarcodes + DNAcopy: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DNAcopy + DO.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/data/annotation/html/DO.db.html + DOSE: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-knowledge-mining/ ' + DRIMSeq: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DRIMSeq + DSS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DSS + DeconRNASeq: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DeconRNASeq + DelayedArray: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/DelayedArray ' + DelayedMatrixStats: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PeteHaitch/DelayedMatrixStats + DirichletMultinomial: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mtmorgan/DirichletMultinomial + DropletUtils: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DropletUtils + DynDoc: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DynDoc + EBImage: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/bioc/html/EBImage.html + EnsDb.Hsapiens.v75: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/EnsDb.Hsapiens.v75 + EnsDb.Hsapiens.v79: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/EnsDb.Hsapiens.v79 + EnsDb.Hsapiens.v86: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/EnsDb.Hsapiens.v86 + ExperimentHub: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ExperimentHub + FDb.InfiniumMethylation.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/ + FRASER: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gagneurlab/FRASER + FlowSOM: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://www.r-project.org http://dambi.ugent.be ' + FlowSorted.Blood.EPIC: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/FlowSorted.Blood.EPIC + FlowSorted.CordBloodCombined.450k: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/FlowSorted.CordBloodCombined.450k + GENESIS: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/UW-GAC/GENESIS + GENIE3: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GENIE3 + GEOmap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GEOmap + GEOquery: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/seandavi/GEOquery + GLAD: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'http://bioinfo.curie.fr ' + GO.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/GO.db + GOSemSim: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/biomedical-knowledge-mining-book/ ' + GOstats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GOstats + GSEABase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GSEABase + GSVA: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcastelo/GSVA + GWASExactHW: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GWASExactHW + GWASTools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/smgogarten/GWASTools + GenomeInfoDb: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomeInfoDb ' + GenomeInfoDbData: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/GenomeInfoDbData + GenomicAlignments: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomicAlignments ' + GenomicFeatures: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomicFeatures ' + GenomicFiles: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GenomicFiles + GenomicRanges: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomicRanges ' + GenomicScores: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rcastelo/GenomicScores + Glimma: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/hasaru-k/GlimmaV2 + GlobalAncova: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GlobalAncova + Gviz: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ivanek/Gviz + HDF5Array: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/HDF5Array ' + HDO.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/HDO.db + HMMcopy: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=HMMcopy + HiCBricks: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=HiCBricks + HiCcompare: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dozmorovlab/HiCcompare + Homo.sapiens: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/Homo.sapiens + IHW: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=IHW + IRanges: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/IRanges ' + IlluminaHumanMethylation450kanno.ilmn12.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylation450kanno.ilmn12.hg19 + IlluminaHumanMethylation450kmanifest: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylation450kmanifest + IlluminaHumanMethylationEPICanno.ilm10b2.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylationEPICanno.ilm10b2.hg19 + IlluminaHumanMethylationEPICanno.ilm10b4.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylationEPICanno.ilm10b4.hg19 + IlluminaHumanMethylationEPICmanifest: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest + InteractionSet: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=InteractionSet + JASPAR2020: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/JASPAR2020 + KEGGREST: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/KEGGREST ' + KEGGgraph: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://www.nextbiomotif.com ' + LEA: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://membres-timc.imag.fr/Olivier.Francois/lea.html ' + M3Drop: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/tallulandrews/M3Drop + MBA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=MBA + MEDIPS: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MEDIPS + MLInterfaces: + License: LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/MLInterfaces + MSnbase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/MSnbase + MSstats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://msstats.org ' + MSstatsConvert: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MSstatsConvert + MSstatsLiP: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MSstatsLiP + MSstatsPTM: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MSstatsPTM + MSstatsTMT: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://msstats.org/msstatstmt/ ' + MassSpecWavelet: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zeehio/MassSpecWavelet + MatrixGenerics: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/MatrixGenerics ' + MethylSeekR: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MethylSeekR + Mfuzz: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'http://mfuzz.sysbiolab.eu/ ' + MotifDb: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MotifDb + MsCoreUtils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/MsCoreUtils + MsFeatures: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/MsFeatures + MultiAssayExperiment: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://waldronlab.io/MultiAssayExperiment/ ' + MultiDataSet: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MultiDataSet + NADA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NADA + NMF: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/NMF + NOISeq: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=NOISeq + OUTRIDER: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gagneurlab/OUTRIDER + OrganismDbi: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=OrganismDbi + PFAM.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/PFAM.db + PRROC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PRROC + PSCBS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/PSCBS + ProtGenerics: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/ProtGenerics + PureCN: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lima1/PureCN + QDNAseq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ccagc/QDNAseq + R.devices: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.devices + R.filesets: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.filesets + R.huge: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.huge + RBGL: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://www.bioconductor.org ' + RFOC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RFOC + RNASeqPower: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=RNASeqPower + ROC: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://www.bioconductor.org ' + ROntoTools: + License: + - Ruby + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ROntoTools + RPMG: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RPMG + RProtoBufLib: + License: + - Other + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=RProtoBufLib + RSEIS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RSEIS + RcisTarget: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://scenic.aertslab.org ' + RcppAnnoy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rcppannoy + RcppHNSW: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jlmelville/rcpphnsw + RcppML: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/zdebruine/RcppML + RcppZiggurat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rcppziggurat + ReactomePA: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-knowledge-mining/ ' + Repitools: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Repitools + ReportingTools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ReportingTools + ResidualMatrix: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/LTLA/ResidualMatrix + Rfast: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RfastOfficial/Rfast + Rgraphviz: + License: + - EPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Rgraphviz + Rhdf5lib: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/Rhdf5lib + Rhtslib: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Rhtslib http://www.htslib.org/ ' + Ringo: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Ringo + RnBeads: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=RnBeads + RnBeads.hg19: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.hg19 + RnBeads.hg38: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.hg38 + RnBeads.mm10: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.mm10 + RnBeads.mm9: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.mm9 + RnBeads.rn5: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.rn5 + Rsamtools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Rsamtools ' + Rsubread: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://bioconductor.org/packages/Rsubread ' + Rwave: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://carmona.princeton.edu/TFbook/tfbook.html + S4Vectors: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/S4Vectors ' + SC3: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/hemberg-lab/SC3 + SCANVIS: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=SCANVIS + SMVar: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SMVar + SNPRelate: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhengxwen/SNPRelate + SPIA: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: 'http://bioinformatics.oxfordjournals.org/cgi/reprint/btn577v1 ' + SPOTlight: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/MarcElosua/SPOTlight + SamSPECTRAL: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=SamSPECTRAL + ScaledMatrix: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/LTLA/ScaledMatrix + SeqArray: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhengxwen/SeqArray + SeqVarTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/smgogarten/SeqVarTools + Seurat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/satijalab/seurat + SeuratObject: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/satijalab/seurat-object + ShortRead: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bioconductor.org/packages + Signac: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/stuart-lab/signac + SingleCellExperiment: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=SingleCellExperiment + SingleR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/SingleR-inc/SingleR + SpatialExperiment: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/drighelli/SpatialExperiment + SummarizedExperiment: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/SummarizedExperiment ' + TFBSTools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ge11232002/TFBSTools + TFMPvalue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ge11232002/TFMPvalue + TSP: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/TSP + TailRank: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + TrajectoryUtils: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/TrajectoryUtils ' + TreeSummarizedExperiment: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=TreeSummarizedExperiment + TxDb.Hsapiens.UCSC.hg19.knownGene: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/ TxDb.Hsapiens.UCSC.hg19.knownGene + TxDb.Mmusculus.UCSC.mm10.knownGene: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene + UCell: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/carmonalab/UCell + VariantAnnotation: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=VariantAnnotation + WGCNA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=WGCNA + Wrench: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HCBravoLab/Wrench + XVector: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/XVector ' + affxparser: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/affxparser + affy: + License: + - CERN-OHL-P-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/affy ' + affycoretools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=affycoretools + affyio: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bmbolstad/affyio + agricolae: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=agricolae + annaffy: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=annaffy + annotate: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=annotate + anytime: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/anytime + aroma.affymetrix: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.affymetrix + aroma.apd: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.apd + aroma.core: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.core + aroma.light: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.light + ash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ash + aws.s3: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/cloudyr/aws.s3 + aws.signature: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/cloudyr/aws.signature + babelgene: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/igordot/babelgene + ballgown: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ballgown + basilisk: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=basilisk + basilisk.utils: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=basilisk.utils + batchelor: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=batchelor + baySeq: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/samgg/baySeq + beachmat: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tatami-inc/beachmat + biomaRt: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/biomaRt + biomformat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/joey711/biomformat + biovizBase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=biovizBase + blme: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/vdorie/blme + bluster: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=bluster + bookdown: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bookdown + bsseq: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kasperdanielhansen/bsseq + bumphunter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rafalab/bumphunter + ca: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.carme-n.org/ + ccdata: + License: MIT + file LICENSE + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/experiment/html/ccdata.html + ccmap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ccmap + chromVAR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=chromVAR + clusterProfiler: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-knowledge-mining/ ' + coloc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/chr1swallace/coloc + colorRamps: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=colorRamps + conumee: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=conumee + crossmeta: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/alexvpickering/crossmeta + cummeRbund: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=cummeRbund + cytolib: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=cytolib + dada2: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/benjjneb/dada2 + ddPCRclust: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bgbrink/ddPCRclust + decontam: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/benjjneb/decontam + decoupleR: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/saezlab/decoupleR + densEstBayes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=densEstBayes + derfinder: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lcolladotor/derfinder + derfinderHelper: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/leekgroup/derfinderHelper + diffcyt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/lmweber/diffcyt + dir.expiry: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=dir.expiry + docopt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docopt/docopt.R + dqrng: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/daqana/dqrng + dupRadar: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ssayols/dupRadar + edgeR: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://bioinf.wehi.edu.au/edgeR/ https://bioconductor.org/packages/edgeR ' + egg: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=egg + emmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/emmeans + enrichplot: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/biomedical-knowledge-mining-book/ ' + ensembldb: + License: LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/ensembldb + escape: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=escape + estimability: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/estimability + extraDistr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/twolodzko/extraDistr + factoextra: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www.sthda.com/english/rpkgs/factoextra + fda: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.functionaldata.org + fds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fds + feature: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.mvstat.net/tduong/ + fgsea: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ctlab/fgsea + filelock: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/filelock + flowAI: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowAI + flowClean: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowClean + flowClust: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowClust + flowCore: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowCore + flowDensity: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowDensity + flowFP: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowFP + flowMerge: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowMerge + flowPeaks: + License: + - Artistic-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowPeaks + flowStats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RGLab/flowStats + flowViz: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowViz + flowWorkspace: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowWorkspace + fresh: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dreamRs/fresh + gcrma: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/bioc/html/gcrma.html + gdsfmt: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhengxwen/gdsfmt + geneLenDataBase: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/geneLenDataBase + genefilter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=genefilter + geneplotter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=geneplotter + ggbio: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lawremi/ggbio + ggcyto: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/RGLab/ggcyto + ggdendro: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/andrie/ggdendro + ggnewscale: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/eliocamp/ggnewscale + ggpointdensity: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/LKremer/ggpointdensity + ggrastr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/VPetukhov/ggrastr + ggseqlogo: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/omarwagih/ggseqlogo + ggthemes: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jrnold/ggthemes + ggtree: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://www.amazon.com/Integration-Manipulation-Visualization-Phylogenetic-Computational-ebook/dp/B0B5NLZR1Z/(book) + http://onlinelibrary.wiley.com/doi/10.1111/2041-210X.12628(paper) ' + globaltest: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=globaltest + goseq: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/federicomarini/goseq + graph: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=graph + graphite: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/sales-lab/graphite + gsmoothr: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gsmoothr + gson: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gson + hdrcde: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/hdrcde + heatmaply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/heatmaply + hgu133plus2.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/hgu133plus2.db + illuminaio: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/illuminaio + impute: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=impute + interactiveDisplayBase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=interactiveDisplayBase + intervals: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/edzer/intervals + isva: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=isva + limma: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://bioinf.wehi.edu.au/limma/ ' + log4r: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/johnmyleswhite/log4r + lpsymphony: + License: + - EPL-1.0 + Permission to redistribute: true + Retrieved from: 'http://R-Forge.R-project.org/projects/rsymphony https://projects.coin-or.org/SYMPHONY + http://www.coin-or.org/download/source/SYMPHONY/ ' + lsa: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lsa + lumi: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=lumi + maSigPro: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=maSigPro + marray: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/marray + metaMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=metaMA + metagenomeSeq: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nosson/metagenomeSeq + metap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=metap + metapod: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=metapod + methylumi: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=methylumi + mia: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/microbiome/mia + minfi: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hansenlab/minfi + missMethyl: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=missMethyl + mixOmics: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://www.mixOmics.org ' + mixsqp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/stephenslab/mixsqp + motifStack: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=motifStack + motifmatchr: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=motifmatchr + msigdbr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/igordot/msigdbr + multtest: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=multtest + muscat: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/HelenaLC/muscat + mutoss: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kornl/mutoss + mzID: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=mzID + mzR: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/sneumann/mzR + ncdfFlow: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ncdfFlow + numbat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kharchenkolab/numbat + oligo: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/benilton/oligo + oligoClasses: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=oligoClasses + ontologyIndex: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ontologyIndex + oompaBase: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + oompaData: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + openCyto: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=openCyto + org.Hs.eg.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/org.Hs.eg.db + org.Mm.eg.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/org.Mm.eg.db + org.Rn.eg.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/org.Rn.eg.db + pRoloc: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/pRoloc + pRolocGUI: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/pRolocGUI + pRolocdata: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/pRolocdata + pathview: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/datapplab/pathview + pcaMethods: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/hredestig/pcamethods + perm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=perm + phyloseq: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://dx.plos.org/10.1371/journal.pone.0061217 ' + pmp: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=pmp + polyester: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=polyester + poweRlaw: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/csgillespie/poweRlaw + preprocessCore: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bmbolstad/preprocessCore + qap: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/qap + qlcMatrix: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/cysouw/qlcMatrix + qqconf: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/eweine/qqconf + quantsmooth: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=quantsmooth + qvalue: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/qvalue + rARPACK: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/rARPACK + rGADEM: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=rGADEM + rainbow: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rainbow + randomcoloR: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/ronammar/randomcoloR + reactome.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/reactome.db + regioneR: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=regioneR + reldist: + License: + - AML + Permission to redistribute: true + Retrieved from: http://www.stat.ucla.edu/~handcock/RelDist/ + remaCor: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/diseaseneurogenomics/remaCor + restfulr: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=restfulr + rhdf5: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/rhdf5 + rhdf5filters: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/rhdf5filters + rols: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/rols + ropls: + License: + - CECILL-2.1 + Permission to redistribute: true + Retrieved from: 'https://doi.org/10.1021/acs.jproteome.5b00354 ' + rsvd: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/erichson/rSVD + rtracklayer: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=rtracklayer + samr: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://statweb.stanford.edu/~tibs/SAM + scDblFinder: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/plger/scDblFinder + scater: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://bioconductor.org/packages/scater/ ' + scattermore: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scattermore + scistreer: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kharchenkolab/scistreer + scran: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/MarioniLab/scran + scrime: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scrime + scuttle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=scuttle + seqLogo: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=seqLogo + seriation: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/seriation + shinyBS: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ebailey78/shinyBS + shinyFiles: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/shinyFiles + shinyWidgets: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dreamRs/shinyWidgets + shinydashboardPlus: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/RinteRface/shinydashboardPlus + shinyhelper: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/cwthom/shinyhelper + shinypanel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shinypanel + siggenes: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=siggenes + simplifyEnrichment: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/simplifyEnrichment + sitmo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/coatless/sitmo + slingshot: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=slingshot + snpStats: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=snpStats + sparseMatrixStats: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/const-ae/sparseMatrixStats + sparsesvd: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/lucasmaystre/svdlibc + splancs: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rsbivand/splancs + stageR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=stageR + struct: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=struct + structToolbox: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/computational-metabolomics/structToolbox + susieR: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/stephenslab/susieR + sva: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=sva + tkWidgets: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=tkWidgets + treeio: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-tree-data/ ' + tximport: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/thelovelab/tximport + uwot: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jlmelville/uwot + variancePartition: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/DiseaseNeuroGenomics/variancePartition + venn: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/dusadrian/venn + vsn: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://www.r-project.org http://www.ebi.ac.uk/huber ' + waiter: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/JohnCoene/waiter + wateRmelon: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=wateRmelon + widgetTools: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/widgetTools + xcms: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/sneumann/xcms + zCompositions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/Japal/zCompositions + zellkonverter: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/theislab/zellkonverter + zlibbioc: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/zlibbioc ' + '3.18': + ALDEx2: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/ggloor/ALDEx_bioc + ALL: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/experiment/html/ALL.html + ANCOMBC: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/FrederickHuangLin/ANCOMBC + ATACseqQC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ATACseqQC + AUCell: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://scenic.aertslab.org ' + AgiMicroRna: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=AgiMicroRna + AnnotationDbi: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/AnnotationDbi ' + AnnotationFilter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Bioconductor/AnnotationFilter + AnnotationForge: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/AnnotationForge ' + AnnotationHub: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=AnnotationHub + BH: + License: + - BSL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/bh + BSgenome: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/BSgenome ' + BSgenome.Cfamiliaris.UCSC.canFam3: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/annotation/html/BSgenome.Cfamiliaris.UCSC.canFam3.html + BSgenome.Hsapiens.UCSC.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/data/annotation/html/BSgenome.Hsapiens.UCSC.hg19.html + BSgenome.Hsapiens.UCSC.hg38: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/data/annotation/html/BSgenome.Hsapiens.UCSC.hg38.html + BSgenome.Mmusculus.UCSC.mm10: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/annotation/html/BSgenome.Mmusculus.UCSC.mm10.html + Biobase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Biobase ' + BiocBaseUtils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocBaseUtils + BiocFileCache: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocFileCache + BiocGenerics: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/BiocGenerics ' + BiocIO: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocIO + BiocManager: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bioconductor/BiocManager + BiocNeighbors: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocNeighbors + BiocParallel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/Bioconductor/BiocParallel + BiocSingular: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/LTLA/BiocSingular + BiocStyle: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Bioconductor/BiocStyle + BiocVersion: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=BiocVersion + Biostrings: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Biostrings ' + CAGEfightR: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/MalteThodberg/CAGEfightR + CAGEr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=CAGEr + CAMERA: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://msbi.ipb-halle.de/msbi/CAMERA/ ' + CGHbase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tgac-vumc/CGHbase + CGHcall: + License: + - CNRI-Python-GPL-Compatible + - MPL-2.0-no-copyleft-exception + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=CGHcall + CNEr: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/ge11232002/CNEr + Category: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Category + ChIPpeakAnno: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ChIPpeakAnno + ChIPseeker: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-knowledge-mining/ ' + ComplexHeatmap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/ComplexHeatmap-reference + ConsensusClusterPlus: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ConsensusClusterPlus + CytoML: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://github.com/RGLab/CytoML + DECIPHER: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://DECIPHER.codes ' + DEGseq: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DEGseq + DESeq2: + License: + - Unknown + Permission to redistribute: true + Retrieved from: https://github.com/thelovelab/DESeq2 + DNABarcodes: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DNABarcodes + DNAcopy: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DNAcopy + DO.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/data/annotation/html/DO.db.html + DOSE: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-knowledge-mining/ ' + DRIMSeq: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DRIMSeq + DSS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DSS + DeconRNASeq: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DeconRNASeq + DelayedArray: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/DelayedArray ' + DelayedMatrixStats: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PeteHaitch/DelayedMatrixStats + DirichletMultinomial: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mtmorgan/DirichletMultinomial + DropletUtils: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DropletUtils + DynDoc: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=DynDoc + EBImage: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/bioc/html/EBImage.html + EnsDb.Hsapiens.v75: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/EnsDb.Hsapiens.v75 + EnsDb.Hsapiens.v79: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/EnsDb.Hsapiens.v79 + EnsDb.Hsapiens.v86: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/EnsDb.Hsapiens.v86 + ExperimentHub: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ExperimentHub + FDb.InfiniumMethylation.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/FDb.InfiniumMethylation.hg19/ + FRASER: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gagneurlab/FRASER + FlowSOM: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://www.r-project.org http://dambi.ugent.be ' + FlowSorted.Blood.EPIC: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/FlowSorted.Blood.EPIC + FlowSorted.CordBloodCombined.450k: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/FlowSorted.CordBloodCombined.450k + GENESIS: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/UW-GAC/GENESIS + GENIE3: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GENIE3 + GEOmap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GEOmap + GEOquery: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/seandavi/GEOquery + GLAD: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'http://bioinfo.curie.fr ' + GO.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/GO.db + GOSemSim: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/biomedical-knowledge-mining-book/ ' + GOstats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GOstats + GSEABase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GSEABase + GSVA: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcastelo/GSVA + GWASExactHW: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GWASExactHW + GWASTools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/smgogarten/GWASTools + GenomeInfoDb: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomeInfoDb ' + GenomeInfoDbData: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/GenomeInfoDbData + GenomicAlignments: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomicAlignments ' + GenomicFeatures: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomicFeatures ' + GenomicFiles: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GenomicFiles + GenomicInteractions: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ComputationalRegulatoryGenomicsICL/GenomicInteractions + GenomicRanges: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/GenomicRanges ' + GenomicScores: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rcastelo/GenomicScores + Glimma: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/hasaru-k/GlimmaV2 + GlobalAncova: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=GlobalAncova + Gviz: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ivanek/Gviz + HDF5Array: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/HDF5Array ' + HDO.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/HDO.db + HMMcopy: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=HMMcopy + HiCBricks: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=HiCBricks + HiCcompare: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dozmorovlab/HiCcompare + Homo.sapiens: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/Homo.sapiens + IHW: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=IHW + IRanges: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/IRanges ' + IlluminaHumanMethylation450kanno.ilmn12.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylation450kanno.ilmn12.hg19 + IlluminaHumanMethylation450kmanifest: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylation450kmanifest + IlluminaHumanMethylationEPICanno.ilm10b2.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylationEPICanno.ilm10b2.hg19 + IlluminaHumanMethylationEPICanno.ilm10b4.hg19: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylationEPICanno.ilm10b4.hg19 + IlluminaHumanMethylationEPICmanifest: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/IlluminaHumanMethylationEPICmanifest + InteractionSet: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=InteractionSet + JASPAR2020: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/JASPAR2020 + KEGGREST: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/KEGGREST ' + KEGGgraph: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://www.nextbiomotif.com ' + LEA: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://membres-timc.imag.fr/Olivier.Francois/lea.html ' + M3Drop: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/tallulandrews/M3Drop + MBA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=MBA + MEDIPS: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MEDIPS + MLInterfaces: + License: LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/MLInterfaces + MSnbase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/MSnbase + MSstats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://msstats.org ' + MSstatsConvert: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MSstatsConvert + MSstatsLiP: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MSstatsLiP + MSstatsPTM: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MSstatsPTM + MSstatsTMT: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://msstats.org/msstatstmt/ ' + MassSpecWavelet: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zeehio/MassSpecWavelet + MatrixGenerics: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/MatrixGenerics ' + MetaboCoreUtils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/MetaboCoreUtils + MethylSeekR: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MethylSeekR + Mfuzz: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'http://mfuzz.sysbiolab.eu/ ' + MotifDb: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MotifDb + MsCoreUtils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/MsCoreUtils + MsExperiment: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/MsExperiment + MsFeatures: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/MsFeatures + MultiAssayExperiment: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://waldronlab.io/MultiAssayExperiment/ ' + MultiDataSet: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=MultiDataSet + NADA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NADA + NMF: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/NMF + NOISeq: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=NOISeq + OUTRIDER: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gagneurlab/OUTRIDER + OrganismDbi: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=OrganismDbi + PFAM.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/PFAM.db + PRROC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PRROC + PSCBS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/PSCBS + ProtGenerics: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/ProtGenerics + PureCN: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lima1/PureCN + QDNAseq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ccagc/QDNAseq + QFeatures: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/QFeatures + R.devices: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.devices + R.filesets: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.filesets + R.huge: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.huge + RBGL: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://www.bioconductor.org ' + RFOC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RFOC + RNASeqPower: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=RNASeqPower + ROC: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://www.bioconductor.org ' + ROntoTools: + License: + - Ruby + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ROntoTools + RPMG: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RPMG + RProtoBufLib: + License: + - Other + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=RProtoBufLib + RSEIS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RSEIS + RcisTarget: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://scenic.aertslab.org ' + RcppAnnoy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rcppannoy + RcppHNSW: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jlmelville/rcpphnsw + RcppML: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/zdebruine/RcppML + RcppZiggurat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rcppziggurat + ReactomePA: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-knowledge-mining/ ' + Repitools: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Repitools + ReportingTools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ReportingTools + ResidualMatrix: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/LTLA/ResidualMatrix + Rfast: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RfastOfficial/Rfast + Rgraphviz: + License: + - EPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Rgraphviz + Rhdf5lib: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/Rhdf5lib + Rhtslib: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Rhtslib http://www.htslib.org/ ' + Ringo: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=Ringo + RnBeads: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=RnBeads + RnBeads.hg19: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.hg19 + RnBeads.hg38: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.hg38 + RnBeads.mm10: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.mm10 + RnBeads.mm9: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.mm9 + RnBeads.rn5: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RnBeads.rn5 + Rsamtools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/Rsamtools ' + Rsubread: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://bioconductor.org/packages/Rsubread ' + Rwave: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://carmona.princeton.edu/TFbook/tfbook.html + S4Arrays: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/S4Arrays ' + S4Vectors: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/S4Vectors ' + SC3: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/hemberg-lab/SC3 + SCANVIS: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=SCANVIS + SMVar: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SMVar + SNPRelate: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhengxwen/SNPRelate + SPIA: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: 'http://bioinformatics.oxfordjournals.org/cgi/reprint/btn577v1 ' + SPOTlight: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/MarcElosua/SPOTlight + SamSPECTRAL: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=SamSPECTRAL + ScaledMatrix: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/LTLA/ScaledMatrix + SeqArray: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhengxwen/SeqArray + SeqVarTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/smgogarten/SeqVarTools + Seurat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/satijalab/seurat + SeuratObject: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/satijalab/seurat-object + ShortRead: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bioconductor.org/packages + Signac: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/stuart-lab/signac + SimBu: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/omnideconv/SimBu + SingleCellExperiment: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=SingleCellExperiment + SingleR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/SingleR-inc/SingleR + SparseArray: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/SparseArray ' + SpatialExperiment: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/drighelli/SpatialExperiment + Spectra: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RforMassSpectrometry/Spectra + SummarizedExperiment: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/SummarizedExperiment ' + TFBSTools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ge11232002/TFBSTools + TFMPvalue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ge11232002/TFMPvalue + TSP: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/TSP + TailRank: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + TrajectoryUtils: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/TrajectoryUtils ' + TreeSummarizedExperiment: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=TreeSummarizedExperiment + TxDb.Hsapiens.UCSC.hg19.knownGene: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/ TxDb.Hsapiens.UCSC.hg19.knownGene + TxDb.Mmusculus.UCSC.mm10.knownGene: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/TxDb.Mmusculus.UCSC.mm10.knownGene + UCell: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/carmonalab/UCell + VariantAnnotation: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=VariantAnnotation + WGCNA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=WGCNA + Wrench: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HCBravoLab/Wrench + XVector: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/XVector ' + affxparser: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/affxparser + affy: + License: + - CERN-OHL-P-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/affy ' + affycoretools: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=affycoretools + affyio: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bmbolstad/affyio + agricolae: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=agricolae + annaffy: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=annaffy + annotate: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=annotate + anytime: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/anytime + aroma.affymetrix: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.affymetrix + aroma.apd: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.apd + aroma.core: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.core + aroma.light: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/aroma.light + ash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ash + aws.s3: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/cloudyr/aws.s3 + aws.signature: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/cloudyr/aws.signature + babelgene: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/igordot/babelgene + ballgown: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ballgown + basilisk: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=basilisk + basilisk.utils: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=basilisk.utils + batchelor: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=batchelor + baySeq: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/samgg/baySeq + beachmat: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tatami-inc/beachmat + biomaRt: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/biomaRt + biomformat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/joey711/biomformat + biovizBase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=biovizBase + blme: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/vdorie/blme + bluster: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=bluster + bookdown: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bookdown + bsseq: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kasperdanielhansen/bsseq + bumphunter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rafalab/bumphunter + ca: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.carme-n.org/ + ccdata: + License: MIT + file LICENSE + Permission to redistribute: true + Retrieved from: https://www.bioconductor.org/packages/release/data/experiment/html/ccdata.html + ccmap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ccmap + chromVAR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=chromVAR + clusterProfiler: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-knowledge-mining/ ' + coloc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/chr1swallace/coloc + colorRamps: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=colorRamps + conumee: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=conumee + crossmeta: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/alexvpickering/crossmeta + cummeRbund: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=cummeRbund + cytolib: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=cytolib + dada2: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/benjjneb/dada2 + ddPCRclust: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bgbrink/ddPCRclust + decontam: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/benjjneb/decontam + decoupleR: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/saezlab/decoupleR + densEstBayes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=densEstBayes + derfinder: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lcolladotor/derfinder + derfinderHelper: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/leekgroup/derfinderHelper + diffcyt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/lmweber/diffcyt + dir.expiry: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=dir.expiry + directlabels: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tdhock/directlabels + docopt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docopt/docopt.R + dqrng: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/daqana/dqrng + dupRadar: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ssayols/dupRadar + edgeR: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://bioinf.wehi.edu.au/edgeR/ https://bioconductor.org/packages/edgeR ' + egg: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=egg + emmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/emmeans + enrichplot: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/biomedical-knowledge-mining-book/ ' + ensembldb: + License: LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/ensembldb + escape: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=escape + estimability: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/estimability + extraDistr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/twolodzko/extraDistr + fANCOVA: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fANCOVA + factoextra: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www.sthda.com/english/rpkgs/factoextra + fda: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.functionaldata.org + fds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fds + feature: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.mvstat.net/tduong/ + fgsea: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ctlab/fgsea + filelock: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/filelock + flowAI: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowAI + flowClean: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowClean + flowClust: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowClust + flowCore: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowCore + flowDensity: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowDensity + flowFP: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowFP + flowMerge: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowMerge + flowPeaks: + License: + - Artistic-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowPeaks + flowStats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RGLab/flowStats + flowViz: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowViz + flowWorkspace: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=flowWorkspace + fresh: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dreamRs/fresh + gcrma: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/release/bioc/html/gcrma.html + gdsfmt: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhengxwen/gdsfmt + geneLenDataBase: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/geneLenDataBase + genefilter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=genefilter + geneplotter: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=geneplotter + genomation: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://bioinformatics.mdc-berlin.de/genomation/ ' + ggbio: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lawremi/ggbio + ggcyto: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/RGLab/ggcyto + ggdendro: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/andrie/ggdendro + ggnewscale: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/eliocamp/ggnewscale + ggpointdensity: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/LKremer/ggpointdensity + ggrastr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/VPetukhov/ggrastr + ggseqlogo: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/omarwagih/ggseqlogo + ggthemes: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jrnold/ggthemes + ggtree: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://www.amazon.com/Integration-Manipulation-Visualization-Phylogenetic-Computational-ebook/dp/B0B5NLZR1Z/(book) + http://onlinelibrary.wiley.com/doi/10.1111/2041-210X.12628(paper) ' + globaltest: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=globaltest + goseq: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/federicomarini/goseq + graph: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=graph + graphite: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/sales-lab/graphite + gsmoothr: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gsmoothr + gson: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gson + hdrcde: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/hdrcde + heatmaply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/heatmaply + hgu133plus2.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/hgu133plus2.db + illuminaio: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/illuminaio + impute: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=impute + interactiveDisplayBase: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=interactiveDisplayBase + intervals: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/edzer/intervals + isva: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=isva + limma: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://bioinf.wehi.edu.au/limma/ ' + log4r: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/johnmyleswhite/log4r + lpsymphony: + License: + - EPL-1.0 + Permission to redistribute: true + Retrieved from: 'http://R-Forge.R-project.org/projects/rsymphony https://projects.coin-or.org/SYMPHONY + http://www.coin-or.org/download/source/SYMPHONY/ ' + lsa: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lsa + lumi: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=lumi + maSigPro: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=maSigPro + marray: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/marray + metaMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=metaMA + metagenomeSeq: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nosson/metagenomeSeq + metap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=metap + metapod: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=metapod + methylumi: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=methylumi + mia: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/microbiome/mia + minfi: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hansenlab/minfi + missMethyl: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=missMethyl + mixOmics: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'http://www.mixOmics.org ' + mixsqp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/stephenslab/mixsqp + motifStack: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=motifStack + motifmatchr: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=motifmatchr + msigdbr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/igordot/msigdbr + multtest: + License: + - LGPL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=multtest + muscat: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/HelenaLC/muscat + mutoss: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kornl/mutoss + mzID: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=mzID + mzR: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/sneumann/mzR + ncdfFlow: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=ncdfFlow + numbat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kharchenkolab/numbat + oligo: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/benilton/oligo + oligoClasses: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=oligoClasses + ontologyIndex: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ontologyIndex + oompaBase: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + oompaData: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + openCyto: + License: + - AGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=openCyto + org.Hs.eg.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/org.Hs.eg.db + org.Mm.eg.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/org.Mm.eg.db + org.Rn.eg.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/org.Rn.eg.db + pRoloc: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/pRoloc + pRolocGUI: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/pRolocGUI + pRolocdata: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/pRolocdata + pathview: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/datapplab/pathview + pcaMethods: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/hredestig/pcamethods + perm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=perm + phyloseq: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://dx.plos.org/10.1371/journal.pone.0061217 ' + plyranges: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=plyranges + pmp: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=pmp + polyester: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=polyester + poweRlaw: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/csgillespie/poweRlaw + preprocessCore: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bmbolstad/preprocessCore + qap: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/qap + qlcMatrix: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/cysouw/qlcMatrix + qqconf: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/eweine/qqconf + quantsmooth: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=quantsmooth + qvalue: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/qvalue + rARPACK: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/rARPACK + rGADEM: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=rGADEM + rainbow: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rainbow + randomcoloR: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/ronammar/randomcoloR + reactome.db: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/reactome.db + regioneR: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=regioneR + reldist: + License: + - AML + Permission to redistribute: true + Retrieved from: http://www.stat.ucla.edu/~handcock/RelDist/ + remaCor: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/diseaseneurogenomics/remaCor + restfulr: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=restfulr + rhdf5: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/rhdf5 + rhdf5filters: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/grimbough/rhdf5filters + rols: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/lgatto/rols + ropls: + License: + - CECILL-2.1 + Permission to redistribute: true + Retrieved from: 'https://doi.org/10.1021/acs.jproteome.5b00354 ' + rsvd: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/erichson/rSVD + rtracklayer: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=rtracklayer + samr: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://statweb.stanford.edu/~tibs/SAM + scDblFinder: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/plger/scDblFinder + scater: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: 'http://bioconductor.org/packages/scater/ ' + scattermore: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scattermore + scistreer: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kharchenkolab/scistreer + scran: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/MarioniLab/scran + scrime: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scrime + scuttle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=scuttle + seqLogo: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=seqLogo + seqPattern: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=seqPattern + seriation: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/seriation + shinyBS: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ebailey78/shinyBS + shinyFiles: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/shinyFiles + shinyWidgets: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dreamRs/shinyWidgets + shinydashboardPlus: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/RinteRface/shinydashboardPlus + shinyhelper: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/cwthom/shinyhelper + shinypanel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shinypanel + siggenes: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=siggenes + simplifyEnrichment: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/simplifyEnrichment + sitmo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/coatless/sitmo + slingshot: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=slingshot + snpStats: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=snpStats + sparseMatrixStats: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/const-ae/sparseMatrixStats + sparsesvd: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/lucasmaystre/svdlibc + splancs: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rsbivand/splancs + stageR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=stageR + struct: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=struct + structToolbox: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/computational-metabolomics/structToolbox + susieR: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/stephenslab/susieR + sva: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=sva + tkWidgets: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=tkWidgets + treeio: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://yulab-smu.top/contribution-tree-data/ ' + tximport: + License: + - libpng-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/thelovelab/tximport + uwot: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jlmelville/uwot + variancePartition: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/DiseaseNeuroGenomics/variancePartition + venn: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/dusadrian/venn + vsn: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'http://www.r-project.org http://www.ebi.ac.uk/huber ' + waiter: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/JohnCoene/waiter + wateRmelon: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/bioconductor.org/lookup?name=wateRmelon + widgetTools: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/widgetTools + xcms: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/sneumann/xcms + zCompositions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/Japal/zCompositions + zellkonverter: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/theislab/zellkonverter + zlibbioc: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: 'https://bioconductor.org/packages/zlibbioc ' +R-bundle-CRAN: + '2023.12': + ADGofTest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ADGofTest + AICcmodavg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=AICcmodavg + AMAPVox: + License: + - CECILL-2.0 + Permission to redistribute: true + Retrieved from: https://amapvox.org + AUC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=AUC + AlgDesign: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jvbraun/AlgDesign + BB: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.jhsph.edu/agingandhealth/People/Faculty_personal_pages/Varadhan.html + BBmisc: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/berndbischl/BBmisc + BCEE: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=BCEE + BDgraph: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.uva.nl/profile/a.mohammadi + BH: + License: + - BSL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/bh + BIEN: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=BIEN + BIGL: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/openanalytics/BIGL + BMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hanase/BMA + BatchJobs: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/tudo-r/BatchJobs + BayesLogit: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jwindle/BayesLogit + BayesPen: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=BayesPen + BayesianTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/florianhartig/BayesianTools + BiasedUrn: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.agner.org/random/ https://www.r-project.org/ + Boruta: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/mbq/Boruta + Brobdingnag: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/Brobdingnag + CBPS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CBPS + CVST: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CVST + CVXR: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://cvxr.rbind.io + Cairo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/Cairo/ + ComICS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'http://dcq.tau.ac.il/ ' + CompQuadForm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CompQuadForm + ComplexUpset: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krassowski/complex-upset + ConsRank: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org/ + CovSel: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CovSel + DBI: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-dbi/DBI + DEoptim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ArdiaD/DEoptim + DEoptimR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: svn://svn.r-forge.r-project.org/svnroot/robustbase/pkg/DEoptimR + DHARMa: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/florianhartig/DHARMa + DMCfun: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/igmmgi/DMCfun + DRR: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/gdkrmr/DRR + DT: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/DT + DTRreg: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DTRreg + DataCombine: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://CRAN.R-project.org/package=DataCombine + DepthProc: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zzawadz/DepthProc + Deriv: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/sgsokol/Deriv + DescTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/andrisignorell/DescTools + DiagrammeR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rich-iannone/DiagrammeR + DiceKriging: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dicekrigingclub/www + DiscriMiner: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DiscriMiner + DistributionUtils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DistributionUtils + ECOSolveR: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/ECOSolveR + ENMeval: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/jamiemkass/ENMeval + EValue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=EValue + EasyABC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://easyabc.r-forge.r-project.org/ + EnvStats: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/alexkowa/EnvStats + ExPosition: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/derekbeaton/ExPosition1 + Exact: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Exact + FKSUM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FKSUM + FME: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://fme.r-forge.r-project.org/ + FNN: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FNN + FactoMineR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://factominer.free.fr + FactorCopula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FactorCopula + Formula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Formula + GGally: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ggobi/ggally + GJRM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.ucl.ac.uk/statistics/people/giampieromarra + GPArotation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://optimizer.r-forge.r-project.org/GPArotation_www/ + GSA: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://tibshirani.su.domains/GSA/ + GUTS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GUTS + GenSA: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GenSA + GeneNet: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + GetoptLong: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/GetoptLong + GillespieSSA: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcannood/GillespieSSA + GlobalOptions: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/GlobalOptions + GxEScanR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GxEScanR + HGNChelper: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/waldronlab/HGNChelper + HWxtest: + License: not found + Permission to redistribute: true + Retrieved from: not found + HiddenMarkov: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.statsresearch.co.nz/dsh/sslib/ + Hmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://hbiostat.org/R/Hmisc/ + Hmsc: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.helsinki.fi/en/researchgroups/statistical-ecology/software/hmsc + IDPmisc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=IDPmisc + ISOcodes: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ISOcodes + ISOweek: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ISOweek + Iso: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Iso + JADE: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=JADE + JBTools: + License: GPL-2 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/src/contrib/Archive/JBTools/ + KODAMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=KODAMA + KernSmooth: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=KernSmooth + LCFdata: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LCFdata + LMERConvenienceFunctions: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LMERConvenienceFunctions + LaplacesDemon: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/LaplacesDemonR/LaplacesDemon + LearnBayes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LearnBayes + Lmoments: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://users.jyu.fi/~jutakarv/ + MALDIquant: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + MASS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + MCMCpack: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=MCMCpack + MESS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ekstroem/MESS + MIIVsem: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zackfisher/MIIVsem + MLmetrics: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/yanyachen/MLmetrics + MatchIt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kosukeimai/MatchIt + Matching: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/JasjeetSekhon/Matching + Matrix: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://Matrix.R-forge.R-project.org + MatrixModels: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://Matrix.R-forge.R-project.org/ + MetaUtility: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=MetaUtility + ModelMetrics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ModelMetrics + MonteCarlo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/FunWithR/MonteCarlo + NCmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NCmisc + NISTunits: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NISTunits + NLP: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NLP + OceanView: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=OceanView + OpenMx: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/OpenMx/OpenMx + PCAmatchR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/machiela-lab/PCAmatchR + PMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/PMA + ParamHelpers: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/ParamHelpers + PearsonDS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PearsonDS + PermAlgo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PermAlgo + PoissonSeq: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/PoissonSeq + Polychrome: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + PresenceAbsence: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PresenceAbsence + Publish: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Publish + QuickJSR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/andrjohns/QuickJSR + R.cache: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.cache + R.matlab: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.matlab + R.methodsS3: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.methodsS3 + R.oo: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.oo + R.rsp: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.rsp + R.utils: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.utils + R2WinBUGS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=R2WinBUGS + RANN: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jefferislab/RANN + RBesT: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://opensource.nibr.com/RBesT/ + RCAL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.rutgers.edu/~ztan + RCircos: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hzhanghenry/RCircos + RColorBrewer: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RColorBrewer + RCurl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RCurl + RGCCA: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rgcca-factory/RGCCA + RInside: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rinside + RItools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=RItools + RJSONIO: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RJSONIO + RMTstat: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/evanbiederstedt/RMTstat + RNeXML: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/RNeXML + RNifti: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jonclayden/RNifti + ROCR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ipa-tys/ROCR + ROI: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://roi.r-forge.r-project.org/ + ROI.plugin.glpk: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://roi.r-forge.r-project.org/ + RPMM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RPMM + RPostgreSQL: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/tomoakin/RPostgreSQL + RSNNS: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/cbergmeir/RSNNS + RSQLite: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-dbi/RSQLite + RSpectra: + License: + - MulanPSL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/RSpectra + RUnit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RUnit + RWeka: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RWeka + RWekajars: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RWekajars + Rborist: + License: + - SimPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/suiji/Rborist.CRAN + Rcgmin: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rcgmin + RcppArmadillo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/RcppArmadillo + RcppEigen: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/RcppEigen + RcppGSL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rcppgsl + RcppParallel: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcppcore/RcppParallel + RcppProgress: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/kforner/rcpp_progress + RcppRoll: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RcppRoll + RcppTOML: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://dirk.eddelbuettel.com/code/rcpp.toml.html + RcppThread: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/RcppThread + Rdpack: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/Rdpack + RefFreeEWAS: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RefFreeEWAS + Rglpk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://R-Forge.R-project.org/projects/rglp/ + RhpcBLASctl: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://prs.ism.ac.jp/~nakama/Rhpc/ + Rmpfr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rmpfr.r-forge.r-project.org/ + Rook: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/evanbiederstedt/rook + Rserve: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.rforge.net/Rserve/ + Rsolnp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rsolnp + Rssa: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/asl/rssa + Rtsne: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/jkrijthe/Rtsne + Rttf2pt1: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/wch/Rttf2pt1 + Rvmmin: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rvmmin + SBdecomp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SBdecomp + SDMTools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=SDMTools + SKAT: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SKAT + SNFtool: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SNFtool + SOAR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SOAR + SPAtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SPAtest + SQUAREM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html + SignifReg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SignifReg + SimSeq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SimSeq + SnowballC: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/nalimilan/R.TeMiS + SparseM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html + StanHeaders: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://mc-stan.org/ + StatMatch: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/marcellodo/StatMatch + SuperLearner: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ecpolley/SuperLearner + SuppDists: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SuppDists + TFisher: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TFisher + TH.data: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TH.data + TMB: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaskr/adcomp + TTR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/TTR + TeachingDemos: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TeachingDemos + TraMineR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://traminer.unige.ch + TruncatedNormal: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lbelzile/TruncatedNormal + UpSetR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hms-dbmi/UpSetR + V8: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/V8 + VGAM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yee/VGAM/ + VIM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/statistikat/VIM + VSURF: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/robingenuer/VSURF + VennDiagram: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=VennDiagram + VineCopula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/VineCopula + WeightSVM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/#weights_for_data_instances + WikidataQueryServiceR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bearloga/WikidataQueryServiceR + WikidataR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/TS404/WikidataR + WikipediR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/WikipediR + WriteXLS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/marcschwartz/WriteXLS + XBRL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=XBRL + XML: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://www.omegahat.net/RSXML/ + abc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abc + abc.data: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abc.data + abe: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abe + abind: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abind + acepack: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=acepack + adabag: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=adabag + ade4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/adeverse/ade4 + admisc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/dusadrian/admisc + aggregation: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=aggregation + akima: + License: + - MIT-CMU + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=akima + alabama: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=alabama + alluvial: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mbojan/alluvial + animation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://yihui.org/animation/ + aod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=aod + apcluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/UBod/apcluster + ape: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/emmanuelparadis/ape + aplot: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/YuLab-SMU/aplot + argparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-argparse + aricode: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jchiquet/aricode + arm: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=arm + arrayhelpers: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://arrayhelpers.r-forge.r-project.org/ + asnipe: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=asnipe + assertive: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive + assertive.base: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.base + assertive.code: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.code + assertive.data: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data + assertive.data.uk: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data.uk + assertive.data.us: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data.us + assertive.datetimes: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.datetimes + assertive.files: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.files + assertive.matrices: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.matrices + assertive.models: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.models + assertive.numbers: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.numbers + assertive.properties: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.properties + assertive.reflection: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.reflection + assertive.sets: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.sets + assertive.strings: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.strings + assertive.types: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.types + assertthat: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=assertthat + audio: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://www.rforge.net/audio/ + aws: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.wias-berlin.de/people/polzehl/ + awsMethods: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.wias-berlin.de/software/imaging/ + backports: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/backports + bacr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bacr + bartMachine: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bartMachine + bartMachineJARs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bartMachineJARs + base64: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=base64 + batchmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=batchmeans + bayesm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bayesm + bayesplot: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/bayesplot/ + bbmle: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bbolker/bbmle + bdsmatrix: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bdsmatrix + beanplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=beanplot + beeswarm: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/aroneklund/beeswarm + berryFunctions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brry/berryFunctions + betareg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://topmodels.R-Forge.R-project.org/betareg/ + bibtex: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/bibtex + bigD: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bigD + bigmemory: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaneplusplus/bigmemory + bigmemory.sri: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bigmemory.sri + bindr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/bindr + bindrcpp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/bindrcpp + bio3d: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://bitbucket.org/Grantlab/bio3d + biom: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/biom + biomod2: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/biomodhub/biomod2 + bit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/bit + bit64: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/bit64 + bitops: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/R-bitops + blavaan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/ecmerkle/blavaan + blob: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/blob + bmp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bmp + bnlearn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.bnlearn.com/ + bold: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/boldsource + boot: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=boot + bootstrap: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://gitlab.com/scottkosty/bootstrap + brglm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ikosmidis/brglm + bridgedist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/swihart/bridgedist + bridgesampling: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/quentingronau/bridgesampling + brms: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/paul-buerkner/brms + broom: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/broom + broom.helpers: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/broom.helpers + broom.mixed: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bbolker/broom.mixed + bst: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bst + cNORM: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/WLenhard/cNORM + cSEM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/FloSchuberth/cSEM + caTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=caTools + calibrate: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=calibrate + car: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/car/ + carData: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/car/ + caret: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/topepo/caret + catlearn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ajwills72/catlearn + celestial: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=celestial + cellranger: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rsheets/cellranger + cgdsr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/cBioPortal/cgdsr + cghFLasso: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=cghFLasso + changepoint: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rkillick/changepoint + checkmate: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mllg/checkmate + chemometrics: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://cstat.tuwien.ac.at/filz/ + chk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/poissonconsulting/chk + chkptstanr: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=chkptstanr + chron: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=chron + circlize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/circlize + circular: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=circular + clValid: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clValid + class: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + classInt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/classInt + cld2: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/cld2/ + + https://ropensci.r-universe.dev/cld2' + clisymbols: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/clisymbols + clock: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/clock + clue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clue + cluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/cluster/ + clusterGeneration: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clusterGeneration + clusterRepro: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.ncbi.nlm.nih.gov/pubmed/16613834. + clustree: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lazappi/clustree + cmna: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://jameshoward.us/cmna/ + cmprsk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.R-project.org + cobalt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ngreifer/cobalt + cobs: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://curves-etc.r-forge.r-project.org/ + coda: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=coda + codetools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/luke-tierney/codetools + coin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://coin.r-forge.r-project.org + collapse: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/sebkrantz/collapse + colorspace: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://colorspace.R-Forge.R-project.org/ + colourpicker: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/colourpicker + combinat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=combinat + compositions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.boogaart.de/compositions/ + conditionz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropenscilabs/conditionz + conflicted: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/conflicted + conquer: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/XiaoouPan/conquer + contfrac: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/contfrac + copCAR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=copCAR + copula: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://copula.r-forge.r-project.org/ + corpcor: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + corrplot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/taiyun/corrplot + covr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/covr + covsim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=covsim + cowplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://wilkelab.org/cowplot/ + coxed: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jkropko/coxed + coxme: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=coxme + crfsuite: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/crfsuite + crosstalk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/crosstalk + crul: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/crul/ + csSAM: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/csSAM + ctmle: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ctmle + cubature: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/cubature + cubelyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/cubelyr + cvAUC: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ledell/cvAUC + d3Network: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/christophergandrud/d3Network + dHSIC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dHSIC + dagitty: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jtextor/dagitty + data.table: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/Rdatatable/data.table + data.tree: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gluc/data.tree + date: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=date + dbarts: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/vdorie/dbarts + dbplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dbplyr + dbscan: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/dbscan + dcurver: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/oguzhanogreden/dcurver + ddalpha: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ddalpha + deSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://desolve.r-forge.r-project.org/ + deal: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=deal + debugme: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/debugme + deldir: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=deldir + dendextend: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/dendextend + dfidx: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=dfidx + diagram: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=diagram + dichromat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dichromat + dimRed: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.guido-kraemer.com/software/dimred/ + diptest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/diptest + dismo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://rspatial.org/raster/sdm/ + distillery: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=distillery + distr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + distrEx: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + distributional: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mitchelloharawild/distributional + diveRsity: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://diversityinlife.weebly.com/ + dlm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dlm + doMC: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=doMC + doParallel: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/doparallel + doRNG: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/doRNG + doSNOW: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=doSNOW + doc2vec: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/doc2vec + docstring: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dasonk/docstring + dotCall64: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://git.math.uzh.ch/reinhard.furrer/dotCall64 + downloader: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/downloader + dplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dplyr + dr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=dr + dreamerr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lrberge/dreamerr + drgee: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=drgee + drugCombo: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/drugCombo + dtangle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dtangle + dtplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dtplyr + dtw: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://dynamictimewarping.github.io/ + dummies: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dummies + dygraphs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/dygraphs + dynamicTreeCut: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/BranchCutting/ + e1071: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=e1071 + earth: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.milbo.users.sonic.net/earth/ + ellipse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/ellipse + elliptic: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/elliptic + emdbook: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.math.mcmaster.ca/bolker/emdbook + emmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/emmeans + emoa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/emoa + emulator: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/emulator + energy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mariarizzo/energy + entropy: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + epitools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=epitools + ergm: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + ergm.count: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + ergm.multi: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + estimability: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/estimability + evd: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=evd + expm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://R-Forge.R-project.org/projects/expm/ + expsmooth: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/expsmooth + extRemes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=extRemes + extrafont: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/extrafont + extrafontdb: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/extrafontdb + fail: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mllg/fail + farver: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/farver + fastDummies: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jacobkap/fastDummies + fastICA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fastICA + fastcluster: + License: + - BSD-2-Clause-FreeBSD + Permission to redistribute: true + Retrieved from: https://danifold.net/fastcluster.html + fasterize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ecohealthalliance/fasterize + fastmatch: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www.rforge.net/fastmatch + fdrtool: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + feather: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wesm/feather + ff: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/truecluster/ff + fftw: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fftw + fftwtools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/krahim/fftwtools + fields: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dnychka/fieldsRPackage + filehash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rdpeng/filehash + finalfit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ewenharrison/finalfit + findpython: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/findpython + fishMod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fishMod + fitdistrplus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lbbe-software/fitdistrplus + fixest: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lrberge/fixest + flashClust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flashClust + flexclust: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flexclust + flexmix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flexmix + flextable: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ardata-fr/flextable-book + fma: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/fma + fmri: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.wias-berlin.de/software/imaging/ + fontBitstreamVera: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontBitstreamVera + fontLiberation: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontLiberation + fontquiver: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontquiver + forcats: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/forcats + foreach: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/foreach + forecast: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/forecast + foreign: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/foreign/ + formatR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/formatR + formula.tools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/decisionpatterns/formula.tools + fossil: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://matthewvavrek.com/programs-and-code/fossil/ + fpc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.unibo.it/sitoweb/christian.hennig/en/ + fpp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://otexts.com/fpp/ + fracdiff: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/fracdiff + furrr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/DavisVaughan/furrr + futile.logger: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=futile.logger + futile.options: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=futile.options + future: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/future + future.apply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/future.apply + gWidgets2: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/gWidgets3/gWidgets2 + gWidgets2tcltk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jverzani/gWidgets2tcltk + gam: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gam + gamlss: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.data: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.dist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.tr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamm4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gamm4 + gap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jinghuazhao/R + gap.datasets: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jinghuazhao/R + gapfill: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/florafauna/gapfill + gargle: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gargle + gaussquad: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gaussquad + gbRd: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gbRd + gbm: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/gbm-developers/gbm + gclus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gclus + gdalUtils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gearslaboratory/gdalUtils + gdata: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gdata + gdistance: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/AgrDataSci/gdistance + gdtools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/davidgohel/gdtools + gee: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gee + geeM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geeM + geepack: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geepack + geex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bsaul/geex + geiger: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geiger + generics: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/generics + genoPlotR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://genoplotr.r-forge.r-project.org/ + geojsonsf: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/SymbolixAU/geojsonsf + geometries: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dcooley/geometries + geometry: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/davidcsterratt/geometry + getopt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-getopt + gfonts: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dreamrs/gfonts + ggExtra: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/ggExtra + ggbeeswarm: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/eclarke/ggbeeswarm + ggdag: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-causal/ggdag + ggdist: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/mjskay/ggdist + ggfan: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/jasonhilton/ggfan + ggforce: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/ggforce + ggformula: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ProjectMOSAIC/ggformula + ggfun: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/YuLab-SMU/ggfun + ggh4x: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/teunbrand/ggh4x + ggnetwork: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/briatte/ggnetwork + ggplot2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/ggplot2 + ggplotify: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/GuangchuangYu/ggplotify + ggpubr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rpkgs.datanovia.com/ggpubr/ + ggraph: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/ggraph + ggrepel: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/slowkow/ggrepel + ggridges: + License: + - AML + Permission to redistribute: true + Retrieved from: https://wilkelab.org/ggridges/ + ggsci: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/nanxstats/ggsci + ggsignif: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/const-ae/ggsignif + ggstance: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lionel-/ggstance + ggstats: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/ggstats + ggvenn: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ggvenn + ggvis: + License: + - AML + Permission to redistribute: true + Retrieved from: https://ggvis.rstudio.com/ + git2r: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/git2r + glasso: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www-stat.stanford.edu/~tibs/glasso + gld: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/newystats/gld + gllvm: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jenniniku/gllvm + glmmML: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=glmmML + glmmTMB: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/glmmTMB/glmmTMB + glmnet: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://glmnet.stanford.edu + globals: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/globals + gmm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gmm + gmodels: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gmodels + gmp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://forgemia.inra.fr/sylvain.jasson/gmp + gnumeric: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gnumeric + goftest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/baddstats/goftest + gomms: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gomms + googledrive: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/googledrive + googlesheets4: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/googlesheets4 + gower: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/markvanderloo/gower + gplots: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/gplots + grImport2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/grimport/ + graphlayouts: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/schochastics/graphlayouts + grf: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/grf-labs/grf + gridBase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gridBase + gridExtra: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gridExtra + gridGraphics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/pmur002/gridgraphics + grpreg: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/pbreheny/grpreg + gsalib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/broadinstitute/gsalib + gsl: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/gsl + gsw: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/teos-10/GSW-R + gt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/gt + gtable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gtable + gtools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gtools + gtsummary: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ddsjoberg/gtsummary + h2o: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/h2oai/h2o-3 + hal9001: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tlverse/hal9001 + haldensify: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/nhejazi/haldensify + hardhat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/hardhat + harmony: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/immunogenomics/harmony + hash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.johnhughes.org + haven: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/WizardMac/ReadStat + hdf5r: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hhoeflin/hdf5r + hdm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hdm + heatmap3: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=heatmap3 + here: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/here + hexbin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/edzer/hexbin + hms: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/hms + htmlTable: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://gforge.se/packages/ + httpcode: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sckott/httpcode + huge: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=huge + hunspell: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/hunspell/ + + https://ropensci.r-universe.dev/hunspell' + hwriter: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hwriter + hypergeo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hypergeo + ica: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ica + idr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=idr + ids: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/richfitz/ids + ie2misc: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/iembry/ie2misc + igraph: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r.igraph.org/ + image.binarization: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/DIGI-VUB/image.binarization + imager: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/asgr/imager + imagerExtra: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ShotaOchi/imagerExtra + ineq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ineq + influenceR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/khanna-lab/influenceR + infotheo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://homepage.meyerp.com/software + inline: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/inline + intergraph: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mbojan/intergraph + interp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=interp + interpretR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=interpretR + intrinsicDimension: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=intrinsicDimension + inum: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=inum + ipred: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ipred + irace: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mlopez-ibanez/irace + irlba: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bwlewis/irlba + ismev: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.ral.ucar.edu/~ericg/softextreme.php + isoband: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://isoband.r-lib.org + iterators: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/iterators + itertools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=itertools + janeaustenr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/juliasilge/janeaustenr + jiebaR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/qinwf/jiebaR + jiebaRD: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/qinwf/jiebaRD + jomo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jomo + jpeg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.rforge.net/jpeg/ + jsonify: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jsonify + jstable: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jinseob2kim/jstable + juicyjuice: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rich-iannone/juicyjuice + kde1d: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/kde1d + kedd: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/iagogv/kedd + kernlab: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=kernlab + kinship2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=kinship2 + klaR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statistik.tu-dortmund.de + kohonen: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=kohonen + ks: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.mvstat.net/mvksa/ + labdsv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=labdsv + labeling: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=labeling + labelled: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/labelled + laeken: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=laeken + lambda.r: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lambda.r + lars: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://doi.org/10.1214/009053604000000067 + lassosum: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=lassosum + lattice: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://lattice.r-forge.r-project.org/ + latticeExtra: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://latticeextra.r-forge.r-project.org/ + lava: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kkholst/lava + lavaan: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://lavaan.ugent.be + lazy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lazy + lazyeval: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lazyeval + lda: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lda + ldbounds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ldbounds + leafem: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/leafem + leaflet: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/leaflet + leaflet.providers: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/leaflet.providers + leafsync: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/leafsync + leaps: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=leaps + leiden: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/leiden + lhs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bertcarnell/lhs + libcoin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=libcoin + limSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=limSolve + linkcomm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alextkalinka/linkcomm + linprog: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://linprog.r-forge.r-project.org/ + liquidSVM: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=liquidSVM + listenv: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/listenv + lme4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lme4/lme4 + lmerTest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/runehaubo/lmerTestR + lmom: + License: + - CPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lmom + lmtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lmtest + lobstr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/lobstr + locfdr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=locfdr + locfit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=locfit + logcondens: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: 'http://www.kasparrufibach.ch ' + logger: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daroczig/logger + logistf: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cemsiis.meduniwien.ac.at/en/kb/science-research/software/statistical-software/firth-correction/ + logspline: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=logspline + longitudinal: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + longmemo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=longmemo + loo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/loo/ + lpSolve: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/lpSolve + lpSolveAPI: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lpSolveAPI + lqa: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=lqa + lsei: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yongwang/ + lslx: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/psyphh/lslx + lubridate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/lubridate + lwgeom: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/lwgeom + mRMRe: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.pmgenomics.ca/bhklab/ + magic: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/magic + magick: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/magick/ + + https://ropensci.r-universe.dev/magick' + manipulateWidget: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rte-antares-rpackage/manipulateWidget + mapproj: + License: + - LPL-1.02 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mapproj + maps: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maps + maptools: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://maptools.r-forge.r-project.org/ + markdown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/markdown + mathjaxr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/mathjaxr + matlab: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=matlab + matrixStats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/matrixStats + matrixcalc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/matrixcalc + maxLik: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maxLik + maxlike: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maxlike + maxnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mrmaxent/maxnet + mboost: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/boost-R/mboost + mclogit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/melff/mclogit + mclust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mclust-org/mclust + mcmc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/cjgeyer/mcmc + mcmcse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mcmcse + mda: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mda + medflex: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jmpsteen/medflex + mediation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://imai.princeton.edu/projects/mechanisms.html + memisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/melff/memisc + memuse: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/shinra-dev/memuse + metadat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/metadat + metafor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/metafor + mets: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kkholst/mets + mgcv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mgcv + mgsub: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bmewing/mgsub + mhsmm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mhsmm + mi: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.columbia.edu/~gelman/ + mice: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/amices/mice + miceadds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alexanderrobitzsch/miceadds + microbenchmark: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/microbenchmark + minerva: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + minpack.lm: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=minpack.lm + minqa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://optimizer.r-forge.r-project.org + mirt: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/philchalmers/mirt + misc3d: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/luke-tierney/misc3d + miscTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/arne-henningsen/miscTools + missForest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/stekhoven/missForest + missMDA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://factominer.free.fr/missMDA/index.html + mitml: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/simongrund1/mitml + mitools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mitools + mixtools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dsy109/mixtools + mlbench: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mlbench + mlegp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mlegp + mlogit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=mlogit + mlr: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/mlr + mlrMBO: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/mlrMBO + mltools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ben519/mltools + mnormt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://azzalini.stat.unipd.it/SW/Pkg-mnormt/ + modelr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/modelr + modeltools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=modeltools + momentfit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=momentfit + moments: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + mosaicCore: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ProjectMOSAIC/mosaicCore + mpath: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhuwang46/mpath + msm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/chjackson/msm + mstate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hputter/mstate + multcomp: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://multcomp.R-forge.R-project.org + multcompView: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=multcompView + multicool: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jmcurran/multicool + multipol: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=multipol + munsell: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/cwickham/munsell + mvabund: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mvabund + mvnfast: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mfasiolo/mvnfast + mvtnorm: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://mvtnorm.R-forge.R-project.org + nabor: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jefferis/nabor + naniar: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/njtierney/naniar + natserv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/natserv + naturalsort: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kos59125/naturalsort + ncbit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ncbit + ncdf4: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://cirrus.ucsd.edu/~pierce/ncdf/ + network: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statnet.org/ + networkDynamic: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://statnet.org/ + networkLite: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/EpiModel/networkLite + neuRosim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=neuRosim + neuralnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bips-hb/neuralnet + ngspatial: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ngspatial + nleqslv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nleqslv + nlme: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/nlme/ + nloptr: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://github.com/astamm/nloptr + nlsem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/nwickel/nlsem + nnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + nnls: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nnls + nonnest2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/qpsy/nonnest2 + nor1mix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://curves-etc.r-forge.r-project.org/ + norm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=norm + nortest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nortest + np: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/JeffreyRacine/R-Package-np + npsurv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yongwang/ + numDeriv: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://optimizer.r-forge.r-project.org/ + oai: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/oai + oce: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dankelley/oce + oddsratio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pat-s/oddsratio + officer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ardata-fr/officeverse + openair: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/davidcarslaw/openair + openxlsx: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ycphs/openxlsx + operator.tools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/decisionpatterns/operator.tools + optextras: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=optextras + optimParallel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/florafauna/optimParallel-R + optimr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=optimr + optimx: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nashjc/optimx + optmatch: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/markmfredrickson/optmatch + optparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-optparse + ordinal: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/runehaubo/ordinal + origami: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tlverse.org/origami/ + oro.nifti: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://rigorousanalytics.blogspot.com + orthopolynom: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=orthopolynom + osqp: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://osqp.org + outliers: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.R-project.org + pROC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/xrobin/pROC + packrat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/packrat + pacman: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/trinker/pacman + pammtools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/adibender/pammtools + pamr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pamr + pan: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pan + parallelDist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alexeckert/parallelDist + parallelMap: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/parallelMap + parallelly: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/parallelly + parsedate: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/parsedate + party: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://party.R-forge.R-project.org + partykit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://partykit.r-forge.r-project.org/partykit/ + pastecs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SciViews/pastecs + patchwork: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/patchwork + pbapply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/psolymos/pbapply + pbivnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brentonk/pbivnorm + pbkrtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://people.math.aau.dk/~sorenh/software/pbkrtest/ + pcaPP: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/pcaPP + pdp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bgreenwell/pdp + pec: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pec + penalized: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=penalized + penfa: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/egeminiani/penfa + peperr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/fbertran/peperr + permute: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gavinsimpson/permute + phangorn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/KlausVigo/phangorn + pheatmap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pheatmap + phylobase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/fmichonneau/phylobase + phytools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/liamrevell/phytools + pim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/CenterForStatistics-UGent/pim + pinfsc50: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pinfsc50 + pixmap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pixmap + pkgmaker: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/pkgmaker + plogr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/plogr + plot3D: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=plot3D + plot3Drgl: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=plot3Drgl + plotly: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://plotly-r.com + plotmo: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.milbo.users.sonic.net + plotrix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/plotrix + pls: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/khliland/pls + plyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/plyr + png: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/png/ + poLCA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dlinzer/poLCA + polspline: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=polspline + polyclip: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://github.com/baddstats/polyclip + polycor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/polycor/ + polynom: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=polynom + posterior: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://mc-stan.org/posterior/ + ppcor: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ppcor + prabclus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.unibo.it/sitoweb/christian.hennig/en/ + pracma: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pracma + preseqR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=preseqR + prettyGraphs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/derekbeaton/ExPosition1 + princurve: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rcannood/princurve + prodlim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tagteam/prodlim + profileModel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ikosmidis/profileModel + proftools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=proftools + progress: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/progress + progressr: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/progressr + projpred: + License: + - AML + Permission to redistribute: true + Retrieved from: https://mc-stan.org/projpred/ + proto: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hadley/proto + proxy: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=proxy + proxyC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/koheiw/proxyC + pryr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hadley/pryr + pscl: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/atahk/pscl + pspline: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pspline + psych: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: 'https://personality-project.org/r/psych/ + + https://personality-project.org/r/psych-manual.pdf' + pulsar: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/zdk123/pulsar + pvclust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://stat.sys.i.kyoto-u.ac.jp/prog/pvclust/ + qgam: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=qgam + qgraph: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SachaEpskamp/qgraph + qqman: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/stephenturner/qqman + qrnn: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=qrnn + quadprog: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=quadprog + quanteda: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://quanteda.io + quantmod: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/quantmod + quantreg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + questionr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/juba/questionr + rARPACK: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/rARPACK + rJava: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: http://www.rforge.net/rJava/ + random: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.random.org + randomForest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.berkeley.edu/~breiman/RandomForests/ + randomForestSRC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://www.randomforestsrc.org/ https://ishwaran.org/ + randtoolbox: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/rmetrics/ + rangeModelMetadata: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rangeModelMetadata + ranger: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/imbs-hl/ranger + rapidjsonr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rapidjsonr + raster: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://rspatial.org/raster + rasterVis: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/oscarperpinan/rastervis + ratelimitr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tarakc02/ratelimitr + rbibutils: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/rbibutils + rbison: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rbisondevel + rda: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/rda + rdrop2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/karthik/rdrop2 + reactR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/react-R/reactR + reactable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/glin/reactable + readODS: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/readODS + readbitmap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jefferis/readbitmap + reader: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=reader + readr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/readr + readxl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/readxl + rebird: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rebird + recipes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/recipes + registry: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=registry + regsem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/Rjacobucci/regsem + relsurv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=relsurv + rematch: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/rematch + rentrez: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docs.ropensci.org/rentrez + renv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/renv + reprex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/reprex + resample: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=resample + reshape: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://had.co.nz/reshape + reshape2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/reshape + reticulate: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/reticulate + rex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kevinushey/rex + rgbif: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rgbifdevel + rgdal: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://rgdal.r-forge.r-project.org + rgeos: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://r-forge.r-project.org/projects/rgeos/ https://libgeos.org + + http://rgeos.r-forge.r-project.org/index.html' + rgexf: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gvegayon/rgexf + rgl: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/rgl + rhandsontable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jrowen/rhandsontable + ridge: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SteffenMoritz/ridge + ridigbio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/iDigBio/ridigbio + rio: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gesistsa/rio + riskRegression: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tagteam/riskRegression + ritis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/ritisdevel + rjson: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/alexcb/rjson + rle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/statnet/rle + rlecuyer: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.iro.umontreal.ca/~lecuyer/myftp/papers/streams00.pdf + rlemon: + License: + - BSL-1.0 + Permission to redistribute: true + Retrieved from: https://errickson.net/rlemon/ + rlist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/renkun-ken/rlist + rmeta: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rmeta + rms: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/harrelfe/rms + rncl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fmichonneau/rncl + rnetcarto: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rnetcarto + rngWELL: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rngWELL + rngtools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/renozao/rngtools + robustbase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://robustbase.R-forge.R-project.org/ + rootSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rootSolve + roptim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ypan1988/roptim + rotl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rotl + rpact: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.rpact.org + rpart: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bethatkinson/rpart + rpf: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jpritikin/rpf + rrcov: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/rrcov + rredlist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rredlist + rsample: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/rsample + rsconnect: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rsconnect + rstan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/rstan/ + rstantools: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/rstantools/ + rstatix: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://rpkgs.datanovia.com/rstatix/ + rtdists: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rtdists/rtdists + ruv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www-personal.umich.edu/~johanngb/ruv/ + rvertnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rvertnet + rvest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/rvest + rvinecopulib: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/vinecopulib/rvinecopulib + s2: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/s2 + sampling: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=sampling + sandwich: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://sandwich.R-Forge.R-project.org/ + scales: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/scales + scam: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scam + scatterpie: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scatterpie + scatterplot3d: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scatterplot3d + scs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/FlorianSchwendinger/scs + sctransform: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/satijalab/sctransform + seewave: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rug.mnhn.fr/seewave/ + segmented: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=segmented + selectr: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://sjp.co.nz/projects/selectr + sem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=sem + semPLS: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=semPLS + semTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/simsem/semTools + sendmailR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/sendmailR + sensemakr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/carloscinelli/sensemakr + sentometrics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://sentometrics-research.com/sentometrics/ + seqinr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lbbe-software/seqinr + servr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/servr + setRNG: + License: + - AML + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + sf: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/sf + sfheaders: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dcooley/sfheaders + sfsmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/sfsmisc + shadowtext: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/GuangchuangYu/shadowtext + shape: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shape + shapefiles: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shapefiles + shinycssloaders: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/shinycssloaders + shinydashboard: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shinydashboard + shinyjs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://deanattali.com/shinyjs/ + shinystan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/shinystan/ + shinythemes: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shinythemes + signal: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://signal.R-forge.R-project.org + simex: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/wolfganglederer/simex + slam: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=slam + slider: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/slider + sm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=sm + smoof: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jakobbossek/smoof + smoother: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=smoother + sn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://azzalini.stat.unipd.it/SN/ + sna: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statnet.org + snow: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=snow + snowfall: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=snowfall + solrium: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/solriumdevel + som: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=som + soundecology: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ljvillanueva/soundecology + sp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/edzer/sp + spData: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://jakubnowosad.com/spData/ + spThin: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mlammens/spThin + spaMM: + License: + - CECILL-2.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + spaa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/helixcn/spaa + spam: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://www.math.uzh.ch/pages/spam/ + spatial: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + spatstat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.core: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.data: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.explore: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.geom: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.linnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.model: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.random: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.sparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.utils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spdep: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/spdep + splitstackshape: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mrdwab/splitstackshape + spls: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=spls + spocc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/spoccdevel + stabledist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/scm/viewvc.php/pkg/stabledist/?root=rmetrics + stabs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hofnerb/stabs + stargazer: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=stargazer + stars: + License: + - Apache-1.1 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/stars + startupmsg: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=startupmsg + statmod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=statmod + statnet: + License: + - AML + Permission to redistribute: true + Retrieved from: http://statnet.org + statnet.common: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + stdReg: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/web/packages/stdReg/index.html + stopwords: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/quanteda/stopwords + stringdist: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/markvanderloo/stringdist + stringmagic: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lrberge/stringmagic + strucchange: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=strucchange + styler: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/styler + subplex: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kingaa/subplex + survey: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://r-survey.r-forge.r-project.org/survey/ + survival: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/therneau/survival + survivalROC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=survivalROC + svUnit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SciViews/svUnit + svd: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/asl/svd + svglite: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/svglite + swagger: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/swagger + symmoments: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=symmoments + tableone: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaz-yos/tableone + tabletools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=tabletools + tau: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tau + taxize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/taxize/ (website) + tcltk2: + License: + - AML + Permission to redistribute: true + Retrieved from: http://www.sciviews.org/SciViews-R + tclust: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/valentint/tclust + tensor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tensor + tensorA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.boogaart.de/tensorA/ + tergm: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + terra: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rspatial/terra + testit: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/yihui/testit + textcat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=textcat + textplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/textplot + threejs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bwlewis/rthreejs + tictoc: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jabiru/tictoc + tidybayes: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/mjskay/tidybayes + tidygraph: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/tidygraph + tidyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tidyr + tidyselect: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/tidyselect + tidytext: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/juliasilge/tidytext + tidytree: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.amazon.com/Integration-Manipulation-Visualization-Phylogenetic-Computational-ebook/dp/B0B5NLZR1Z/ + tidyverse: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tidyverse + tiff: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.rforge.net/tiff/ + timeDate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/timeDateDoc + timechange: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/vspinu/timechange + timereg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/scheike/timereg + tkrplot: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tkrplot + tm: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tm.r-forge.r-project.org/ + tmap: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-tmap/tmap + tmaptools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-tmap/tmaptools + tmle: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=tmle + tmvnsim: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + tmvtnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + tokenizers: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/tokenizers + topicmodels: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=topicmodels + tree: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tree + triebeard: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/triebeard + trimcluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.homepages.ucl.ac.uk/~ucakche/ + tripack: + License: + - MIT-CMU + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tripack + truncnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/truncnorm + trust: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://www.stat.umn.edu/geyer/trust/ + tseries: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tseries + tseriesChaos: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tseriesChaos + tsna: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://statnet.org/ + tsne: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jdonaldson/rtsne + tuneR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://tuner.R-forge.R-project.org + twang: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=twang + tweedie: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tweedie + tweenr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/tweenr + tzdb: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/tzdb + ucminf: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hdakpo/ucminf + udpipe: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/udpipe + umap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tkonopka/umap + unbalanced: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=unbalanced + unikn: + License: + - CC-BY-SA-4.0 + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=unikn + uniqueAtomMat: + License: unknown + Permission to redistribute: false + Retrieved from: https://github.com/gitlongor/uniqueAtomMat + units: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-quantities/units + unmarked: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/biodiverse/unmarked + urca: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=urca + urltools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/urltools + uroot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/uroot + uuid: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://www.rforge.net/uuid + varhandle: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://codeberg.org/mehrad/varhandle + vcd: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=vcd + vcfR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/knausb/vcfR + vegan: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/vegandevs/vegan + vioplot: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/vioplot + vipor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=vipor + viridis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sjmgarnier/viridis + viridisLite: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sjmgarnier/viridisLite + visNetwork: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/datastorm-open/visNetwork + visdat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/visdat + vroom: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/vroom + warp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/DavisVaughan/warp + waveslim: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://waveslim.blogspot.com + wdm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/wdm-r + webshot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/webshot + webutils: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/webutils + weights: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=weights + wellknown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/wellknown + widgetframe: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bhaskarvk/widgetframe + wikitaxa: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/wikitaxa + wk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/paleolimbot/wk + word2vec: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/word2vec + wordcloud: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: http://blog.fellstat.com/?cat=11 http://www.fellstat.com + worrms: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/worrms/ + writexl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: 'https://ropensci.r-universe.dev/writexl + + https://docs.ropensci.org/writexl/' + xgboost: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dmlc/xgboost + xlsx: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/colearendt/xlsx + xlsxjars: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=xlsxjars + xts: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/xts + yaImpute: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jeffreyevans/yaImpute + yulab.utils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://yulab-smu.top/ + zeallot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/nteetor/zeallot + zoo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://zoo.R-Forge.R-project.org/ + '2024.06': + ADGofTest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ADGofTest + AICcmodavg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=AICcmodavg + AMAPVox: + License: + - CECILL-2.0 + Permission to redistribute: true + Retrieved from: https://amapvox.org + AUC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=AUC + AlgDesign: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jvbraun/AlgDesign + BB: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.jhsph.edu/agingandhealth/People/Faculty_personal_pages/Varadhan.html + BBmisc: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/berndbischl/BBmisc + BCEE: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=BCEE + BDgraph: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.uva.nl/profile/a.mohammadi + BH: + License: + - BSL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/bh + BIEN: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=BIEN + BIGL: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/openanalytics/BIGL + BMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hanase/BMA + BatchJobs: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/tudo-r/BatchJobs + BayesLogit: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jwindle/BayesLogit + BayesPen: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=BayesPen + BayesianTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/florianhartig/BayesianTools + BiasedUrn: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.agner.org/random/ https://www.r-project.org/ + Boruta: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/mbq/Boruta + Brobdingnag: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/Brobdingnag + CBPS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CBPS + CVST: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CVST + CVXR: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://cvxr.rbind.io + Cairo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/Cairo/ + ComICS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: 'http://dcq.tau.ac.il/ ' + CompQuadForm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CompQuadForm + ComplexUpset: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krassowski/complex-upset + ConsRank: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org/ + CovSel: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=CovSel + DBI: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-dbi/DBI + DEoptim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ArdiaD/DEoptim + DEoptimR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: svn://svn.r-forge.r-project.org/svnroot/robustbase/pkg/DEoptimR + DHARMa: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/florianhartig/DHARMa + DMCfun: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/igmmgi/DMCfun + DRR: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/gdkrmr/DRR + DT: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/DT + DTRreg: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DTRreg + DataCombine: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://CRAN.R-project.org/package=DataCombine + DepthProc: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zzawadz/DepthProc + Deriv: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/sgsokol/Deriv + DescTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/andrisignorell/DescTools + DiagrammeR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rich-iannone/DiagrammeR + DiceKriging: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dicekrigingclub/www + DiscriMiner: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DiscriMiner + DistributionUtils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=DistributionUtils + ECOSolveR: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/ECOSolveR + ENMeval: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/jamiemkass/ENMeval + EValue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=EValue + EasyABC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://easyabc.r-forge.r-project.org/ + EnvStats: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/alexkowa/EnvStats + ExPosition: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/derekbeaton/ExPosition1 + Exact: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Exact + FKSUM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FKSUM + FME: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://fme.r-forge.r-project.org/ + FNN: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FNN + FactoMineR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://factominer.free.fr + FactorCopula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=FactorCopula + Formula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Formula + GGally: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ggobi/ggally + GJRM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.ucl.ac.uk/statistics/people/giampieromarra + GPArotation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://optimizer.r-forge.r-project.org/GPArotation_www/ + GSA: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://tibshirani.su.domains/GSA/ + GUTS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GUTS + GenSA: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GenSA + GeneNet: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + GetoptLong: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/GetoptLong + GillespieSSA: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcannood/GillespieSSA + GlobalOptions: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/GlobalOptions + GxEScanR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=GxEScanR + HGNChelper: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/waldronlab/HGNChelper + HWxtest: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=HWxtest + HiddenMarkov: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.statsresearch.co.nz/dsh/sslib/ + Hmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://hbiostat.org/R/Hmisc/ + Hmsc: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.helsinki.fi/en/researchgroups/statistical-ecology/software/hmsc + IDPmisc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=IDPmisc + ISOcodes: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ISOcodes + ISOweek: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ISOweek + Iso: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Iso + JADE: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=JADE + JBTools: + License: GPL-2 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/src/contrib/Archive/JBTools/ + KODAMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=KODAMA + KernSmooth: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=KernSmooth + LCFdata: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LCFdata + LMERConvenienceFunctions: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LMERConvenienceFunctions + LaplacesDemon: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/LaplacesDemonR/LaplacesDemon + LearnBayes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=LearnBayes + Lmoments: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://users.jyu.fi/~jutakarv/ + MALDIquant: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + MASS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + MCMCpack: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=MCMCpack + MESS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ekstroem/MESS + MIIVsem: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zackfisher/MIIVsem + MLmetrics: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/yanyachen/MLmetrics + MatchIt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kosukeimai/MatchIt + Matching: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/JasjeetSekhon/Matching + Matrix: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://Matrix.R-forge.R-project.org + MatrixModels: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://Matrix.R-forge.R-project.org/ + MetaUtility: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=MetaUtility + ModelMetrics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ModelMetrics + MonteCarlo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/FunWithR/MonteCarlo + NCmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NCmisc + NISTunits: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NISTunits + NLP: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=NLP + OceanView: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=OceanView + OpenMx: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/OpenMx/OpenMx + PCAmatchR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/machiela-lab/PCAmatchR + PKI: + License: + - AML + Permission to redistribute: true + Retrieved from: http://www.rforge.net/PKI + PMA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/PMA + ParamHelpers: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/ParamHelpers + PearsonDS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PearsonDS + PermAlgo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PermAlgo + PoissonSeq: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/PoissonSeq + Polychrome: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: http://oompa.r-forge.r-project.org/ + PresenceAbsence: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=PresenceAbsence + Publish: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Publish + QuickJSR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/andrjohns/QuickJSR + R.cache: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.cache + R.matlab: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.matlab + R.methodsS3: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.methodsS3 + R.oo: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/R.oo + R.rsp: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.rsp + R.utils: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/henrikbengtsson/R.utils + R2WinBUGS: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=R2WinBUGS + RANN: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jefferislab/RANN + RBesT: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://opensource.nibr.com/RBesT/ + RCAL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.rutgers.edu/~ztan + RCircos: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hzhanghenry/RCircos + RColorBrewer: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RColorBrewer + RCurl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RCurl + RGCCA: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rgcca-factory/RGCCA + RInside: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rinside + RItools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=RItools + RJSONIO: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RJSONIO + RMTstat: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/evanbiederstedt/RMTstat + RNeXML: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/RNeXML + RNifti: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jonclayden/RNifti + ROCR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ipa-tys/ROCR + ROI: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://roi.r-forge.r-project.org/ + ROI.plugin.glpk: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://roi.r-forge.r-project.org/ + RPMM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RPMM + RPostgreSQL: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/tomoakin/RPostgreSQL + RSNNS: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/cbergmeir/RSNNS + RSQLite: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-dbi/RSQLite + RSpectra: + License: + - MulanPSL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/RSpectra + RUnit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RUnit + RWeka: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RWeka + RWekajars: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RWekajars + Rborist: + License: + - SimPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/suiji/Rborist.CRAN + Rcgmin: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rcgmin + RcppArmadillo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/RcppArmadillo + RcppEigen: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/RcppCore/RcppEigen + RcppGSL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/rcppgsl + RcppParallel: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rcppcore/RcppParallel + RcppProgress: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/kforner/rcpp_progress + RcppRoll: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=RcppRoll + RcppTOML: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://dirk.eddelbuettel.com/code/rcpp.toml.html + RcppThread: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/RcppThread + Rdpack: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/Rdpack + RefFreeEWAS: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/RefFreeEWAS + Rglpk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://R-Forge.R-project.org/projects/rglp/ + RhpcBLASctl: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://prs.ism.ac.jp/~nakama/Rhpc/ + Rmpfr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rmpfr.r-forge.r-project.org/ + Rook: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/evanbiederstedt/rook + Rserve: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.rforge.net/Rserve/ + Rsolnp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rsolnp + Rssa: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/asl/rssa + Rtsne: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/jkrijthe/Rtsne + Rttf2pt1: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://github.com/wch/Rttf2pt1 + Rvmmin: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=Rvmmin + SBdecomp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SBdecomp + SDMTools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=SDMTools + SKAT: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SKAT + SNFtool: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SNFtool + SOAR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SOAR + SPAtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SPAtest + SQUAREM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html + SignifReg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SignifReg + SimSeq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SimSeq + SnowballC: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/nalimilan/R.TeMiS + SparseM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html + StanHeaders: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://mc-stan.org/ + StatMatch: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/marcellodo/StatMatch + SuperLearner: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ecpolley/SuperLearner + SuppDists: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=SuppDists + TFisher: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TFisher + TH.data: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TH.data + TMB: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaskr/adcomp + TTR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/TTR + TeachingDemos: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=TeachingDemos + TraMineR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://traminer.unige.ch + TruncatedNormal: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lbelzile/TruncatedNormal + UpSetR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hms-dbmi/UpSetR + V8: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/V8 + VGAM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yee/VGAM/ + VIM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/statistikat/VIM + VSURF: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/robingenuer/VSURF + VennDiagram: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=VennDiagram + VineCopula: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/VineCopula + WeightSVM: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.csie.ntu.edu.tw/~cjlin/libsvmtools/#weights_for_data_instances + WikidataQueryServiceR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bearloga/WikidataQueryServiceR + WikidataR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/TS404/WikidataR + WikipediR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/WikipediR + WriteXLS: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/marcschwartz/WriteXLS + XBRL: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=XBRL + XML: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://www.omegahat.net/RSXML/ + abc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abc + abc.data: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abc.data + abe: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abe + abind: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=abind + acepack: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=acepack + adabag: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=adabag + ade4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/adeverse/ade4 + admisc: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/dusadrian/admisc + aggregation: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=aggregation + akima: + License: + - MIT-CMU + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=akima + alabama: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=alabama + alluvial: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mbojan/alluvial + animation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://yihui.org/animation/ + aod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=aod + apcluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/UBod/apcluster + ape: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/emmanuelparadis/ape + aplot: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/YuLab-SMU/aplot + argparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-argparse + aricode: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jchiquet/aricode + arm: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=arm + arrayhelpers: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://arrayhelpers.r-forge.r-project.org/ + asnipe: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=asnipe + assertive: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive + assertive.base: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.base + assertive.code: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.code + assertive.data: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data + assertive.data.uk: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data.uk + assertive.data.us: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.data.us + assertive.datetimes: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.datetimes + assertive.files: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.files + assertive.matrices: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.matrices + assertive.models: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.models + assertive.numbers: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.numbers + assertive.properties: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.properties + assertive.reflection: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.reflection + assertive.sets: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.sets + assertive.strings: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.strings + assertive.types: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://bitbucket.org/richierocks/assertive.types + assertthat: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=assertthat + audio: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://www.rforge.net/audio/ + aws: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.wias-berlin.de/people/polzehl/ + awsMethods: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.wias-berlin.de/software/imaging/ + backports: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/backports + bacr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bacr + bartMachine: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bartMachine + bartMachineJARs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bartMachineJARs + base64: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=base64 + batchmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=batchmeans + bayesm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bayesm + bayesplot: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/bayesplot/ + bayestestR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/easystats/bayestestR + bbmle: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bbolker/bbmle + bdsmatrix: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bdsmatrix + beanplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=beanplot + beeswarm: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/aroneklund/beeswarm + berryFunctions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brry/berryFunctions + betareg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://topmodels.R-Forge.R-project.org/betareg/ + bibtex: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/bibtex + bigD: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/bigD + bigmemory: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaneplusplus/bigmemory + bigmemory.sri: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bigmemory.sri + bindr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/bindr + bindrcpp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/bindrcpp + bio3d: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://bitbucket.org/Grantlab/bio3d + biom: + License: Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/biom + biomod2: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/biomodhub/biomod2 + bit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/bit + bit64: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/bit64 + bitops: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/R-bitops + blavaan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/ecmerkle/blavaan + blob: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/blob + bmp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bmp + bnlearn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.bnlearn.com/ + bold: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/boldsource + boot: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=boot + bootstrap: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://gitlab.com/scottkosty/bootstrap + brglm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ikosmidis/brglm + bridgedist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/swihart/bridgedist + bridgesampling: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/quentingronau/bridgesampling + brms: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/paul-buerkner/brms + broom: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/broom + broom.helpers: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/broom.helpers + broom.mixed: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bbolker/broom.mixed + bst: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=bst + cNORM: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/WLenhard/cNORM + cSEM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/FloSchuberth/cSEM + caTools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=caTools + calibrate: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=calibrate + car: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/car/ + carData: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/car/ + caret: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/topepo/caret + catlearn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ajwills72/catlearn + celestial: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=celestial + cellranger: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rsheets/cellranger + cgdsr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/cBioPortal/cgdsr + cghFLasso: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=cghFLasso + changepoint: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rkillick/changepoint + checkmate: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mllg/checkmate + chemometrics: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://cstat.tuwien.ac.at/filz/ + chk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/poissonconsulting/chk + chkptstanr: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=chkptstanr + chron: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=chron + circlize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jokergoo/circlize + circular: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=circular + clValid: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clValid + class: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + classInt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/classInt + cld2: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/cld2/ + + https://ropensci.r-universe.dev/cld2' + clisymbols: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/clisymbols + clock: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/clock + clue: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clue + cluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/cluster/ + clusterGeneration: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=clusterGeneration + clusterRepro: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.ncbi.nlm.nih.gov/pubmed/16613834. + clustree: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lazappi/clustree + cmna: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://jameshoward.us/cmna/ + cmprsk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.R-project.org + cobalt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ngreifer/cobalt + cobs: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://curves-etc.r-forge.r-project.org/ + coda: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=coda + codetools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/luke-tierney/codetools + coin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://coin.r-forge.r-project.org + collapse: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/sebkrantz/collapse + colorspace: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://colorspace.R-Forge.R-project.org/ + colourpicker: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/colourpicker + combinat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=combinat + compositions: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.boogaart.de/compositions/ + conditionz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropenscilabs/conditionz + conflicted: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/conflicted + conquer: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/XiaoouPan/conquer + contfrac: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/contfrac + copCAR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=copCAR + copula: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://copula.r-forge.r-project.org/ + corpcor: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + corrplot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/taiyun/corrplot + covr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/covr + covsim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=covsim + cowplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://wilkelab.org/cowplot/ + coxed: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jkropko/coxed + coxme: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=coxme + crfsuite: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/crfsuite + crosstalk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/crosstalk + crul: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/crul/ + csSAM: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/csSAM + ctmle: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ctmle + cubature: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnaras/cubature + cubelyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/cubelyr + cvAUC: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ledell/cvAUC + d3Network: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/christophergandrud/d3Network + dHSIC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dHSIC + dagitty: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jtextor/dagitty + data.table: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/Rdatatable/data.table + data.tree: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gluc/data.tree + datawizard: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/easystats/datawizard + date: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=date + dbarts: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/vdorie/dbarts + dbplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dbplyr + dbscan: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mhahsler/dbscan + dcurver: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/oguzhanogreden/dcurver + ddalpha: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ddalpha + deSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://desolve.r-forge.r-project.org/ + deal: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=deal + debugme: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/debugme + deldir: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=deldir + dendextend: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/dendextend + dfidx: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=dfidx + diagram: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=diagram + dichromat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dichromat + dimRed: + License: + - AML + Permission to redistribute: true + Retrieved from: https://www.guido-kraemer.com/software/dimred/ + diptest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/diptest + dismo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://rspatial.org/raster/sdm/ + distillery: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=distillery + distr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + distrEx: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + distributional: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mitchelloharawild/distributional + diveRsity: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://diversityinlife.weebly.com/ + dlm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dlm + doMC: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=doMC + doParallel: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/doparallel + doRNG: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/doRNG + doSNOW: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=doSNOW + doc2vec: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/doc2vec + docstring: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dasonk/docstring + dotCall64: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://git.math.uzh.ch/reinhard.furrer/dotCall64 + downloader: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/downloader + dplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dplyr + dr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=dr + dreamerr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lrberge/dreamerr + drgee: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=drgee + drugCombo: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://bioconductor.org/packages/drugCombo + dtangle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dtangle + dtplyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/dtplyr + dtw: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://dynamictimewarping.github.io/ + dummies: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=dummies + dygraphs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/dygraphs + dynamicTreeCut: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/BranchCutting/ + e1071: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=e1071 + earth: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.milbo.users.sonic.net/earth/ + ellipse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/ellipse + elliptic: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/elliptic + emdbook: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.math.mcmaster.ca/bolker/emdbook + emmeans: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/emmeans + emoa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/emoa + emulator: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/emulator + energy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mariarizzo/energy + entropy: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + epitools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=epitools + ergm: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + ergm.count: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + ergm.multi: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + estimability: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rvlenth/estimability + evd: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=evd + expm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://R-Forge.R-project.org/projects/expm/ + expsmooth: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/expsmooth + extRemes: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=extRemes + extrafont: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/extrafont + extrafontdb: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/extrafontdb + fail: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mllg/fail + farver: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/farver + fastDummies: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jacobkap/fastDummies + fastICA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fastICA + fastcluster: + License: + - BSD-2-Clause-FreeBSD + Permission to redistribute: true + Retrieved from: https://danifold.net/fastcluster.html + fasterize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ecohealthalliance/fasterize + fastmatch: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www.rforge.net/fastmatch + fdrtool: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + feather: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wesm/feather + ff: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/truecluster/ff + fftw: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fftw + fftwtools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/krahim/fftwtools + fields: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dnychka/fieldsRPackage + filehash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rdpeng/filehash + finalfit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ewenharrison/finalfit + findpython: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/findpython + fishMod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fishMod + fitdistrplus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lbbe-software/fitdistrplus + fixest: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lrberge/fixest + flashClust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flashClust + flexclust: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flexclust + flexmix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=flexmix + flextable: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ardata-fr/flextable-book + fma: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/fma + fmri: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.wias-berlin.de/software/imaging/ + fontBitstreamVera: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontBitstreamVera + fontLiberation: + License: + - MIT-feh + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontLiberation + fontquiver: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=fontquiver + forcats: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/forcats + foreach: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/foreach + forecast: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/robjhyndman/forecast + foreign: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/foreign/ + formatR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/formatR + formula.tools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/decisionpatterns/formula.tools + fossil: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://matthewvavrek.com/programs-and-code/fossil/ + fpc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.unibo.it/sitoweb/christian.hennig/en/ + fpp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://otexts.com/fpp/ + fracdiff: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/fracdiff + furrr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/DavisVaughan/furrr + futile.logger: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=futile.logger + futile.options: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=futile.options + future: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/future + future.apply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/future.apply + gWidgets2: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/gWidgets3/gWidgets2 + gWidgets2tcltk: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jverzani/gWidgets2tcltk + gam: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gam + gamlss: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.data: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.dist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamlss.tr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.gamlss.com/ + gamm4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gamm4 + gap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jinghuazhao/R + gap.datasets: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jinghuazhao/R + gapfill: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/florafauna/gapfill + gargle: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gargle + gaussquad: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gaussquad + gbRd: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gbRd + gbm: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/gbm-developers/gbm + gclus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gclus + gdalUtils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/gearslaboratory/gdalUtils + gdata: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gdata + gdistance: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/AgrDataSci/gdistance + gdtools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/davidgohel/gdtools + gee: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gee + geeM: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geeM + geepack: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geepack + geex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bsaul/geex + geiger: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=geiger + generics: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/generics + genoPlotR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://genoplotr.r-forge.r-project.org/ + geojsonsf: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/SymbolixAU/geojsonsf + geometries: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dcooley/geometries + geometry: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/davidcsterratt/geometry + getopt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-getopt + gfonts: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/dreamrs/gfonts + ggExtra: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/ggExtra + ggbeeswarm: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/eclarke/ggbeeswarm + ggdag: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-causal/ggdag + ggdist: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/mjskay/ggdist + ggfan: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/jasonhilton/ggfan + ggforce: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/ggforce + ggformula: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ProjectMOSAIC/ggformula + ggfun: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/YuLab-SMU/ggfun + ggh4x: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/teunbrand/ggh4x + ggnetwork: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/briatte/ggnetwork + ggplot2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/ggplot2 + ggplotify: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/GuangchuangYu/ggplotify + ggpubr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rpkgs.datanovia.com/ggpubr/ + ggraph: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/ggraph + ggrepel: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/slowkow/ggrepel + ggridges: + License: + - AML + Permission to redistribute: true + Retrieved from: https://wilkelab.org/ggridges/ + ggsci: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/nanxstats/ggsci + ggsignif: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/const-ae/ggsignif + ggstance: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/lionel-/ggstance + ggstats: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/ggstats + ggvenn: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ggvenn + ggvis: + License: + - AML + Permission to redistribute: true + Retrieved from: https://ggvis.rstudio.com/ + git2r: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/git2r + glasso: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://www-stat.stanford.edu/~tibs/glasso + gld: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/newystats/gld + gllvm: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jenniniku/gllvm + glmmML: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=glmmML + glmmTMB: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/glmmTMB/glmmTMB + glmnet: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://glmnet.stanford.edu + globals: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/globals + gmm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gmm + gmodels: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gmodels + gmp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://forgemia.inra.fr/sylvain.jasson/gmp + gnumeric: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gnumeric + goftest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/baddstats/goftest + gomms: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gomms + googledrive: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/googledrive + googlesheets4: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/googlesheets4 + gower: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/markvanderloo/gower + gplots: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/talgalili/gplots + grImport2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/grimport/ + graphlayouts: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/schochastics/graphlayouts + grf: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/grf-labs/grf + gridBase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gridBase + gridExtra: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=gridExtra + gridGraphics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/pmur002/gridgraphics + grpreg: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/pbreheny/grpreg + gsalib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/broadinstitute/gsalib + gsl: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/gsl + gsw: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/teos-10/GSW-R + gt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/gt + gtable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/gtable + gtools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-gregmisc/gtools + gtsummary: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ddsjoberg/gtsummary + h2o: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/h2oai/h2o-3 + hal9001: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tlverse/hal9001 + haldensify: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/nhejazi/haldensify + hardhat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/hardhat + harmony: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/immunogenomics/harmony + hash: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.johnhughes.org + haven: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/WizardMac/ReadStat + hdf5r: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hhoeflin/hdf5r + hdm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hdm + heatmap3: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=heatmap3 + here: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/here + hexbin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/edzer/hexbin + hms: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/hms + htmlTable: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://gforge.se/packages/ + httpcode: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sckott/httpcode + huge: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=huge + hunspell: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/hunspell/ + + https://ropensci.r-universe.dev/hunspell' + hwriter: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hwriter + hypergeo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=hypergeo + ica: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ica + idr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=idr + ids: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/richfitz/ids + ie2misc: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/iembry/ie2misc + igraph: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r.igraph.org/ + image.binarization: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/DIGI-VUB/image.binarization + imager: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/asgr/imager + imagerExtra: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ShotaOchi/imagerExtra + ineq: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ineq + influenceR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/khanna-lab/influenceR + infotheo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://homepage.meyerp.com/software + inline: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/eddelbuettel/inline + insight: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/easystats/insight + intergraph: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mbojan/intergraph + interp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=interp + interpretR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=interpretR + intrinsicDimension: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=intrinsicDimension + inum: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=inum + ipred: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ipred + irace: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mlopez-ibanez/irace + irlba: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bwlewis/irlba + ismev: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.ral.ucar.edu/~ericg/softextreme.php + isoband: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://isoband.r-lib.org + iterators: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RevolutionAnalytics/iterators + itertools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=itertools + janeaustenr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/juliasilge/janeaustenr + jiebaR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/qinwf/jiebaR + jiebaRD: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/qinwf/jiebaRD + jomo: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jomo + jpeg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.rforge.net/jpeg/ + jsonify: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=jsonify + jstable: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jinseob2kim/jstable + juicyjuice: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rich-iannone/juicyjuice + kde1d: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/kde1d + kedd: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/iagogv/kedd + kernlab: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=kernlab + kinship2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=kinship2 + klaR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statistik.tu-dortmund.de + kohonen: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=kohonen + ks: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.mvstat.net/mvksa/ + labdsv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=labdsv + labeling: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=labeling + labelled: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/larmarange/labelled + laeken: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=laeken + lambda.r: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lambda.r + lars: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://doi.org/10.1214/009053604000000067 + lassosum: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=lassosum + lattice: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://lattice.r-forge.r-project.org/ + latticeExtra: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://latticeextra.r-forge.r-project.org/ + lava: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kkholst/lava + lavaan: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://lavaan.ugent.be + lazy: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lazy + lazyeval: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lazyeval + lda: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lda + ldbounds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ldbounds + leafem: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/leafem + leaflet: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/leaflet + leaflet.providers: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/leaflet.providers + leafsync: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/leafsync + leaps: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=leaps + leiden: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/leiden + lhs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/bertcarnell/lhs + libcoin: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=libcoin + limSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=limSolve + linkcomm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alextkalinka/linkcomm + linprog: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://linprog.r-forge.r-project.org/ + liquidSVM: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=liquidSVM + listenv: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/listenv + lme4: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lme4/lme4 + lmerTest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/runehaubo/lmerTestR + lmom: + License: + - CPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lmom + lmtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lmtest + lobstr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/lobstr + locfdr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=locfdr + locfit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=locfit + logcondens: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: 'http://www.kasparrufibach.ch ' + logger: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daroczig/logger + logistf: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cemsiis.meduniwien.ac.at/en/kb/science-research/software/statistical-software/firth-correction/ + logspline: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=logspline + longitudinal: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/strimmerlab/software + longmemo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=longmemo + loo: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/loo/ + lpSolve: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/lpSolve + lpSolveAPI: + License: + - LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=lpSolveAPI + lqa: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=lqa + lsei: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yongwang/ + lslx: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/psyphh/lslx + lubridate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/lubridate + lwgeom: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/lwgeom + mRMRe: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.pmgenomics.ca/bhklab/ + magic: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/RobinHankin/magic + magick: + License: + - MIT + Permission to redistribute: true + Retrieved from: 'https://docs.ropensci.org/magick/ + + https://ropensci.r-universe.dev/magick' + manipulateWidget: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rte-antares-rpackage/manipulateWidget + mapproj: + License: + - LPL-1.02 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mapproj + maps: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maps + maptools: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://maptools.r-forge.r-project.org/ + markdown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/markdown + mathjaxr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/mathjaxr + matlab: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=matlab + matrixStats: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HenrikBengtsson/matrixStats + matrixcalc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/matrixcalc + maxLik: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maxLik + maxlike: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=maxlike + maxnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mrmaxent/maxnet + mboost: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/boost-R/mboost + mclogit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/melff/mclogit + mclust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mclust-org/mclust + mcmc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/cjgeyer/mcmc + mcmcse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mcmcse + mda: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mda + medflex: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jmpsteen/medflex + mediation: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://imai.princeton.edu/projects/mechanisms.html + memisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/melff/memisc + memuse: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/shinra-dev/memuse + metadat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/metadat + metafor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/wviechtb/metafor + mets: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kkholst/mets + mgcv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mgcv + mgsub: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bmewing/mgsub + mhsmm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mhsmm + mi: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.columbia.edu/~gelman/ + mice: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/amices/mice + miceadds: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alexanderrobitzsch/miceadds + microbenchmark: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/microbenchmark + minerva: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + minpack.lm: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=minpack.lm + minqa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://optimizer.r-forge.r-project.org + minty: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gesistsa/minty + mirt: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/philchalmers/mirt + misc3d: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://gitlab.com/luke-tierney/misc3d + miscTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/arne-henningsen/miscTools + missForest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/stekhoven/missForest + missMDA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://factominer.free.fr/missMDA/index.html + mitml: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/simongrund1/mitml + mitools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mitools + mixtools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dsy109/mixtools + mlbench: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mlbench + mlegp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mlegp + mlogit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=mlogit + mlr: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/mlr + mlrMBO: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/mlrMBO + mltools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ben519/mltools + mnormt: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://azzalini.stat.unipd.it/SW/Pkg-mnormt/ + modelr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/modelr + modeltools: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=modeltools + momentfit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=momentfit + moments: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + mosaicCore: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ProjectMOSAIC/mosaicCore + mpath: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/zhuwang46/mpath + msm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/chjackson/msm + mstate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hputter/mstate + multcomp: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://multcomp.R-forge.R-project.org + multcompView: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=multcompView + multicool: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jmcurran/multicool + multipol: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=multipol + multitaper: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/krahim/multitaper + munsell: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/cwickham/munsell + mvabund: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=mvabund + mvnfast: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mfasiolo/mvnfast + mvtnorm: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://mvtnorm.R-forge.R-project.org + nabor: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jefferis/nabor + naniar: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/njtierney/naniar + natserv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/natserv + naturalsort: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kos59125/naturalsort + ncbit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ncbit + ncdf4: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://cirrus.ucsd.edu/~pierce/ncdf/ + network: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statnet.org/ + networkDynamic: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://statnet.org/ + networkLite: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/EpiModel/networkLite + neuRosim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=neuRosim + neuralnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bips-hb/neuralnet + ngspatial: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ngspatial + nleqslv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nleqslv + nlme: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://svn.r-project.org/R-packages/trunk/nlme/ + nloptr: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/astamm/nloptr + nlsem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/nwickel/nlsem + nnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + nnls: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nnls + nonnest2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/qpsy/nonnest2 + nor1mix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://curves-etc.r-forge.r-project.org/ + norm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=norm + nortest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=nortest + np: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/JeffreyRacine/R-Package-np + npsurv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.auckland.ac.nz/~yongwang/ + numDeriv: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://optimizer.r-forge.r-project.org/ + oai: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/oai + oce: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dankelley/oce + oddsratio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pat-s/oddsratio + officer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ardata-fr/officeverse + openair: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/davidcarslaw/openair + openxlsx: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ycphs/openxlsx + operator.tools: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/decisionpatterns/operator.tools + optextras: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=optextras + optimParallel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/florafauna/optimParallel-R + optimr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=optimr + optimx: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nashjc/optimx + optmatch: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/markmfredrickson/optmatch + optparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/trevorld/r-optparse + ordinal: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/runehaubo/ordinal + origami: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tlverse.org/origami/ + oro.nifti: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://rigorousanalytics.blogspot.com + orthopolynom: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=orthopolynom + osqp: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://osqp.org + outliers: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.R-project.org + pROC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/xrobin/pROC + packrat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/packrat + pacman: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/trinker/pacman + pammtools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/adibender/pammtools + pamr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pamr + pan: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pan + parallelDist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/alexeckert/parallelDist + parallelMap: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mlr-org/parallelMap + parallelly: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/parallelly + parsedate: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/parsedate + party: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: http://party.R-forge.R-project.org + partykit: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://partykit.r-forge.r-project.org/partykit/ + pastecs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SciViews/pastecs + patchwork: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/patchwork + pbapply: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/psolymos/pbapply + pbivnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/brentonk/pbivnorm + pbkrtest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://people.math.aau.dk/~sorenh/software/pbkrtest/ + pcaPP: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/pcaPP + pdp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bgreenwell/pdp + pec: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pec + penalized: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=penalized + penfa: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/egeminiani/penfa + peperr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/fbertran/peperr + performance: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/easystats/performance + permute: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gavinsimpson/permute + phangorn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/KlausVigo/phangorn + pheatmap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pheatmap + phylobase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/fmichonneau/phylobase + phytools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/liamrevell/phytools + pim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/CenterForStatistics-UGent/pim + pinfsc50: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pinfsc50 + pixmap: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pixmap + pkgmaker: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/renozao/pkgmaker + plogr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/krlmlr/plogr + plot3D: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=plot3D + plot3Drgl: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=plot3Drgl + plotly: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://plotly-r.com + plotmo: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.milbo.users.sonic.net + plotrix: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/plotrix + pls: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/khliland/pls + plyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/plyr + png: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.rforge.net/png/ + poLCA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dlinzer/poLCA + polspline: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=polspline + polyclip: + License: + - Unknown + Permission to redistribute: false + Retrieved from: https://github.com/baddstats/polyclip + polycor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/polycor/ + polynom: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=polynom + posterior: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://mc-stan.org/posterior/ + ppcor: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=ppcor + prabclus: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.unibo.it/sitoweb/christian.hennig/en/ + pracma: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pracma + preseqR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=preseqR + prettyGraphs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/derekbeaton/ExPosition1 + princurve: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rcannood/princurve + prodlim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tagteam/prodlim + profileModel: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ikosmidis/profileModel + proftools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=proftools + progress: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/progress + progressr: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/futureverse/progressr + projpred: + License: + - AML + Permission to redistribute: true + Retrieved from: https://mc-stan.org/projpred/ + proto: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hadley/proto + proxy: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=proxy + proxyC: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/koheiw/proxyC + pryr: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hadley/pryr + pscl: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/atahk/pscl + pspline: + License: + - FSFUL + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=pspline + psych: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: 'https://personality-project.org/r/psych/ + + https://personality-project.org/r/psych-manual.pdf' + pulsar: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/zdk123/pulsar + pvclust: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://stat.sys.i.kyoto-u.ac.jp/prog/pvclust/ + qgam: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=qgam + qgraph: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SachaEpskamp/qgraph + qqman: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/stephenturner/qqman + qrnn: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=qrnn + quadprog: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=quadprog + quanteda: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://quanteda.io + quantmod: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/quantmod + quantreg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + questionr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/juba/questionr + rARPACK: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/yixuan/rARPACK + rJava: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: http://www.rforge.net/rJava/ + random: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.random.org + randomForest: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.stat.berkeley.edu/~breiman/RandomForests/ + randomForestSRC: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://www.randomforestsrc.org/ https://ishwaran.org/ + randtoolbox: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/projects/rmetrics/ + rangeModelMetadata: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rangeModelMetadata + ranger: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/imbs-hl/ranger + rapidjsonr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rapidjsonr + raster: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://rspatial.org/raster + rasterVis: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/oscarperpinan/rastervis + ratelimitr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tarakc02/ratelimitr + rbibutils: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/rbibutils + rbison: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rbisondevel + rda: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/rda + rdrop2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/karthik/rdrop2 + reactR: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/react-R/reactR + reactable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/glin/reactable + readODS: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/readODS + readbitmap: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jefferis/readbitmap + reader: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=reader + readr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/readr + readxl: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/readxl + rebird: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rebird + recipes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/recipes + registry: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=registry + regsem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/Rjacobucci/regsem + relsurv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=relsurv + rematch: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gaborcsardi/rematch + rentrez: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/docs.ropensci.org/rentrez + renv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/renv + reprex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/reprex + resample: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=resample + reshape: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://had.co.nz/reshape + reshape2: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hadley/reshape + reticulate: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/reticulate + rex: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/kevinushey/rex + rgbif: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rgbifdevel + rgdal: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: http://rgdal.r-forge.r-project.org + rgeos: + License: + - CNRI-Python-GPL-Compatible + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: 'https://r-forge.r-project.org/projects/rgeos/ https://libgeos.org + + http://rgeos.r-forge.r-project.org/index.html' + rgexf: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/gvegayon/rgexf + rgl: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dmurdoch/rgl + rhandsontable: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jrowen/rhandsontable + ridge: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SteffenMoritz/ridge + ridigbio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/iDigBio/ridigbio + rio: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/gesistsa/rio + riskRegression: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/tagteam/riskRegression + ritis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/ritisdevel + rjson: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/alexcb/rjson + rle: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/statnet/rle + rlecuyer: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.iro.umontreal.ca/~lecuyer/myftp/papers/streams00.pdf + rlemon: + License: + - BSL-1.0 + Permission to redistribute: true + Retrieved from: https://errickson.net/rlemon/ + rlist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/renkun-ken/rlist + rmeta: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rmeta + rms: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/harrelfe/rms + rncl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fmichonneau/rncl + rnetcarto: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rnetcarto + rngWELL: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rngWELL + rngtools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/renozao/rngtools + robustbase: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://robustbase.R-forge.R-project.org/ + rootSolve: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=rootSolve + roptim: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/ypan1988/roptim + rotl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rotl + rpact: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.rpact.org + rpart: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bethatkinson/rpart + rpf: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/jpritikin/rpf + rrcov: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/valentint/rrcov + rredlist: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rredlist + rsample: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidymodels/rsample + rsconnect: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/rsconnect + rstan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/rstan/ + rstantools: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/rstantools/ + rstatix: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://rpkgs.datanovia.com/rstatix/ + rtdists: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rtdists/rtdists + ruv: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www-personal.umich.edu/~johanngb/ruv/ + rvertnet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/rvertnet + rvest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/rvest + rvinecopulib: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/vinecopulib/rvinecopulib + s2: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/s2 + sampling: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=sampling + sandwich: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://sandwich.R-Forge.R-project.org/ + scales: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/scales + scam: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scam + scatterpie: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scatterpie + scatterplot3d: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=scatterplot3d + scs: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/FlorianSchwendinger/scs + sctransform: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/satijalab/sctransform + seewave: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://rug.mnhn.fr/seewave/ + segmented: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=segmented + selectr: + License: + - MirOS + Permission to redistribute: true + Retrieved from: https://sjp.co.nz/projects/selectr + sem: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=sem + semPLS: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=semPLS + semTools: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/simsem/semTools + sendmailR: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/sendmailR + sensemakr: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/carloscinelli/sensemakr + sentometrics: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://sentometrics-research.com/sentometrics/ + seqinr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lbbe-software/seqinr + servr: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/yihui/servr + setRNG: + License: + - AML + Permission to redistribute: true + Retrieved from: http://distr.r-forge.r-project.org/ + sf: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/sf + sfheaders: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dcooley/sfheaders + sfsmisc: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/mmaechler/sfsmisc + shadowtext: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/GuangchuangYu/shadowtext + shape: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shape + shapefiles: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=shapefiles + shinycssloaders: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/daattali/shinycssloaders + shinydashboard: + License: + - Sendmail + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shinydashboard + shinyjs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://deanattali.com/shinyjs/ + shinystan: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://mc-stan.org/shinystan/ + shinythemes: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/shinythemes + signal: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://signal.R-forge.R-project.org + simex: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/wolfganglederer/simex + slam: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=slam + slider: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/slider + sm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=sm + smoof: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jakobbossek/smoof + smoother: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=smoother + sn: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://azzalini.stat.unipd.it/SN/ + sna: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://statnet.org + snow: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=snow + snowfall: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=snowfall + solrium: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/solriumdevel + som: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=som + soundecology: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ljvillanueva/soundecology + sp: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/edzer/sp + spData: + License: + - CC0-1.0 + Permission to redistribute: true + Retrieved from: https://jakubnowosad.com/spData/ + spThin: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mlammens/spThin + spaMM: + License: + - CECILL-2.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + spaa: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/helixcn/spaa + spam: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://www.math.uzh.ch/pages/spam/ + spatial: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stats.ox.ac.uk/pub/MASS4/ + spatstat: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.core: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.data: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.explore: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.geom: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.linnet: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.model: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.random: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.sparse: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spatstat.utils: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://spatstat.org/ + spdep: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/spdep + splitstackshape: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/mrdwab/splitstackshape + spls: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=spls + spocc: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/spoccdevel + stabledist: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://r-forge.r-project.org/scm/viewvc.php/pkg/stabledist/?root=rmetrics + stabs: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hofnerb/stabs + stargazer: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=stargazer + stars: + License: + - Apache-1.1 + Permission to redistribute: true + Retrieved from: https://github.com/r-spatial/stars + startupmsg: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=startupmsg + statmod: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=statmod + statnet: + License: + - AML + Permission to redistribute: true + Retrieved from: http://statnet.org + statnet.common: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + stdReg: + License: + - LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/web/packages/stdReg/index.html + stopwords: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/quanteda/stopwords + stringdist: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/markvanderloo/stringdist + stringmagic: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/lrberge/stringmagic + strucchange: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=strucchange + styler: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/styler + subplex: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/kingaa/subplex + survey: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://r-survey.r-forge.r-project.org/survey/ + survival: + License: + - SSPL-1.0 + Permission to redistribute: true + Retrieved from: https://github.com/therneau/survival + survivalROC: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=survivalROC + svUnit: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/SciViews/svUnit + svd: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/asl/svd + svglite: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/svglite + swagger: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rstudio/swagger + symmoments: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=symmoments + tableone: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/kaz-yos/tableone + tabletools: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://cran.r-project.org/package=tabletools + tau: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tau + taxize: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/taxize/ (website) + tcltk2: + License: + - AML + Permission to redistribute: true + Retrieved from: http://www.sciviews.org/SciViews-R + tclust: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/valentint/tclust + tensor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tensor + tensorA: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.stat.boogaart.de/tensorA/ + tergm: + License: + - AML + Permission to redistribute: true + Retrieved from: https://statnet.org + terra: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/rspatial/terra + testit: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/yihui/testit + textcat: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=textcat + textplot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/textplot + threejs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bwlewis/rthreejs + tictoc: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/jabiru/tictoc + tidybayes: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/mjskay/tidybayes + tidygraph: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/tidygraph + tidyr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tidyr + tidyselect: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/tidyselect + tidytext: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/juliasilge/tidytext + tidytree: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://www.amazon.com/Integration-Manipulation-Visualization-Phylogenetic-Computational-ebook/dp/B0B5NLZR1Z/ + tidyverse: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/tidyverse + tiff: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.rforge.net/tiff/ + timeDate: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/timeDateDoc + timechange: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/vspinu/timechange + timereg: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/scheike/timereg + tkrplot: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tkrplot + tm: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tm.r-forge.r-project.org/ + tmap: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-tmap/tmap + tmaptools: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-tmap/tmaptools + tmle: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=tmle + tmvnsim: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.r-project.org + tmvtnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://www.r-project.org + tokenizers: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/tokenizers + topicmodels: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=topicmodels + tree: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tree + triebeard: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/triebeard + trimcluster: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.homepages.ucl.ac.uk/~ucakche/ + tripack: + License: + - MIT-CMU + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tripack + truncnorm: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/olafmersmann/truncnorm + trust: + License: + - MIT + Permission to redistribute: true + Retrieved from: http://www.stat.umn.edu/geyer/trust/ + tseries: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tseries + tseriesChaos: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tseriesChaos + tsna: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: http://statnet.org/ + tsne: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jdonaldson/rtsne + tuneR: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://tuner.R-forge.R-project.org + twang: + License: + - AML + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=twang + tweedie: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=tweedie + tweenr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/thomasp85/tweenr + tzdb: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/r-lib/tzdb + ucminf: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/hdakpo/ucminf + udpipe: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/udpipe + umap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tkonopka/umap + unbalanced: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=unbalanced + unikn: + License: + - CC-BY-SA-4.0 + Permission to redistribute: true + Retrieved from: https://CRAN.R-project.org/package=unikn + uniqueAtomMat: + License: unknown + Permission to redistribute: false + Retrieved from: https://github.com/gitlongor/uniqueAtomMat + units: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/r-quantities/units + unmarked: + License: + - CNRI-Python-GPL-Compatible + Permission to redistribute: true + Retrieved from: https://github.com/biodiverse/unmarked + urca: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=urca + urltools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Ironholds/urltools + uroot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/geobosh/uroot + uuid: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://www.rforge.net/uuid + varhandle: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://codeberg.org/mehrad/varhandle + vcd: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=vcd + vcfR: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/knausb/vcfR + vegan: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/vegandevs/vegan + vioplot: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/TomKellyGenetics/vioplot + vipor: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=vipor + viridis: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sjmgarnier/viridis + viridisLite: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sjmgarnier/viridisLite + visNetwork: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/datastorm-open/visNetwork + visdat: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/visdat + vroom: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tidyverse/vroom + warp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/DavisVaughan/warp + waveslim: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://waveslim.blogspot.com + wdm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tnagler/wdm-r + webshot: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/wch/webshot + webutils: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://jeroen.r-universe.dev/webutils + weights: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=weights + wellknown: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/wellknown + widgetframe: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/bhaskarvk/widgetframe + wikitaxa: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ropensci/wikitaxa + wk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/paleolimbot/wk + word2vec: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/bnosac/word2vec + wordcloud: + License: + - LGPL-2.1 + Permission to redistribute: true + Retrieved from: http://blog.fellstat.com/?cat=11 http://www.fellstat.com + worrms: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://docs.ropensci.org/worrms/ + writexl: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: 'https://ropensci.r-universe.dev/writexl + + https://docs.ropensci.org/writexl/' + xgboost: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dmlc/xgboost + xlsx: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/colearendt/xlsx + xlsxjars: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://packages.ecosyste.ms/api/v1/registries/cran.r-project.org/lookup?name=xlsxjars + xts: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/joshuaulrich/xts + yaImpute: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/jeffreyevans/yaImpute + yulab.utils: + License: + - Artistic-2.0 + Permission to redistribute: true + Retrieved from: https://yulab-smu.top/ + zeallot: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/nteetor/zeallot + zoo: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://zoo.R-Forge.R-project.org/ +ReFrame: + 4.3.3: + pip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pip + reframe: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bnmnetp/reframe + wheel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/wheel + 4.6.2: + pip: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pip + reframe: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/bnmnetp/reframe + setuptools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools + wheel: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/wheel +Ruby: + 3.2.2: + activesupport: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/activesupport + addressable: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/debrouwere/python-addressable + arr-pm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/arr-pm + backports: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/brandon-rhodes/backports + bundler: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/bundler + cabin: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/scipp-atlas/cabin + childprocess: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/childprocess + clamp: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: null + concurrent-ruby: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/concurrent-ruby + connection_pool: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/zhouyl/ConnectionPool + diff-lcs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/diff-lcs + ethon: + License: + - AGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/vasusen-code/ethon + faraday: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/FaradayRF/Faraday-Software + faraday-net_http: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/faraday-net_http + faraday_middleware: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/faraday_middleware + ffi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/ ffi + gh: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/danielwhatmuff/gh + highline: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/highline + i18n: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://bitbucket.org/antocuni/i18n + json: + License: + - Ruby + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/json + launchy: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/launchy + minitest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jichen3000/minitest + multi_json: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/multi_json + multipart-post: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/multipart-post + mustermann: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/mustermann + net-http-persistent: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/net-http-persistent + net-http-pipeline: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/net-http-pipeline + public_suffix: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/public_suffix + pusher-client: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/pusher-client + rack: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/rack + rack-protection: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/rack-protection + rack-test: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/rack-test + rspec: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/liuyenting/rspec + rspec-core: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/rspec-core + rspec-expectations: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/rspec-expectations + rspec-mocks: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/rspec-mocks + rspec-support: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/rspec-support + ruby2_keywords: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/ruby2_keywords + sinatra: + License: + - GPL-2.0 + Permission to redistribute: true + Retrieved from: null + thread_safe: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/thread_safe + tilt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Transparency-Information-Language/python-tilt + typhoeus: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/typhoeus + tzinfo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/tzinfo + websocket: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/websocket + zeitwerk: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/zeitwerk +SQLAlchemy: + 2.0.25: + SQLAlchemy: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/SQLAlchemy + alembic: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sqlalchemy/alembic + async-timeout: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/aio-libs/async-timeout + asyncpg: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/MagicStack/asyncpg + greenlet: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-greenlet/greenlet +SciPy-bundle: + '2023.02': + Bottleneck: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pydata/bottleneck + beniget: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/beniget + deap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rodrigo-arenas/Sklearn-genetic-opt, + gast: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/gast + mpmath: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fredrik-johansson/mpmath + numexpr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydata/numexpr + numpy: + License: + - BSD-3-Clause + - MIT + - Zlib + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/numpy/numpy + pandas: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pandas-dev/pandas + ply: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ply + pythran: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/pythran + scipy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/scipy/scipy + '2023.07': + Bottleneck: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pydata/bottleneck + beniget: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/beniget + deap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rodrigo-arenas/Sklearn-genetic-opt, + gast: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/gast + mpmath: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fredrik-johansson/mpmath + numexpr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydata/numexpr + numpy: + License: + - BSD-3-Clause + - MIT + - Zlib + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/numpy/numpy + pandas: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pandas-dev/pandas + ply: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ply + pythran: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/pythran + scipy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/scipy/scipy + tzdata: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/tzdata + versioneer: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/python-versioneer/python-versioneer + '2023.11': + Bottleneck: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pydata/bottleneck + beniget: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/beniget + deap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rodrigo-arenas/Sklearn-genetic-opt, + gast: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/gast + mpmath: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/fredrik-johansson/mpmath + numexpr: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydata/numexpr + numpy: + License: + - BSD-3-Clause + - MIT + - Zlib + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/numpy/numpy + pandas: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pandas-dev/pandas + ply: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ply + pythran: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/serge-sans-paille/pythran + scipy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/scipy/scipy + tzdata: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/tzdata + versioneer: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/python-versioneer/python-versioneer +SciTools-Iris: + 3.9.0: + antlr4-python3-runtime: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/antlr3-python-runtime + cf-units: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/SciTools/cf-units + scitools_iris: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/scitools-iris +SlurmViewer: + 1.0.1: + asyncssh: + License: + - EPL-2.0 + - GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://github.com/ronf/asyncssh + plotext: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/piccolomo/plotext + slurm-viewer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://gitlab.com/lkeb/slurm_viewer + textual: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Textualize/textual + textual-plotext: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Textualize/textual-plotext +TensorFlow: + 2.13.0: + Markdown: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Markdown/ + TensorFlow: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/tensorflow/ + Werkzeug: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Werkzeug/ + absl-py: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/abseil/abseil-py + astor: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/berkerpeksag/astor + astunparse: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/simonpercivall/astunparse + cachetools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tkem/cachetools + google-auth: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/googleapis/google-auth-library-python + google-auth-oauthlib: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib + google-pasta: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/google/pasta + grpcio: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grpc/grpc + gviz-api: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/google/google-visualization-python + keras: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/keras-team/keras + oauthlib: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/oauthlib/oauthlib + opt-einsum: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dgasmith/opt_einsum + portpicker: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/google/python_portpicker + pyasn1-modules: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pyasn1/pyasn1-modules + requests-oauthlib: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/requests/requests-oauthlib + rsa: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/sybrenstuvel/python-rsa + tblib: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ionelmc/python-tblib + tensorboard: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/tensorflow/tensorboard + tensorboard-data-server: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/tensorflow/tensorboard + tensorboard-plugin-profile: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/openxla/xprof + tensorboard-plugin-wit: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pair-code/what-if-tool + tensorflow-estimator: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/tensorflow/estimator + termcolor: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/termcolor/termcolor + wrapt: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/GrahamDumpleton/wrapt +Tombo: + 1.5.1: + mappy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/lh3/minimap2 + ont-tombo: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nanoporetech/tombo + pyfaidx: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mdshw5/pyfaidx +WhatsHap: + '2.1': + WhatsHap: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/whatshap + pulp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/coin-or/pulp + xopen: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pycompression/xopen + '2.2': + PuLP: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/PuLP + whatshap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/whatshap/whatshap + xopen: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pycompression/xopen +XML-LibXML: + '2.0208': + Alien::Base: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Alien::Base + Alien::Build::Plugin::Download::GitLab: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Alien::Build::Plugin::Download::GitLab + Alien::Libxml2: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Alien::Libxml2 + File::chdir: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/File::chdir + XML::LibXML: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::LibXML + '2.0209': + Alien::Base: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Alien::Base + Alien::Build::Plugin::Download::GitLab: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Alien::Build::Plugin::Download::GitLab + Alien::Libxml2: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Alien::Libxml2 + File::chdir: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/File::chdir + XML::LibXML: + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::LibXML +Z3: + 4.12.2: + z3-solver: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/Z3Prover/z3 +astropy: + 7.0.0: + astropy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/astropy + astropy-iers-data: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/astropy-iers-data + colorlog: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/borntyping/python-colorlog + extension-helpers: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/extension-helpers + pyerfa: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/liberfa/pyerfa +astropy-testing: + 7.0.0: + pytest-arraydiff: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/pytest-arraydiff + pytest-astropy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/pytest-astropy + pytest-astropy-header: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/pytest-astropy-header + pytest-cov: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-cov + pytest-doctestplus: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/scientific-python/pytest-doctestplus + pytest-filter-subpackage: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/pytest-filter-subpackage + pytest-mock: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-mock + pytest-remotedata: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/astropy/pytest-remotedata +basemap: + 1.3.9: + basemap: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/matplotlib/basemap + basemap_data: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://pypi.org/project/basemap-data + pyshp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/GeospatialPython/pyshp +bokeh: + 3.2.1: + bokeh: + License: + - BSD + Permission to redistribute: true + Retrieved from: https://github.com/bokeh/bokeh + contourpy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/contourpy/contourpy + tornado: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/tornadoweb/tornado + xyzservices: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/geopandas/xyzservices + 3.2.2: + bokeh: + License: + - BSD + Permission to redistribute: true + Retrieved from: https://github.com/bokeh/bokeh + contourpy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/contourpy/contourpy + xyzservices: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/geopandas/xyzservices +cffi: + 1.15.1: + cffi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-cffi/cffi + pycparser: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/eliben/pycparser +cooler: + 0.10.2: + asciitree: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mbr/asciitree + cooler: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/open2c/cooler + cytoolz: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pytoolz/cytoolz + toolz: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pytoolz/toolz +coverage: + 7.4.4: + coverage: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nedbat/coveragepy +crb-blast: + 0.6.9: + bindeps: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/cboursnell/bindeps + bio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ialbert/bio + crb-blast: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/cboursnell/crb-blast + facade: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/oakfang/facade + fixwhich: + License: MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/fixwhich + pathname2: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/pathname2 + threach: + License: unknown + Permission to redistribute: false + Retrieved from: https://rubygems.org/gems/threach + trollop: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://bitbucket.org/btubbs/trollop +dask: + 2023.7.1: + HeapDict: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/HeapDict/ + dask: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/dask + dask-jobqueue: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/dask-jobqueue + dask-mpi: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/dask-mpi + distributed: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/distributed + docrep: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Chilipp/docrep + locket: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mwilliamson/locket.py + partd: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/partd + tblib: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ionelmc/python-tblib + toolz: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pytoolz/toolz + versioneer: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/python-versioneer/python-versioneer + zict: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/zict/ + 2023.9.2: + HeapDict: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/HeapDict/ + dask: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/dask + dask-jobqueue: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/dask-jobqueue + dask-mpi: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/dask-mpi + distributed: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/distributed + docrep: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/Chilipp/docrep + locket: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mwilliamson/locket.py + partd: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/dask/partd + tblib: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ionelmc/python-tblib + toolz: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pytoolz/toolz + zict: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/zict/ +flit: + 3.9.0: + certifi: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/certifi/python-certifi + charset-normalizer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jawah/charset_normalizer + docutils: + License: + - BSD-3-Clause + - GPL-2.0+ + - PSF-2.0 + - Unlicense + Permission to redistribute: true + Retrieved from: https://pypi.org/project/docutils/ + flit: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/flit + flit_scm: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/flit-scm/ + idna: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kjd/idna + packaging: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/packaging + requests: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/requests + setuptools_scm: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/setuptools-scm/ + tomli_w: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/tomli-w/ + typing-extensions: + License: + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/python/typing_extensions + urllib3: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/urllib3/urllib3 +geopandas: + 0.14.2: + geopandas: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/geopandas/geopandas + mapclassify: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pysal/mapclassify +grpcio: + 1.57.0: + grpcio: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/grpc/grpc +h5netcdf: + 1.2.0: + h5netcdf: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/h5netcdf/h5netcdf +hatch-jupyter-builder: + 0.9.1: + hatch_jupyter_builder: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyterlab/hatch-jupyter-builder + hatch_nodejs_version: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/agoose77/hatch-nodejs-version +hatchling: + 1.18.0: + editables: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pfmoore/editables + hatch-requirements-txt: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/repo-helper/hatch-requirements-txt + hatch_fancy_pypi_readme: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/hatch-fancy-pypi-readme/ + hatch_vcs: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/hatch-vcs/ + hatchling: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/hatch + pathspec: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/cpburnz/python-pathspec + pluggy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pluggy + trove_classifiers: + License: Apache-1.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/trove-classifiers/ +ipympl: + 0.9.3: + ipympl: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/matplotlib/ipympl +jedi: + 0.19.0: + jedi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/davidhalter/jedi + parso: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/davidhalter/parso + 0.19.1: + jedi: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/davidhalter/jedi + parso: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/davidhalter/parso +jupyter-server: + 2.7.2: + Send2Trash: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/arsenetar/send2trash + anyio: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/agronholm/anyio + argon2-cffi-bindings: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/hynek/argon2-cffi-bindings + argon2_cffi: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/argon2-cffi + arrow: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/arrow-py/arrow + bleach: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/mozilla/bleach + comm: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/comm + debugpy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/microsoft/debugpy + defusedxml: + License: + - Python-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/tiran/defusedxml + deprecation: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briancurtin/deprecation + fastjsonschema: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/horejsek/python-fastjsonschema + hatch_jupyter_builder: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyterlab/hatch-jupyter-builder + hatch_nodejs_version: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/hatch-nodejs-version + ipykernel: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/ipykernel + ipython_genutils: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ipython_genutils + ipywidgets: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter-widgets/ipywidgets + jsonschema: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/jsonschema + jsonschema_specifications: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/jsonschema-specifications + jupyter_client: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter_client + jupyter_core: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter_core + jupyter_events: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter_events + jupyter_packaging: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter-packaging + jupyter_server: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/jupyter-server + jupyter_server_terminals: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/jupyter-server-terminals + jupyterlab_pygments: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyterlab/jupyterlab_pygments + jupyterlab_widgets: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/jupyterlab-widgets + mistune: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/lepture/mistune + nbclient: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/nbclient + nbconvert: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/nbconvert + nbformat: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/nbformat + nest_asyncio: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/nest-asyncio + notebook_shim: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/notebook-shim + overrides: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/mkorpela/overrides + pandocfilters: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jgm/pandocfilters + prometheus_client: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/prometheus-client + python-json-logger: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/nhairs/python-json-logger + referencing: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/referencing + rfc3339_validator: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/rfc3339-validator + rfc3986_validator: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/rfc3339-validator + rpds_py: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/crate-py/rpds + sniffio: + License: + - MIT + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python-trio/sniffio + terminado: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/terminado + tinycss2: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/Kozea/tinycss2 + websocket-client: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/websocket-client/websocket-client + widgetsnbextension: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: null +librosa: + 0.10.1: + audioread: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/beetbox/audioread + lazy_loader: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/lazy-loader + librosa: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/librosa/librosa + resampy: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/bmcfee/resampy + soundfile: + License: + - BSD-1-Clause + Permission to redistribute: true + Retrieved from: https://github.com/bastibe/python-soundfile + soxr: + License: + - LGPL-2.1 + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/dofuuz/python-soxr +lit: + 18.1.2: + lit: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/llvm/llvm-project + 18.1.7: + lit: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/llvm/llvm-project + pexpect: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/pexpect + ptyprocess: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/ptyprocess +matplotlib: + 3.7.0: + Cycler: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/cycler/ + contourpy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/contourpy/contourpy + fonttools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/fonttools/fonttools + kiwisolver: + License: + - BSD + Permission to redistribute: true + Retrieved from: https://github.com/nucleic/kiwi + matplotlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/matplotlib/matplotlib + 3.7.2: + Cycler: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/cycler/ + contourpy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/contourpy/contourpy + fonttools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/fonttools/fonttools + kiwisolver: + License: + - BSD + Permission to redistribute: true + Retrieved from: https://github.com/nucleic/kiwi + matplotlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/matplotlib/matplotlib + 3.8.2: + Cycler: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/cycler/ + contourpy: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/contourpy/contourpy + fonttools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/fonttools/fonttools + kiwisolver: + License: + - BSD + Permission to redistribute: true + Retrieved from: https://github.com/nucleic/kiwi + matplotlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/matplotlib/matplotlib +meson-python: + 0.11.0: + meson-python: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mesonbuild/meson-python + pyproject-metadata: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pyproject-metadata + 0.13.2: + meson-python: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mesonbuild/meson-python + pyproject-metadata: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pyproject-metadata + 0.15.0: + meson-python: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mesonbuild/meson-python + pyproject-metadata: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pyproject-metadata +mpi4py: + 3.1.4: + mpi4py: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mpi4py/mpi4py + 3.1.5: + mpi4py: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mpi4py/mpi4py +mpl-ascii: + 0.10.0: + mpl-ascii: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/chriscave/mpl_ascii +netcdf4-python: + 1.6.3: + cftime: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/Unidata/cftime + netcdf4-python: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/Unidata/netcdf4-python + 1.6.4: + cftime: + License: + - AML + Permission to redistribute: true + Retrieved from: https://github.com/Unidata/cftime + netcdf4-python: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/Unidata/netcdf4-python +numba: + 0.58.1: + llvmlite: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/numba/llvmlite + numba: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/numba +orjson: + 3.9.15: + mypy: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python/mypy + mypy_extensions: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/mypy-extensions + orjson: + License: + - Apache-2.0 + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/ijl/orjson + ruff: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/astral-sh/ruff +poetry: + 1.5.1: + SecretStorage: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/SecretStorage/json + attrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-attrs/attrs + build: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/build + cachecontrol: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/cachecontrol + certifi: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/certifi/python-certifi + charset-normalizer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jawah/charset_normalizer + cleo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/cleo + crashtest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/crashtest + dulwich: + License: + - MulanPSL-2.0 + - GPL-2.0+ + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dulwich/dulwich + html5lib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/html5lib/html5lib-python + idna: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kjd/idna + importlib-metadata: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_metadata + installer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/installer + jaraco.classes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/jaraco.classes + jeepney: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/jeepney + jsonschema: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/jsonschema + keyring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyring + lockfile: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/lockfile/ + more-itertools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/more-itertools/more-itertools + msgpack: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/msgpack/msgpack-python + pexpect: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/pexpect + pkginfo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pkginfo/ + platformdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/platformdirs + poetry: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/poetry + poetry_core: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/poetry-core/ + poetry_plugin_export: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/poetry-plugin-export/ + ptyprocess: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/ptyprocess + pyproject_hooks: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pyproject-hooks/ + pyrsistent: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tobgu/pyrsistent + rapidfuzz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rapidfuzz/RapidFuzz + requests: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/requests + requests-toolbelt: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/requests/toolbelt + shellingham: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/sarugaku/shellingham + six: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/benjaminp/six + tomlkit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/tomlkit + urllib3: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/urllib3/urllib3 + webencodings: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/SimonSapin/python-webencodings + zipp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/zipp + 1.6.1: + SecretStorage: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/pypi/SecretStorage/json + attrs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-attrs/attrs + build: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/build + cachecontrol: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/cachecontrol + certifi: + License: + - MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/certifi/python-certifi + charset-normalizer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jawah/charset_normalizer + cleo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/cleo + crashtest: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/crashtest + dulwich: + License: + - MulanPSL-2.0 + - GPL-2.0+ + - GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/dulwich/dulwich + html5lib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/html5lib/html5lib-python + idna: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/kjd/idna + importlib-metadata: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_metadata + installer: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/installer + jaraco.classes: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/jaraco.classes + jeepney: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://gitlab.com/takluyver/jeepney + jsonschema: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-jsonschema/jsonschema + keyring: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/keyring + lockfile: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/lockfile/ + more-itertools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/more-itertools/more-itertools + msgpack: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/msgpack/msgpack-python + pexpect: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/pexpect + pkginfo: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pkginfo + platformdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/platformdirs + poetry: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/python-poetry/poetry + poetry_core: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/poetry-core/ + poetry_plugin_export: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/poetry-plugin-export/ + ptyprocess: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/pexpect/ptyprocess + pyproject_hooks: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pyproject-hooks/ + pyrsistent: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tobgu/pyrsistent + rapidfuzz: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/rapidfuzz/RapidFuzz + requests: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/psf/requests + requests-toolbelt: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/requests/toolbelt + shellingham: + License: + - ISC + Permission to redistribute: true + Retrieved from: https://github.com/sarugaku/shellingham + six: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/benjaminp/six + tomlkit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/sdispater/tomlkit + urllib3: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/urllib3/urllib3 + webencodings: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/SimonSapin/python-webencodings + zipp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/zipp +pre-commit: + 3.7.0: + cfgv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/asottile/cfgv + identify: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pre-commit/identify + nodeenv: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ekalinin/nodeenv + pre-commit: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pre-commit/pre-commit +psycopg2: + 2.9.9: + psycopg2: + License: + - BSD-3-Clause-Attribution + Permission to redistribute: true + Retrieved from: https://github.com/psycopg/psycopg2 +pyMBE: + 0.8.0: + Pint-Pandas: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/Pint-Pandas + biopandas: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/rasbt/biopandas + looseversion: + License: + - Python-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/effigies/looseversion + mmtf-python: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rcsb/mmtf-python + pyMBE: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/pyMBE-dev/pyMBE/blob/main/LICENSE.txt +pydantic: + 2.7.4: + annotated_types: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/annotated-types/annotated-types + pydantic: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydantic/pydantic + pydantic_core: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/pydantic/pydantic-core +pyfaidx: + 0.8.1.1: + importlib_metadata: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/importlib_metadata + pyfaidx: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/mdshw5/pyfaidx + zipp: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/jaraco/zipp +pystencils: + 1.3.4: + pystencils: + License: + - AGPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://pypi.org/project/pystencils +python-casacore: + 3.5.2: + python-casacore: + License: + - LGPL-3.0-only + Permission to redistribute: true + Retrieved from: https://github.com/casacore/python-casacore + setuptools: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/setuptools +python-xxhash: + 3.4.1: + xxhash: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ifduyue/python-xxhash +rpy2: + 3.5.15: + coverage: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nedbat/coveragepy + pytest-cov: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-cov + rpy2: + License: + - GPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/rpy2/doc.html + tzlocal: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/regebro/tzlocal +ruamel.yaml: + 0.17.32: + configobj: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/DiffSK/configobj + lz4: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/python-lz4/python-lz4 + ruamel.yaml: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/indygreg/PyOxidizer + ruamel.yaml.base: + License: + - CERN-OHL-P-2.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ruamel.yaml.base + ruamel.yaml.clib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ruamel.yaml.clib + ruamel.yaml.cmd: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ruamel.yaml.cmd + ruamel.yaml.convert: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://bitbucket.org/ruamel/yaml.convert +scikit-build: + 0.17.6: + distro: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/python-distro/distro + packaging: + License: + - Apache-2.0 + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pypa/packaging + scikit_build: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/scikit-build/ +scikit-build-core: + 0.9.3: + pyproject-metadata: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/pyproject-metadata + scikit_build_core: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/scikit-build/scikit-build-core +scikit-learn: + 1.3.1: + scikit-learn: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/scikit-learn/scikit-learn + sklearn: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/sklearn/ + 1.4.0: + scikit-learn: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/scikit-learn/scikit-learn + sklearn: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/sklearn/ +setuptools-rust: + 1.6.0: + semantic_version: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/semantic-version/ + setuptools-rust: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PyO3/setuptools-rust + typing-extensions: + License: + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/python/typing_extensions + 1.8.0: + semantic_version: + License: BSD + Permission to redistribute: true + Retrieved from: https://pypi.org/project/semantic-version/ + setuptools-rust: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/PyO3/setuptools-rust + typing-extensions: + License: + - GPL-1.0+ + Permission to redistribute: true + Retrieved from: https://github.com/python/typing_extensions +snakemake: + 8.4.2: + ConfigArgParse: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/ConfigArgParse/ + argparse-dataclass: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/mivade/argparse_dataclass + conda-inject: + License: + - unknown + Permission to redistribute: false + Retrieved from: https://pypi.org/project/conda-inject/ + connection-pool: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/connection_pool/ + datrie: + License: + - LGPL-2.0+ + Permission to redistribute: true + Retrieved from: https://github.com/kmike/datrie + dpath: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/dpath-maintainers/dpath-python + fastjsonschema: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/horejsek/python-fastjsonschema + humanfriendly: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/xolox/python-humanfriendly + immutables: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/MagicStack/immutables + jupyter-core: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/jupyter_core + nbformat: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/nbformat + plac: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ialbert/plac + reretry: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/leshchenko1979/reretry + smart-open: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/piskvorky/smart_open + snakemake: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake + snakemake-executor-plugin-cluster-generic: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake-plugin-catalog + snakemake-executor-plugin-cluster-sync: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake-plugin-catalog + snakemake-executor-plugin-flux: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake-plugin-catalog + snakemake-executor-plugin-slurm: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake-plugin-catalog + snakemake-executor-plugin-slurm-jobstep: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake-plugin-catalog + snakemake-interface-common: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://anaconda.org/bioconda/snakemake-interface-common + snakemake-interface-executor-plugins: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/poetry-snakemake-plugin + snakemake-interface-storage-plugins: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake-interface-storage-plugins + stopit: + License: + - GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/glenfant/stopit + throttler: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/uburuntu/throttler + toposort: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/ericvsmith/toposort + yte: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/yte-template-engine/yte +statsmodels: + 0.14.1: + patsy: + License: + - BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pydata/patsy + statsmodels: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/statsmodels/statsmodels +virtualenv: + 20.23.1: + distlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pypa/distlib + filelock: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/py-filelock + platformdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/platformdirs + virtualenv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/virtualenv + 20.24.6: + distlib: + License: + - PSF-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pypa/distlib + filelock: + License: + - Unlicense + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/py-filelock + platformdirs: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/tox-dev/platformdirs + virtualenv: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/virtualenv +wradlib: + 2.0.3: + cmweather: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/openradar/cmweather + deprecation: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/briancurtin/deprecation + lat_lon_parser: + License: CC0-1.0 + Permission to redistribute: true + Retrieved from: https://pypi.org/project/lat-lon-parser/ + wradlib: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/wradlib/wradlib + xarray-datatree: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/xarray-contrib/datatree + xmltodict: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/martinblech/xmltodict + xradar: + License: + - MIT + Permission to redistribute: true + Retrieved from: https://github.com/openradar/xradar +wrapt: + 1.15.0: + wrapt: + License: + - BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/GrahamDumpleton/wrapt +xarray: + 2023.9.0: + xarray: + License: + - Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pydata/xarray diff --git a/licenses/licenses.yml b/licenses/licenses.yml new file mode 100644 index 0000000000..76626b1e25 --- /dev/null +++ b/licenses/licenses.yml @@ -0,0 +1,2365 @@ +ALL: + 0.9.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing/-/raw/master/LICENSE +AOFlagger: + 3.4.0: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.com/repositories/aroffringa%2Faoflagger +ASE: + 3.22.1: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://wiki.fysik.dtu.dk/ase +ATK: + 2.38.0: + License: LGPL-2.0 + Permission to redistribute: true + Retrieved from: https://developer.gnome.org/atk/ +Abseil: + '20240116.1': + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://abseil.io/ +Archive-Zip: + '1.68': + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/Archive::Zip +Armadillo: + 12.8.0: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://arma.sourceforge.net/ +Arrow: + 16.1.0: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://arrow.apache.org +BCFtools: + '1.18': + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/samtools/bcftools/raw/develop/LICENSE +BLAST+: + 2.14.1: + License: Public Domain + Permission to redistribute: true + Retrieved from: https://blast.ncbi.nlm.nih.gov/ +BLIS: + 0.9.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/flame/blis/raw/master/LICENSE +BWA: + 0.7.18: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lh3%2Fbwa +BamTools: + 2.5.2: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pezmaster31%2Fbamtools +Bazel: + 6.3.1: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bazelbuild%2Fbazel +BeautifulSoup: + 4.12.2: + License: mit + Permission to redistribute: true + Retrieved from: https://www.crummy.com/software/BeautifulSoup +Bio-DB-HTS: + '3.01': + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://metacpan.org/release/AVULLO/Bio-DB-HTS-3.01/source/LICENSE +BioPerl: + 1.7.8: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/old-licenses/fdl-1.2.html +Biopython: + '1.83': + License: other + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/biopython/DIST/refs/heads/gh-pages/LICENSE +Bison: + 3.8.2: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/licenses.html +Boost: + 1.83.0: + License: BSL-1.0 + Permission to redistribute: true + Retrieved from: https://www.boost.org/users/license.html +Boost.MPI: + 1.83.0: + License: BSL-1.0 + Permission to redistribute: true + Retrieved from: https://www.boost.org/users/license.html +Boost.Python: + 1.83.0: + License: BSL-1.0 + Permission to redistribute: true + Retrieved from: https://www.boost.org/users/license.html +Bowtie2: + 2.5.1: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://www.boost.org/usershttps://bowtie-bio.sourceforge.net/bowtie2/index.shtml/license.html +Brotli: + 1.1.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fbrotli +Brunsli: + '0.1': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fbrunsli +CD-HIT: + 4.8.1: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: http://weizhong-lab.ucsd.edu/cd-hit/ +CDO: + 2.2.2: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://code.mpimet.mpg.de/projects/cdo +CFITSIO: + 4.3.1: + License: MIT + Permission to redistribute: true + Retrieved from: https://heasarc.gsfc.nasa.gov/fitsio/ +CGAL: + '5.6': + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/CGAL/cgal/refs/heads/master/Installation/LICENSE +CMake: + 3.27.6: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.cmake.org +CP2K: + '2023.1': + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cp2k%2Fcp2k +CUDA: + 12.1.1: + License: Other + Permission to redistribute: false + Retrieved from: https://developer.nvidia.com/cuda-toolkit +CUDA-Samples: + '12.1': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/NVIDIA/cuda-samples +CapnProto: + 1.0.1: + License: MIT + Permission to redistribute: true + Retrieved from: https://capnproto.org +Cartopy: + 0.22.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://scitools.org.uk/cartopy/docs/latest/ +Cassiopeia: + 2.0.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YosefLab%2FCassiopeia +Catch2: + 2.13.9: + License: bsl-1.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/catchorg%2FCatch2 +Cbc: + 2.10.11: + License: clips + Permission to redistribute: true + Retrieved from: https://github.com/coin-or/Cbc/raw/master/LICENSE +Cgl: + 0.60.8: + License: clips + Permission to redistribute: true + Retrieved from: https://github.com/coin-or/Cgl/raw/master/LICENSE +Clp: + 1.17.9: + License: clips + Permission to redistribute: true + Retrieved from: https://github.com/coin-or/Clp/raw/master/LICENSE +CoinUtils: + 2.11.10: + License: clips + Permission to redistribute: true + Retrieved from: https://github.com/coin-or/CoinUtils/raw/master/LICENSE +Critic2: + '1.2': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/aoterodelaroza/critic2/raw/master/LICENSE +CubeLib: + 4.8.2: + License: scalasca-2 + Permission to redistribute: true + Retrieved from: https://www.scalasca.org/software/cube-4.x/download.html +CubeWriter: + 4.8.2: + License: scalasca-2 + Permission to redistribute: true + Retrieved from: https://www.scalasca.org/software/cube-4.x/download.html +Cython: + 3.0.10: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://cython.org/ +DB: + 18.1.40: + License: Sleepycat License + Permission to redistribute: true + Retrieved from: https://www.oracle.com/database/technologies/related/berkeleydb-downloads.html +DB_File: + '1.859': + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/DB_File +DIAMOND: + 2.1.8: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbuchfink%2Fdiamond +DP3: + '6.2': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +DendroPy: + 4.6.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jeetsukumaran/DendroPy +Doxygen: + 1.9.8: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://www.doxygen.org +ELPA: + 2023.05.001: + License: LGPG-3.0 + Permission to redistribute: true + Retrieved from: https://elpa.mpcdf.mpg.de/LICENSING.html +ESPResSo: + 4.2.2: + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: https://creativecommons.org/licenses/by-nc-sa/3.0/ +ETE: + 3.1.3: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/etetoolkit%2Fete +EasyBuild: + 4.9.4: + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://easybuilders.github.io/easybuild +Eigen: + 3.4.0: + License: MPL-2.0 + Permission to redistribute: true + Retrieved from: https://eigen.tuxfamily.org#License +EveryBeam: + 0.6.1: + License: gpl-3.0+ + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.com/repositories/aroffringa%2Fwsclean +Extrae: + 4.2.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tools.bsc.es/extrae +FFTW: + 3.3.10: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.fftw.org/ +FFTW.MPI: + 3.3.10: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.fftw.org +FFmpeg: + '6.0': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.ffmpeg.org/legal.html +FLAC: + 1.4.3: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://xiph.org/flac/ +FLTK: + 1.3.8: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.fltk.org/COPYING.php +FastME: + 2.1.6.3: + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: http://www.atgc-montpellier.fr/fastme/ +Fiona: + 1.9.5: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Toblerity%2FFiona +Flask: + 2.2.3: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pallets%2Fflask +FlexiBLAS: + 3.3.1: + License: bsd-3-clause-open-mpi + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.mpi-magdeburg.mpg.de/repositories/software%2Fflexiblas-release +FragGeneScan: + '1.31': + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/gaberoo/FragGeneScan/master/LICENSE +FreeImage: + 3.18.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: http://freeimage.sourceforge.net/license.html +FriBidi: + 1.0.13: + License: lgpl-2.1 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fribidi%2Ffribidi +GATK: + 4.5.0.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/broadinstitute/gatk/refs/heads/master/LICENSE.TXT +GCC: + 13.2.0: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://gcc.gnu.org/ +GCCcore: + 13.2.0: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://gcc.gnu.org/ +GDAL: + 3.9.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.gdal.org/license.html +GDB: + '13.2': + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/software/gdb +GDRCopy: + '2.4': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NVIDIA%2Fgdrcopy +GEOS: + 3.12.1: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +GL2PS: + 1.4.2: + License: gpl-1.0 + Permission to redistribute: true + Retrieved from: https://www.geuz.org/gl2ps/ +GLPK: + '5.0': + License: GPL-3.0-only + Permission to redistribute: true + Retrieved from: https://www.gnu.org/software/glpk/ +GLib: + 2.78.1: + License: LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://www.gtk.org/ +GMP: + 6.3.0: + License: LGPL-3.0-or-later, GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://gmplib.org/ +GObject-Introspection: + 1.78.1: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +GROMACS: + '2024.4': + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://www.gromacs.org +GSL: + '2.7': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/licenses.html +GST-plugins-base: + 1.24.8: + License: lgpl-2.1 + Permission to redistribute: true + Retrieved from: https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/raw/discontinued-for-monorepo/COPYING +GStreamer: + 1.24.8: + License: lgpl-2.1 + Permission to redistribute: true + Retrieved from: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/raw/main/LICENSE +GTK3: + 3.24.39: + License: lgpl-2.1 + Permission to redistribute: true + Retrieved from: https://developer.gnome.org/gtk3/stable/enum.License.html +Gdk-Pixbuf: + 2.42.10: + License: lgpl-2.1 + Permission to redistribute: true + Retrieved from: https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/raw/master/COPYING +GenomeTools: + 1.6.2: + License: isc + Permission to redistribute: true + Retrieved from: http://genometools.org/license.html +Ghostscript: + 10.02.1: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/agpl-3.0.html +GitPython: + 3.1.40: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/gitpython-developers/GitPython/blob/main/LICENSE +Graphene: + 1.10.8: + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/ebassi/graphene?tab=License-1-ov-file#readme +HDBSCAN: + 0.8.38.post1: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +HDF: + 4.2.16: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.hdfgroup.org/ +HDF5: + 1.14.3: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.hdfgroup.org/ +HMMER: + '3.4': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: http://hmmer.org/license.html +HPL: + '2.3': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.netlib.org/benchmark/hpl/ +HTSlib: + 1.19.1: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/samtools/htslib +HarfBuzz: + 8.2.2: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.freedesktop.org/wiki/Software/HarfBuzz +HepMC3: + 3.2.6: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://gitlab.cern.ch/hepmc/HepMC3 +Highway: + 1.0.4: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fhighway +Hypre: + 2.29.0: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/hypre-space/hypre +ICU: + '74.1': + License: ICU + Permission to redistribute: true + Retrieved from: https://icu.unicode.org +IDG: + 1.2.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +IPython: + 8.17.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/ipython/ipython/blob/main/LICENSE +IQ-TREE: + 2.3.5: + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iqtree%2Fiqtree2 +ISA-L: + 2.30.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/intel/isa-l/blob/master/LICENSE +ISL: + '0.26': + License: MIT + Permission to redistribute: true + Retrieved from: https://libisl.sourceforge.io/user.html#License +ITSTool: + 2.0.7: + License: GPL-3.0+ + Permission to redistribute: true + Retrieved from: http://itstool.org/ +ImageMagick: + 7.1.1: + License: ImageMagick + Permission to redistribute: true + Retrieved from: https://www.imagemagick.org/ +Imath: + 3.1.9: + License: BSC-3-Clause + Permission to redistribute: true + Retrieved from: https://imath.readthedocs.io/en/latest/license.html#license +JasPer: + 4.0.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.ece.uvic.ca/~frodo/jasper/ +Java: + 17.0.6: + License: gplv2+ce + Permission to redistribute: true + Retrieved from: https://openjdk.org/legal/gplv2+ce.html +JsonCpp: + 1.9.5: + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/open-source-parsers/jsoncpp/blob/master/LICENSE +Judy: + 1.0.5: + License: LGPL-2.0-only + Permission to redistribute: true + Retrieved from: http://judy.sourceforge.net/ +JupyterLab: + 4.0.5: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/jupyterlab/jupyterlab/refs/heads/main/LICENSE +JupyterNotebook: + 7.0.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter/notebook/blob/main/LICENSE +KaHIP: + '3.16': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KaHIP%2FKaMinPar +KronaTools: + 2.8.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/marbl/Krona/blob/master/LICENSE.txt +LAME: + '3.100': + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: http://lame.sourceforge.net/ +LAMMPS: + 29Aug2024: + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lammps%2Flammps +LERC: + 4.0.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Esri%2Flerc +LHAPDF: + 6.5.4: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://lhapdf.hepforge.org/ +LLVM: + 16.0.6: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://llvm.org/ +LMDB: + 0.9.31: + License: OpenLDAP Public Licese + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/LMDB/lmdb/refs/heads/mdb.master/libraries/liblmdb/LICENSE +LRBinner: + '0.1': + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anuradhawick%2FLRBinner +LSD2: + 2.4.1: + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tothuhien%2Flsd2 +LZO: + '2.10': + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://www.oberhumer.com/opensource/gpl.html +LibTIFF: + 4.6.0: + License: libtiff + Permission to redistribute: true + Retrieved from: https://libtiff.gitlab.io/libtiff/project/license.html +Libint: + 2.7.2: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/evaleev/libint/raw/master/LICENSE +LightGBM: + 4.5.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +LittleCMS: + '2.15': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devcows%2Fhugo-universal-theme +LoopTools: + '2.15': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: http://gnu.org/licenses/lgpl.html +Lua: + 5.4.6: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.lua.org/ +MAFFT: + '7.520': + License: Other + Permission to redistribute: true + Retrieved from: https://mafft.cbrc.jp/alignment/software/license66.txt +MBX: + 1.1.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/paesanilab/MBX +MCL: + '22.282': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://micans.org/mcl/ +MDAnalysis: + 2.4.2: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/gpl-2.0.html +MDI: + 1.4.29: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MolSSI-MDI%2FMDI_Library +METIS: + 5.1.0: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: http://glaros.dtc.umn.edu/gkhome/metis/metis/overview +MMseqs2: + '14': + License: mit + Permission to redistribute: true + Retrieved from: https://mmseqs.com/soedinglab/MMseqs2/blob/master/LICENSE.md +MODFLOW: + 6.4.4: + License: Public Domain + Permission to redistribute: true + Retrieved from: https://www.usgs.gov/software/modflow-6-usgs-modular-hydrologic-model +MPC: + 1.3.1: + License: LGPL-3.0-or-later + Permission to redistribute: true + Retrieved from: http://www.multiprecision.org/ +MPFR: + 4.2.1: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/lgpl-3.0.html +MUMPS: + 5.6.1: + License: CeCILL-C + Permission to redistribute: true + Retrieved from: http://mumps.enseeiht.fr/ +Mako: + 1.2.4: + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: http://www.opensource.org/licenses/mit-license.php +MariaDB: + 11.6.0: + License: GPL-2.0-only + Permission to redistribute: true + Retrieved from: https://mariadb.com/kb/en/mariadb-license/ +Mash: + '2.3': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +Mesa: + 23.1.9: + License: mit + Permission to redistribute: true + Retrieved from: https://docs.mesa3d.org/license.html +Meson: + 1.3.1: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://mesonbuild.com +MetaEuk: + '6': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/soedinglab/MetaEuk +MetalWalls: + 21.06.1: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.com/repositories/ampere2%2Fmetalwalls +MultiQC: + '1.14': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ewels/MultiQC +Mustache: + 1.3.3: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ay-lab%2Fmustache +NASM: + 2.16.01: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://www.nasm.us/ +NCCL: + 2.18.3: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/NVIDIA/nccl +NLTK: + 3.8.1: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://www.nltk.org/ +NLopt: + 2.7.1: + License: mit + Permission to redistribute: true + Retrieved from: http://ab-initio.mit.edu/wiki/index.php/NLopt_License_and_Copyright/ +NSPR: + '4.35': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +NSS: + '3.94': + License: MPL-2.0 + Permission to redistribute: true + Retrieved from: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS +Nextflow: + 23.10.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextflow-io%2Fnextflow +Ninja: + 1.11.1: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://ninja-build.org/ +OPARI2: + 2.0.8: + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: https://opensource.org/licenses/BSD-3-Clause +OSU-Micro-Benchmarks: + '7.2': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://mvapich.cse.ohio-state.edu/benchmarks/ +OTF2: + 3.0.3: + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: https://opensource.org/licenses/BSD-3-Clause +OpenBLAS: + 0.3.24: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.openblas.net/ +OpenEXR: + 3.2.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.openexr.com/ +OpenFOAM: + v2406: + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://www.openfoam.com/ +OpenJPEG: + 2.5.0: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://www.openjpeg.org/ +OpenMPI: + 4.1.6: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.open-mpi.org/ +OpenPGM: + 5.2.122: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://code.google.com/p/openpgm/ +OpenSSL: + '1.1': + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://www.openssl.org/ +OrthoFinder: + 2.5.5: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidemms%2FOrthoFinder +Osi: + 0.108.9: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/coin-or/Osi/raw/master/LICENSE +PAPI: + 7.1.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://icl.utk.edu/papi/ +PCRE: + '8.45': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.pcre.org/ +PCRE2: + '10.42': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.pcre.org/ +PDT: + 3.25.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/HPCToolkit/hpctoolkit +PETSc: + 3.20.3: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://petsc.org/release/ +PGPLOT: + 5.2.2: + License: Not-Public domain + Permission to redistribute: false + Retrieved from: https://sites.astro.caltech.edu/~tjp/pgplot/ +PLUMED: + 2.9.2: + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: http://creativecommons.org/licenses/by-sa/4.0/ +PLY: + '3.11': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.dabeaz.com/ply/ +PMIx: + 4.2.6: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/openpmix/openpmix +PROJ: + 9.3.1: + License: mit + Permission to redistribute: true + Retrieved from: https://proj.org/about.html#license +Pango: + 1.51.0: + License: LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://www.pango.org/ +ParMETIS: + 4.0.3: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview +ParaView: + 5.11.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.paraview.org +Paraver: + 4.11.4: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://tools.bsc.es/paraver +Perl: + 5.38.0: + License: Artistic-1.0-Perl, GPL-1.0-or-later + Permission to redistribute: true + Retrieved from: https://www.perl.org/ +Perl-bundle-CPAN: + 5.36.1: + License: Artistic-1.0-Perl, GPL-1.0-or-later + Permission to redistribute: true + Retrieved from: https://www.perl.org/ +Pillow: + 10.2.0: + License: HPND + Permission to redistribute: true + Retrieved from: https://github.com/python-pillow/Pillow +Pillow-SIMD: + 9.5.0: + License: HPND + Permission to redistribute: true + Retrieved from: https://github.com/uploadcare/pillow-simd +Pint: + '0.24': + License: Other + Permission to redistribute: true + Retrieved from: https://github.com/hgrecco/pint/blob/master/LICENSE +PostgreSQL: + '16.1': + License: PostgreSQL + Permission to redistribute: true + Retrieved from: https://www.postgresql.org/ +PuLP: + 2.8.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/coin-or/pulp +PyOpenGL: + 3.1.7: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: http://pyopengl.sourceforge.net +PyQt-builder: + 1.15.4: + License: GPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.example.com +PyQt5: + 5.15.10: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.riverbankcomputing.com/software/pyqt/ +PyTorch: + 2.1.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pytorch/pytorch +PyYAML: + 6.0.1: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaml%2Fpyyaml +PyZMQ: + 25.1.1: + License: mpl-2.0 + Permission to redistribute: true + Retrieved from: https://www.zeromq.org/license/ +Pygments: + 2.18.0: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://pygments.org/ +Pysam: + 0.22.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pysam-developers%2Fpysam +Python: + 3.11.5: + License: mit + Permission to redistribute: true + Retrieved from: https://docs.python.org/3/license.html +Python-bundle-PyPI: + '2023.10': + License: mit + Permission to redistribute: true + Retrieved from: https://docs.python.org/3/license.html +Qhull: + '2020.2': + License: Qhull License (Permissive) + Permission to redistribute: true + Retrieved from: http://www.qhull.org +Qt5: + 5.15.13: + License: LGPL-2.1-only, LGPL-3.0-only, GPL-3.0-only, MulanPSL-1.0 + Permission to redistribute: true + Retrieved from: https://qt.io/ +QuantumESPRESSO: + 7.3.1: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.quantum-espresso.org/ +R: + 4.4.1: + License: GPL-2.0-only, CNRI-Python-GPL-Compatible, LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://www.r-project.org/ +R-bundle-Bioconductor: + '3.18': + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://bioconductor.org +R-bundle-CRAN: + '2024.06': + License: GPL-2.0-only, CNRI-Python-GPL-Compatible, LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://www.r-project.org/ +RE2: + '2024': + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fre2 +ROOT: + 6.30.06: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://root.cern.ch/ +RapidJSON: + 1.1.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://rapidjson.org/ +Raptor: + 2.0.16: + License: apache-2.0, LGPL-2.1-or-later, GPL-2.0 + Permission to redistribute: true + Retrieved from: https://librdf.org/raptor/LICENSE.html +Rasqal: + 0.9.33: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://librdf.org/rasqal/ +ReFrame: + 4.6.2: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reframe-hpc%2Freframe +Redland: + 1.0.17: + License: LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://librdf.org/raptor +Rivet: + 3.1.9: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.com/repositories/hepcedar%2Frivet +Ruby: + 3.3.0: + License: Ruby License + Permission to redistribute: true + Retrieved from: https://www.ruby-lang.org/ +Rust: + 1.76.0: + License: Apache-2.0, MIT + Permission to redistribute: true + Retrieved from: https://www.rust-lang.org +SAMtools: + '1.18': + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/samtools/samtools +SCOTCH: + 7.0.3: + License: cecill-c + Permission to redistribute: true + Retrieved from: http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html +SDL2: + 2.28.5: + License: Zlib + Permission to redistribute: true + Retrieved from: https://www.libsdl.org/ +SEPP: + 4.5.1: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smirarab%2Fsepp +SIONlib: + 1.7.7: + License: LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html +SIP: + 6.8.1: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.riverbankcomputing.com/software/sip/ +SLEPc: + 3.20.1: + License: LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://slepc.upv.es/ +SQLAlchemy: + 2.0.25: + License: mit + Permission to redistribute: true + Retrieved from: https://www.sqlalchemy.org/download.html#license +SQLite: + 3.43.1: + License: Public Domain + Permission to redistribute: true + Retrieved from: https://www.sqlite.org/ +STAR: + 2.7.11b: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdobin%2FSTAR +SWIG: + 4.1.1: + License: GPL-3.0-only + Permission to redistribute: true + Retrieved from: http://www.swig.org/ +ScaFaCoS: + 1.0.4: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.scafacos.de/ +ScaLAPACK: + 2.2.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.netlib.org/scalapack/ +SciPy-bundle: + '2023.11': + License: mit + Permission to redistribute: true + Retrieved from: https://docs.python.org/3/license.html +SciTools-Iris: + 3.9.0: + License: LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://scitools.org.uk/iris/ +Score-P: + '8.4': + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: https://opensource.org/licenses/BSD-3-Clause +Seaborn: + 0.13.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://seaborn.pydata.org/ +Shapely: + 2.0.1: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shapely%2Fshapely +SlurmViewer: + 1.0.1: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.com/repositories/lkeb%2Fslurm_viewer +Solids4foam: + '2.1': + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/solids4foam/solids4foam.github.io +SuiteSparse: + 7.1.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/DrTimothyAldenDavis/SuiteSparse/raw/dev/LICENSE.txt +SuperLU_DIST: + 8.1.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/xiaoyeli/superlu_dist +Szip: + 2.1.1: + License: Szip License + Permission to redistribute: true + Retrieved from: https://support.hdfgroup.org/doc_resource/SZIP/ +Tcl: + 8.6.13: + License: Tcl/Tk License + Permission to redistribute: true + Retrieved from: https://www.tcl.tk/ +TensorFlow: + 2.13.0: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://www.tensorflow.org/ +Tk: + 8.6.13: + License: Tcl/Tk License + Permission to redistribute: true + Retrieved from: https://www.tcl.tk/ +Tkinter: + 3.11.5: + License: mit + Permission to redistribute: true + Retrieved from: https://docs.python.org/3/license.html +Tombo: + 1.5.1: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/nanoporetech/tombo/raw/master/LICENSE.md +Transrate: + 1.0.3: + License: mit + Permission to redistribute: true + Retrieved from: http://transrate.mit-license.org +UCC: + 1.2.0: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openucx%2Fucc +UCC-CUDA: + 1.2.0: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openucx%2Fucc +UCX: + 1.15.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/openucx/ucx +UCX-CUDA: + 1.14.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/openucx/ucx +UDUNITS: + 2.2.28: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.unidata.ucar.edu/software/udunits/ +UnZip: + '6.0': + License: Info-ZIP License + Permission to redistribute: true + Retrieved from: http://www.info-zip.org/UnZip.html +VCFtools: + 0.1.16: + License: lgpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vcftools%2Fvcftools +VTK: + 9.3.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.vtk.org +Valgrind: + 3.23.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.gnu.org/licenses/gpl-2.0.html +Vim: + 9.1.0004: + License: Vim License + Permission to redistribute: true + Retrieved from: https://www.vim.org/ +Voro++: + 0.4.6: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: http://math.lbl.gov/voro++/ +WCSLIB: + '7.11': + License: LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.atnf.csiro.au/people/mcalabre/WCS/ +WRF: + 4.4.1: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.mmm.ucar.edu/models/wrf +WSClean: + '3.5': + License: gpl-3.0+ + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.com/repositories/aroffringa%2Fwsclean +Wayland: + 1.22.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://wayland.freedesktop.org/ +WhatsHap: + '2.2': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whatshap%2Fwhatshap +X11: + '20231019': + License: MIT + Permission to redistribute: true + Retrieved from: https://www.x.org +XML-LibXML: + '2.0209': + License: Artistic-1.0-Perl + Permission to redistribute: true + Retrieved from: https://metacpan.org/pod/XML::LibXML +Xerces-C++: + 3.2.5: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://xerces.apache.org/xerces-c/ +Xvfb: + 21.1.9: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.x.org +YODA: + 1.9.9: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://yoda.hepforge.org/ +Yasm: + 1.3.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/yasm/yasm/raw/master/COPYING +Z3: + 4.12.2: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/Z3Prover/z3 +ZeroMQ: + 4.3.5: + License: LGPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://github.com/zeromq/libzmq/blob/master/COPYING.LESSER +Zip: + '3.0': + License: Info-ZIP License + Permission to redistribute: true + Retrieved from: http://www.info-zip.org/Zip.html +amdahl: + 0.3.1: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpc-carpentry%2Famdahl +archspec: + 0.2.5: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/archspec/archspec +arpack-ng: + 3.9.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/opencollab/arpack-ng +arrow-R: + 14.0.1: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://arrow.apache.org/ +at-spi2-atk: + 2.38.0: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://gitlab.gnome.org/GNOME/at-spi2-atk +at-spi2-core: + 2.50.0: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://gitlab.gnome.org/GNOME/at-spi2-core +basemap: + 1.3.9: + License: MIT + Permission to redistribute: true + Retrieved from: https://matplotlib.org/basemap/ +bokeh: + 3.2.2: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bokeh%2Fbokeh +cURL: + 8.3.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://curl.haxx.se +cairo: + 1.18.0: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://www.cairographics.org/ +casacore: + 3.5.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/casacore/casacore/raw/master/COPYING +ccache: + '4.9': + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://ccache.dev/ +cffi: + 1.15.1: + License: MIT + Permission to redistribute: true + Retrieved from: https://cffi.readthedocs.io/en/latest/ +cimfomfa: + '22.273': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/micans/cimfomfa/raw/main/LICENSE +colorize: + 0.7.7: + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fazibear%2Fcolorize +cooler: + 0.10.2: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/open2c%2Fcooler +cpio: + '2.15': + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: ' https://ftp.gnu.org/gnu/cpio/' +cppy: + 1.2.1: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nucleic%2Fcppy +crb-blast: + 0.6.9: + License: MIT + Permission to redistribute: true + Retrieved from: https://rubygems.org/gems/crb-blast/versions/0.6.9 +cryptography: + 41.0.5: + License: Apache-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/pyca/cryptography +dask: + 2023.9.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://dask.org/ +dill: + 0.3.8: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://pypi.org/project/dill/ +dlb: + '3.4': + License: lgpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bsc-pm%2Fdlb +double-conversion: + 3.3.0: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fdouble-conversion +ecBuild: + 3.8.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +ecCodes: + 2.31.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://confluence.ecmwf.int/display/ECC/License +elfutils: + '0.190': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://sourceware.org/elfutils/ +elfx86exts: + 0.6.2: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkgw%2Felfx86exts +expat: + 2.5.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libexpat%2Flibexpat +expecttest: + 0.1.5: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pytorch%2Fexpecttest +f90wrap: + 0.2.13: + License: lgpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jameskermode%2Ff90wrap +fastjet: + 3.4.2: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://fastjet.fr/ +fastjet-contrib: + '1.053': + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://fastjet.fr/contrib/ +fastp: + 0.23.4: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenGene%2Ffastp +ffnvcodec: + 12.1.14.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/FFmpeg/nv-codec-headers +flatbuffers: + 23.5.26: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fflatbuffers +flatbuffers-python: + 23.5.26: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fflatbuffers +flit: + 3.9.0: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fflit +fontconfig: + 2.14.2: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.freedesktop.org/wiki/Software/fontconfig/ +foss: + 2023b: + License: Various + Permission to redistribute: true + Retrieved from: https://easybuild.io/ +freeglut: + 3.4.0: + License: MIT + Permission to redistribute: true + Retrieved from: http://freeglut.sourceforge.net/ +freetype: + 2.13.2: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.freetype.org/license.html +geopandas: + 0.14.2: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geopandas%2Fgeopandas +gfbf: + 2023b: + License: Various + Permission to redistribute: true + Retrieved from: https://easybuild.io/ +giflib: + 5.2.1: + License: MIT + Permission to redistribute: true + Retrieved from: https://giflib.sourceforge.net/ +git: + 2.42.0: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://git-scm.com/ +gmpy2: + 2.1.5: + License: lgpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleaxit%2Fgmpy +gmsh: + 4.12.2: + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://gmsh.info/ +gnuplot: + 5.4.8: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.gnuplot.info/ +gompi: + 2023b: + License: Various + Permission to redistribute: true + Retrieved from: https://easybuild.io/ +googletest: + 1.14.0: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fgoogletest +graphite2: + 1.3.14: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/silnrsi/graphite +groff: + 1.22.4: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://layers.openembedded.org/layerindex/recipe/150214/ +grpcio: + 1.57.0: + License: Apache-2.0, BSD-3-Clause, MIT + Permission to redistribute: true + Retrieved from: https://grpc.io/ +gtk-doc: + 1.34.0: + License: gfdl-1.1 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.gnome.org/repositories/GNOME%2Fgtk-doc +gzip: + '1.13': + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://www.gnu.org/software/gzip/ +h5netcdf: + 1.2.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/h5netcdf/h5netcdf +h5py: + 3.11.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/h5py/h5py +hatch-jupyter-builder: + 0.9.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyterlab/hatch-jupyter-builder +hatchling: + 1.18.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/pypa/hatch +hic-straw: + 1.3.1: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aidenlab%2Fstraw +hiredis: + 1.2.0: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/redis%2Fhiredis +hwloc: + 2.9.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.open-mpi.org/projects/hwloc/license.php +hypothesis: + 6.90.0: + License: MPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/HypothesisWorks/hypothesis +ipympl: + 0.9.3: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matplotlib%2Fipympl +jbigkit: + '2.1': + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.cl.cam.ac.uk/~mgk25/jbigkit/ +jedi: + 0.19.1: + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/davidhalter/jedi/raw/master/LICENSE.txt +jemalloc: + 5.3.0: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: http://jemalloc.net +jq: + '1.6': + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/stedolan/jq +json-c: + '0.17': + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/json-c/json-c +jupyter-server: + 2.7.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/jupyter-server/jupyter_server +kim-api: + 2.3.0: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://github.com/openkim/kim-api +libGLU: + 9.0.3: + License: mit + Permission to redistribute: true + Retrieved from: https://docs.mesa3d.org/license.html +libaec: + 1.0.6: + License: bsd-2-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.dkrz.de/repositories/k202009%2Flibaec +libaio: + 0.3.113: + License: LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://pagure.io/libaio +libarchive: + 3.7.2: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/libarchive/libarchive +libcerf: + '2.3': + License: MIT + Permission to redistribute: true + Retrieved from: https://jugit.fz-juelich.de/mlz/libcerf +libcint: + 5.4.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunqm%2Flibcint +libdeflate: + '1.19': + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebiggers%2Flibdeflate +libdrm: + 2.4.117: + License: Other + Permission to redistribute: true + Retrieved from: https://dri.freedesktop.org/libdrm/ +libdwarf: + 0.9.2: + License: LGPL-2.1-or-later + Permission to redistribute: true + Retrieved from: https://www.prevanders.net/dwarf.html +libepoxy: + 1.5.10: + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/anholt/libepoxy/raw/master/COPYING +libevent: + 2.1.12: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://libevent.org/ +libfabric: + 1.19.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/ofiwg/libfabric/raw/main/COPYING +libffi: + 3.4.4: + License: MIT + Permission to redistribute: true + Retrieved from: https://sourceware.org/libffi/ +libgcrypt: + 1.10.3: + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: https://creativecommons.org/licenses/by-sa/3.0/ +libgd: + 2.3.3: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/libgd/libgd +libgeotiff: + 1.7.3: + License: gfdl-1.3 + Permission to redistribute: true + Retrieved from: http://static.fsf.org/nosvn/directory/fdl-1.3-standalone.html +libgit2: + 1.7.2: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/libgit2/libgit2 +libglvnd: + 1.7.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/NVIDIA/libglvnd +libgpg-error: + '1.48': + License: cc-by-4.0 + Permission to redistribute: true + Retrieved from: https://creativecommons.org/licenses/by-sa/3.0/ +libiconv: + '1.17': + License: GPL-3.0-or-later + Permission to redistribute: true + Retrieved from: https://www.gnu.org/software/libiconv +libidn2: + 2.3.7: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: http://www.gnu.org/licenses/licenses.html +libjpeg-turbo: + 3.0.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/libjpeg-turbo/libjpeg-turbo +libogg: + 1.3.5: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://xiph.org/ogg/ +libopus: + 1.5.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.opus-codec.org/ +libpciaccess: + '0.17': + License: Other + Permission to redistribute: true + Retrieved from: https://gitlab.freedesktop.org/xorg/lib/libpciaccess/-/raw/master/COPYING?ref_type=heads +libpng: + 1.6.40: + License: Libpng + Permission to redistribute: true + Retrieved from: http://www.libpng.org/pub/png/libpng.html +librosa: + 0.10.1: + License: ISC + Permission to redistribute: true + Retrieved from: https://github.com/librosa/librosa +libsndfile: + 1.2.2: + License: LGPL-2.0+ + Permission to redistribute: true + Retrieved from: http://www.mega-nerd.com/libsndfile +libsodium: + 1.0.19: + License: isc + Permission to redistribute: true + Retrieved from: https://doc.libsodium.org/#license +libspatialindex: + 1.9.3: + License: mit + Permission to redistribute: true + Retrieved from: https://libspatialindex.org#license-mit +libtirpc: + 1.3.4: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://sourceforge.net/projects/libtirpc/ +libunwind: + 1.6.2: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.nongnu.org/libunwind/ +libvorbis: + 1.3.7: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://xiph.org/vorbis/ +libvori: + '220621': + License: LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://brehm-research.de/libvori.php +libwebp: + 1.3.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://developers.google.com/speed/webp/ +libxc: + 6.2.2: + License: LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://gitlab.com/libxc/libxc +libxml2: + 2.11.5: + License: MIT + Permission to redistribute: true + Retrieved from: https://gitlab.gnome.org/GNOME/libxml2 +libxml2-python: + 2.11.4: + License: MIT + Permission to redistribute: true + Retrieved from: https://gitlab.gnome.org/GNOME/libxml2 +libxslt: + 1.1.38: + License: MIT + Permission to redistribute: true + Retrieved from: https://gitlab.gnome.org/GNOME/libxslt +libxsmm: + '1.17': + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libxsmm%2Flibxsmm +libyaml: + 0.2.5: + License: MIT + Permission to redistribute: true + Retrieved from: https://pyyaml.org/wiki/LibYAML +lpsolve: + 5.5.2.11: + License: LGPL-2.1 + Permission to redistribute: true + Retrieved from: https://sourceforge.net/projects/lpsolve/ +lxml: + 4.9.3: + License: BSD-3-Clause, ZPL-2.0 + Permission to redistribute: true + Retrieved from: https://lxml.de/ +lz4: + 1.9.4: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/lz4/lz4 +make: + 4.4.1: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/licenses.html +mallard-ducktype: + 1.0.2: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/projectmallard%2Fmallard-ducktype +matplotlib: + 3.8.2: + License: Python-2.0 + Permission to redistribute: true + Retrieved from: https://matplotlib.org +maturin: + 1.5.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyO3%2Fmaturin +meson-python: + 0.15.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mesonbuild%2Fmeson-python +mpi4py: + 3.1.5: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpi4py%2Fmpi4py +mpl-ascii: + 0.10.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chriscave%2Fmpl_ascii +multiprocess: + 0.70.16: + License: other + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/uqfoundation/multiprocess/refs/heads/master/COPYING +ncbi-vdb: + 3.0.10: + License: Public Domain + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/ncbi/ncbi-vdb/refs/heads/master/LICENSE +ncdu: + '1.18': + License: MIT + Permission to redistribute: true + Retrieved from: https://dev.yorhel.nl/ncdu +netCDF: + 4.9.2: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.unidata.ucar.edu/software/netcdf/ +netCDF-Fortran: + 4.6.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.unidata.ucar.edu/software/netcdf/ +netcdf4-python: + 1.6.4: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Unidata%2Fnetcdf4-python +nettle: + 3.9.1: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://www.lysator.liu.se/~nisse/nettle/ +networkx: + 3.2.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/networkx/networkx/refs/heads/main/LICENSE.txt +nlohmann_json: + 3.11.3: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nlohmann%2Fjson +nodejs: + 20.9.0: + License: artistic-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/nodejs/node/raw/main/LICENSE +nsync: + 1.26.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Fnsync +numactl: + 2.0.16: + License: gpl-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/numactl%2Fnumactl +numba: + 0.58.1: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/numba/numba +occt: + 7.8.0: + License: lgpl-2.1 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Open-Cascade-SAS%2FOCCT +orjson: + 3.9.15: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ijl%2Forjson +parallel: + '20230722': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://savannah.gnu.org/projects/parallel/ +patchelf: + 0.18.0: + License: gpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NixOS%2Fpatchelf +pixman: + 0.42.2: + License: MIT + Permission to redistribute: true + Retrieved from: https://gitlab.freedesktop.org/pixman/pixman +pkgconf: + 2.0.3: + License: ISC + Permission to redistribute: true + Retrieved from: https://github.com/pkgconf/pkgconf +pkgconfig: + 1.5.5: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matze%2Fpkgconfig +poetry: + 1.6.1: + License: MIT + Permission to redistribute: true + Retrieved from: https://python-poetry.org +protobuf: + '24.0': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/protocolbuffers/protobuf +protobuf-python: + 4.24.0: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/protocolbuffers/protobuf +psycopg2: + 2.9.9: + License: LGPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/psycopg/psycopg2 +pyMBE: + 0.8.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/pyMBE-dev/pyMBE +pybind11: + 2.11.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/pybind/pybind11 +pydantic: + 2.7.4: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pydantic%2Fpydantic +pyfaidx: + 0.8.1.1: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/mdshw5/pyfaidx +pyproj: + 3.6.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/pyproj4/pyproj +pystencils: + 1.3.4: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/readthedocs%2Fsphinx_rtd_theme +pytest-flakefinder: + 1.1.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/dropbox/pytest-flakefinder +pytest-rerunfailures: + '12.0': + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/pytest-dev/pytest-rerunfailures +pytest-shard: + 0.1.2: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdamGleave%2Fpytest-shard +python-casacore: + 3.5.2: + License: lgpl-3.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/casacore%2Fpython-casacore +python-isal: + 1.1.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/pycompression/python-isal +python-xxhash: + 3.4.1: + License: bsd-2-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ifduyue%2Fpython-xxhash +re2c: + '3.1': + License: Public Domain + Permission to redistribute: true + Retrieved from: https://re2c.org +rpy2: + 3.5.15: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://github.com/rpy2/rpy2 +scikit-build: + 0.17.6: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/scikit-build/scikit-build +scikit-build-core: + 0.9.3: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/scikit-build/scikit-build-core +scikit-learn: + 1.4.0: + License: bsd-3-clause + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scikit-learn%2Fscikit-learn +setuptools: + 64.0.3: + License: MIT + Permission to redistribute: true + Retrieved from: https://pypi.org/project/setuptools +setuptools-rust: + 1.8.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PyO3%2Fsetuptools-rust +siscone: + 3.0.6: + License: agpl-1.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.com/repositories/fastjet%2Fsiscone +snakemake: + 8.4.2: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/snakemake/snakemake +snappy: + 1.1.10: + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/google/snappy/raw/main/COPYING +spglib-python: + 2.0.2: + License: mit + Permission to redistribute: true + Retrieved from: https://spdx.github.io/spdx-spec/v2-draft/SPDX-license-expressions/ +statsmodels: + 0.14.1: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.statsmodels.org/ +sympy: + '1.12': + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/sympy/sympy +tbb: + 2021.13.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uxlfoundation%2FoneTBB +tcsh: + 6.24.07: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://www.tcsh.org +time: + '1.9': + License: GPL-3.0-only + Permission to redistribute: true + Retrieved from: https://www.gnu.org/software/time/ +tmux: + 3.3a: + License: isc + Permission to redistribute: true + Retrieved from: https://github.com/tmux/tmux/raw/master/COPYING +tornado: + 6.3.2: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tornadoweb%2Ftornado +tqdm: + 4.66.2: + License: mit + Permission to redistribute: true + Retrieved from: https://github.com/tqdm/tqdm/raw/master/LICENCE +typing-extensions: + 4.10.0: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://github.com/python/typing_extensions/raw/main/LICENSE +unixODBC: + 2.3.12: + License: LGPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://www.unixodbc.org/ +utf8proc: + 2.9.0: + License: MIT + Permission to redistribute: true + Retrieved from: https://github.com/JuliaStrings/utf8proc +virtualenv: + 20.24.6: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pypa%2Fvirtualenv +waLBerla: + '6.1': + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.walberla.net/ +wget: + 1.24.5: + License: GPL-3.0 + Permission to redistribute: true + Retrieved from: https://www.gnu.org/licenses/licenses.html +wradlib: + 2.0.3: + License: mit + Permission to redistribute: true + Retrieved from: https://docs.wradlib.org/#license +wrapt: + 1.15.0: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://github.com/GrahamDumpleton/wrapt +wxWidgets: + 3.2.6: + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/wxWidgets/wxWidgets/refs/heads/master/docs/licence.txt +x264: + '20231019': + License: GPL-2.0-or-later + Permission to redistribute: true + Retrieved from: https://www.videolan.org/developers/x264.html +x265: + '3.5': + License: GPL-2.0 + Permission to redistribute: true + Retrieved from: https://www.x265.org/ +xarray: + 2023.9.0: + License: apache-2.0 + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pydata%2Fxarray +xorg-macros: + 1.20.0: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.freedesktop.org/repositories/xorg%2Futil%2Fmacros +xprop: + 1.2.6: + License: MIT + Permission to redistribute: true + Retrieved from: https://www.x.org/wiki/ +xxHash: + 0.8.2: + License: BSD-2-Clause + Permission to redistribute: true + Retrieved from: https://raw.githubusercontent.com/Cyan4973/xxHash/refs/heads/dev/LICENSE +xxd: + 9.1.0307: + License: vim + Permission to redistribute: true + Retrieved from: https://www.vim.org +yell: + 2.2.2: + License: mit + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudionrails%2Fyell +yelp-tools: + '42.1': + License: gpl-2.0+ + Permission to redistribute: true + Retrieved from: https://repos.ecosyste.ms/api/v1/hosts/gitlab.gnome.org/repositories/GNOME%2Fyelp-tools +yelp-xsl: + '42.1': + License: LGPL-2.1-only + Permission to redistribute: true + Retrieved from: https://gitlab.gnome.org/GNOME/yelp-xsl/-/raw/master/COPYING +zstd: + 1.5.5: + License: BSD-3-Clause + Permission to redistribute: true + Retrieved from: https://github.com/facebook/zstd/blob/dev/LICENSE diff --git a/licenses/parse_licenses.py b/licenses/parse_licenses.py new file mode 100644 index 0000000000..5844aafa71 --- /dev/null +++ b/licenses/parse_licenses.py @@ -0,0 +1,283 @@ +import requests +import json +import os +import re +import argparse +import yaml +import shutil +from urllib.parse import quote +from bs4 import BeautifulSoup + +# API Endpoints +URL_REPO = "https://repos.ecosyste.ms/api/v1/repositories/lookup?url=" +URL_REG = "https://packages.ecosyste.ms/api/v1/packages/lookup?repository_url=" + +# Constants +MAX_DEPTH = 3 + +# Global variable +DEBUG_MODE = False + +# Load SPDX License Data to interpolate with found license files +with open("licenses/spdx-list.json", "r") as f: + spdx_data = json.load(f) +SPDX_LICENSES = { + entry["licenseId"].lower(): { + "id": entry["licenseId"], + "name": entry["name"], + "isOsiApproved": entry.get("isOsiApproved", False), + "isFsfLibre": entry.get("isFsfLibre", False) + } + for entry in spdx_data["licenses"] +} + +def clean_repo_url(url): + """Removes unnecessary parts like /archive/, /releases/, and .git from repo URLs.""" + url = re.sub(r"/(archive|releases|tags|download)/.*$", "", url) + return re.sub(r"\.git$", "", url) + +def is_valid_repo_url(url): + """Checks if the URL is a valid GitHub/GitLab repository.""" + return re.match(r"https?://(github|gitlab)\.com/[^/]+/[^/]+/?$", url) + +def fetch_license_from_ecosystems(url, depth=0): + """Fetches license information from ecosyste.ms API with a depth limit.""" + if depth > MAX_DEPTH: + if DEBUG_MODE: + print(f"Max depth reached for {url}, stopping recursion.") + return "not found", "not found" + + clean_url = clean_repo_url(url) + formatted_url = quote(clean_url, safe="") + if DEBUG_MODE: + print(f"Depth {depth}: Checking {url}") + + try: + repo_response = requests.get(f"{URL_REPO}{formatted_url}") + reg_response = requests.get(f"{URL_REG}{formatted_url}") + except requests.RequestException as e: + if DEBUG_MODE: + print(f"Request failed: {e}") + return "not found", "not found" + + if repo_response.status_code == 200: + data = repo_response.json() + license_info = data.get("license", "not found") + repo_url = data.get("repository_url", "not found") + + if license_info in ("not found", "other", "Other"): + scraped_license = scrape_license(clean_url) + if DEBUG_MODE: + print("SCRAPED LICENSE "+str(scraped_license)) + if scraped_license != "not found": + return scraped_license[0], scraped_license[1] + + return license_info, repo_url + + if reg_response.status_code == 200: + data = reg_response.json() + if DEBUG_MODE: + print(f"for {URL_REG}{formatted_url}") + if isinstance(data, list) and data: + license_info = data[0].get("normalized_licenses", "not found") + repo_url = data[0].get("repository_url", "not found") + if license_info in ("not found", "other", "Other"): + scraped_license = scrape_repo_from_package(clean_url, depth + 1) + if DEBUG_MODE: + print("SCRAPED LICENSE "+str(scraped_license)) + if scraped_license != "not found": + return scraped_license[0], scraped_license[1] + + return license_info, repo_url + else: + scraped_license = scrape_license(clean_url) + if DEBUG_MODE: + print("SCRAPED LICENSE "+str(scraped_license)) + if scraped_license != "not found": + return scraped_license, scraped_license[1] + + return scrape_repo_from_package(clean_url, depth + 1) + +#def scrape_license(repo_url): +# try: +# response = requests.get(repo_url) +# response.raise_for_status() +# except requests.RequestException: +# return "not found" + +# soup = BeautifulSoup(response.text, "html.parser") +# for link in soup.find_all("a", href=True): +# if re.search(r"license|copying|copyright|legal", link.text, re.IGNORECASE): +# license_url = requests.compat.urljoin(repo_url, link["href"]) +# license_text = requests.get(license_url).text.lower() +# print(str(license_text)) +# for spdx_id, content in SPDX_LICENSES.items(): +# print("spdx_id: "+spdx_id) +# print("name: "+content.get("name")) +# if spdx_id or content.get("name") in license_text: +# return spdx_id, license_url +# if "GNU General Public License" in license_text: +# return "GPL-3.0", license_url +# return "not found", license_url +# return "not found" + +def scrape_license(repo_url): + try: + response = requests.get(repo_url) + response.raise_for_status() + except requests.RequestException: + return "not found" + + soup = BeautifulSoup(response.text, "html.parser") + + # Step 1: Find the license file URL + license_url = None + for link in soup.find_all("a", href=True): + if re.search(r"license|copying|copyright|legal", link.text, re.IGNORECASE): + license_url = requests.compat.urljoin(repo_url, link["href"]) + break + + if not license_url: + return "not found" + + # Step 2: Handle the license file content based on the platform + if "github.com" in repo_url: + # GitHub specific handling + # Convert the GitHub blob URL to a raw URL + license_url = license_url.replace("/blob/", "/raw/") + elif "gitlab.com" in repo_url or "gitlab." in repo_url: # Custom GitLab instances + # GitLab specific handling + # Convert the GitLab blob URL to a raw URL + license_url = license_url.replace("/blob/", "/raw/") + + # Step 3: Fetch and process the license file content + try: + license_response = requests.get(license_url) + license_response.raise_for_status() + license_text = license_response.text.lower() + + # Step 4: Match the license text against SPDX licenses + for spdx_id, content in SPDX_LICENSES.items(): + if content.get("name").lower() in license_text: + return spdx_id, license_url + if "general public license" in license_text: + return "GPL-3.0", license_url + return "not found", license_url + except requests.RequestException: + return "not found", "not found" + +def scrape_repo_from_package(url, depth=0): + """Scrapes a package homepage for a GitHub/GitLab repository link.""" + if depth > MAX_DEPTH: + if DEBUG_MODE: + print(f"Max depth reached for {url}, stopping recursion.") + return "not found", "not found" + + try: + response = requests.get(url, timeout=10) + response.raise_for_status() + except requests.RequestException: + if DEBUG_MODE: + print(f"Failed to fetch {url}") + return "not found", "not found" + + soup = BeautifulSoup(response.text, "html.parser") + for tag in soup.find_all("a", href=True): + if is_valid_repo_url(tag["href"]): + return fetch_license_from_ecosystems(tag["href"], depth + 1) + + return "not found", "not found" + +def fetch_license_from_homepage_or_source(module_data): + """Attempts to fetch the license using the module's homepage or source URL.""" + for key in ["Homepage", "Source URL"]: + url = module_data.get(key, "N/A") + if url and url != "N/A": + license_info, repo_url = fetch_license_from_ecosystems(url) + if license_info != "not found": + return license_info, repo_url + return "not found", "not found" + +def process_modules_for_licenses(modules_file): + """Processes module JSON file to retrieve license information.""" + with open(modules_file, "r") as f: + modules = json.load(f) + + results = {} + for module in modules: + module_name = module["Module"] + license_info, url = fetch_license_from_homepage_or_source(module) + is_redistributable = False + + if isinstance(license_info, tuple): + license_info = license_info[0] # Extract the actual license ID + if isinstance(license_info, tuple): # don't know why sometimes there are tuples of tuples + license_info = license_info[0] # Extract the actual license ID + + if isinstance(license_info, dict): + license_info = license_info.get("id", "not found") # Ensure it's a string + + if isinstance(license_info, list): + license_info = ", ".join(license_info) if license_info else "not found" # Convert list to string + + license_info_normalized = license_info.lower() if isinstance(license_info, str) else license_info + + if license_info_normalized in SPDX_LICENSES: + spdx_details = SPDX_LICENSES[license_info_normalized] + is_redistributable = spdx_details["isOsiApproved"] or spdx_details["isFsfLibre"] + + # Split the software name and version to display them properly in the YAML file + software_name, version = module_name.split("/", 1) + if "-" in version: + version,toolchain = version.split("-",1) + results[software_name] = { + version: { + "License": license_info, + "Permission to redistribute": is_redistributable, + "Retrieved from": url + } + } + return results + +def save_license_results(results, output_file="licenses_aux.yaml",licenses_original = os.sys.argv[2]): + """Saves license information to a JSON file.""" + with open("temporal_print.yaml", "w") as f: + yaml.dump(results, f, default_flow_style=False, sort_keys=True) #Fast dump of what we have to print in the workflow + + full_data = {} + with open(licenses_original, 'r') as f: + full_data = yaml.safe_load(f) + + for software_name, versions_data in results.items(): #Look for new modules which are not in the new licenses dictionary + if software_name not in full_data: #Add new modules in a data dictionary + full_data[software_name] = {} + + for version, details in versions_data.items(): + if version not in full_data[software_name]: + full_data[software_name][version] = details #Add/replace the details of modules found in the new licenses data dictionary + + with open(output_file, "w") as f: + yaml.dump(full_data, f, default_flow_style=False, sort_keys=True) #Export data dictionary as licenses_aux.yaml file + print(f"License information saved to {output_file}") + +def parse_arguments(): + parser = argparse.ArgumentParser(description='Script to parse licenses') + parser.add_argument('input_file', help='Path to the input file') + parser.add_argument('licenses_original', help='Path to the original licenses file (licenses.yml)') + parser.add_argument('--debug', help='Prints scripts debugging', action='store_true', required=False) + return parser.parse_args() + +def main(): + modules_file = "modules_results.json" + if not os.path.exists(modules_file): + print(f"Error: {modules_file} not found.") + return + license_results = process_modules_for_licenses(modules_file) + save_license_results(license_results) + +if __name__ == "__main__": + # Parse command-line arguments and enable global debug mode if requested + args = parse_arguments() + if args.debug: + DEBUG_MODE = True + main() diff --git a/licenses/parsing_easyconfigs.py b/licenses/parsing_easyconfigs.py new file mode 100644 index 0000000000..7cd0f4a962 --- /dev/null +++ b/licenses/parsing_easyconfigs.py @@ -0,0 +1,105 @@ +import os +import re +import requests +import json + + +def get_easyconfig_filename(module_name): + """Generates the expected EasyConfig filename based on the module name.""" + return f"{module_name.replace('/', '-')}.eb" + + +def get_easyconfig_url(module_name): + """Constructs the GitHub raw URL for the EasyConfig file.""" + easyconfig_filename = get_easyconfig_filename(module_name) + first_letter = module_name[0].lower() + base_url = "https://raw.githubusercontent.com/easybuilders/easybuild-easyconfigs/develop/easybuild/easyconfigs" + return f"{base_url}/{first_letter}/{module_name.split('/')[0]}/{easyconfig_filename}" + + +def extract_homepage_or_source(easyconfig_url, module_name): + """Fetches the EasyConfig file and extracts the homepage or source URL.""" + try: + response = requests.get(easyconfig_url) + response.raise_for_status() + content = response.text + + homepage_match = re.search(r"homepage\s*=\s*['\"](.*?)['\"]", content) + source_match = re.search( + r"source_urls\s*=\s*\[['\"](.*?)['\"]\]", content) + + homepage = homepage_match.group(1) if homepage_match else "N/A" + source_url = source_match.group(1) if source_match else "N/A" + + match = re.match(r"^(.*?)/([\d\.]+)-.*$", module_name) + if match: + name, version = match.groups() + version_parts = version.split('.') + version_major = version_parts[0] if len(version_parts) > 0 else "" + version_major_minor = '.'.join(version_parts[:2]) if len(version_parts) > 1 else "" + nameletter = name[0] if name else "" + namelower = name.lower() + + # Replace placeholders + for placeholder, value in { + "%(name)s": name, + "%(namelower)s": namelower, + "%(version)s": version, + "%(version_major)s": version_major, + "%(version_major_minor)s": version_major_minor, + "%(nameletter)s": nameletter, + }.items(): + homepage = homepage.replace(placeholder, value) + source_url = source_url.replace(placeholder, value) + + return homepage, source_url + except requests.RequestException: + return "N/A", "N/A" + + +def process_modules(module_list): + """Processes a list of modules to retrieve homepage and source URLs.""" + results = [] + + for module in module_list: + easyconfig_url = get_easyconfig_url(module) + homepage, source_url = extract_homepage_or_source(easyconfig_url, module) + + results.append({ + "Module": module, + "EasyConfig URL": easyconfig_url, + "Homepage": homepage, + "Source URL": source_url + }) + + return results + + +def load_modules_from_file(filename): + """Loads module names from a text file.""" + with open(filename, "r") as f: + return [line.strip() for line in f if line.strip()] + + +def main(): + + filename = os.sys.argv[1] if len(os.sys.argv) > 1 else "missing_modules.txt" # Default filename + + if not os.path.exists(filename): + print(f"Error: {filename} not found.") + return + + module_list = load_modules_from_file(filename) + results = process_modules(module_list) + + # Save results to a JSON file + output_file = "modules_results.json" # Output file to store results + + with open(output_file, "w") as f: + json.dump(results, f, indent=4) + + print(f"Results saved to {output_file}") + + +if __name__ == "__main__": + main() diff --git a/licenses/spdx-list.json b/licenses/spdx-list.json new file mode 100644 index 0000000000..c07d10ea49 --- /dev/null +++ b/licenses/spdx-list.json @@ -0,0 +1,8532 @@ +{ + "licenseListVersion": "45e6470", + "licenses": [ + { + "reference": "https://spdx.org/licenses/0BSD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/0BSD.json", + "referenceNumber": 2, + "name": "BSD Zero Clause License", + "licenseId": "0BSD", + "seeAlso": [ + "http://landley.net/toybox/license.html", + "https://opensource.org/licenses/0BSD" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/3D-Slicer-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/3D-Slicer-1.0.json", + "referenceNumber": 604, + "name": "3D Slicer License v1.0", + "licenseId": "3D-Slicer-1.0", + "seeAlso": [ + "https://slicer.org/LICENSE", + "https://github.com/Slicer/Slicer/blob/main/License.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AAL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AAL.json", + "referenceNumber": 294, + "name": "Attribution Assurance License", + "licenseId": "AAL", + "seeAlso": [ + "https://opensource.org/licenses/attribution" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Abstyles.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Abstyles.json", + "referenceNumber": 159, + "name": "Abstyles License", + "licenseId": "Abstyles", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Abstyles" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AdaCore-doc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AdaCore-doc.json", + "referenceNumber": 362, + "name": "AdaCore Doc License", + "licenseId": "AdaCore-doc", + "seeAlso": [ + "https://github.com/AdaCore/xmlada/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-core/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-db/blob/master/docs/index.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-2006.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-2006.json", + "referenceNumber": 102, + "name": "Adobe Systems Incorporated Source Code License Agreement", + "licenseId": "Adobe-2006", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AdobeLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Display-PostScript.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Display-PostScript.json", + "referenceNumber": 595, + "name": "Adobe Display PostScript License", + "licenseId": "Adobe-Display-PostScript", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L752" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Glyph.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Glyph.json", + "referenceNumber": 440, + "name": "Adobe Glyph List License", + "licenseId": "Adobe-Glyph", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Utopia.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Utopia.json", + "referenceNumber": 598, + "name": "Adobe Utopia Font License", + "licenseId": "Adobe-Utopia", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/adobe-utopia-100dpi/-/blob/master/COPYING?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ADSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ADSL.json", + "referenceNumber": 266, + "name": "Amazon Digital Services License", + "licenseId": "ADSL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AFL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-1.1.json", + "referenceNumber": 468, + "name": "Academic Free License v1.1", + "licenseId": "AFL-1.1", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-1.1.txt", + "http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-1.2.json", + "referenceNumber": 382, + "name": "Academic Free License v1.2", + "licenseId": "AFL-1.2", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-1.2.txt", + "http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-2.0.json", + "referenceNumber": 410, + "name": "Academic Free License v2.0", + "licenseId": "AFL-2.0", + "seeAlso": [ + "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-2.1.json", + "referenceNumber": 561, + "name": "Academic Free License v2.1", + "licenseId": "AFL-2.1", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-2.1.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-3.0.json", + "referenceNumber": 535, + "name": "Academic Free License v3.0", + "licenseId": "AFL-3.0", + "seeAlso": [ + "http://www.rosenlaw.com/AFL3.0.htm", + "https://opensource.org/licenses/afl-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Afmparse.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Afmparse.json", + "referenceNumber": 646, + "name": "Afmparse License", + "licenseId": "Afmparse", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Afmparse" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0.json", + "referenceNumber": 307, + "name": "Affero General Public License v1.0", + "licenseId": "AGPL-1.0", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-only.json", + "referenceNumber": 560, + "name": "Affero General Public License v1.0 only", + "licenseId": "AGPL-1.0-only", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-or-later.json", + "referenceNumber": 652, + "name": "Affero General Public License v1.0 or later", + "licenseId": "AGPL-1.0-or-later", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0.json", + "referenceNumber": 457, + "name": "GNU Affero General Public License v3.0", + "licenseId": "AGPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-only.json", + "referenceNumber": 238, + "name": "GNU Affero General Public License v3.0 only", + "licenseId": "AGPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-or-later.json", + "referenceNumber": 25, + "name": "GNU Affero General Public License v3.0 or later", + "licenseId": "AGPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Aladdin.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Aladdin.json", + "referenceNumber": 656, + "name": "Aladdin Free Public License", + "licenseId": "Aladdin", + "seeAlso": [ + "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/AMD-newlib.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMD-newlib.json", + "referenceNumber": 484, + "name": "AMD newlib License", + "licenseId": "AMD-newlib", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/sys/a29khif/_close.S;h\u003d04f52ae00de1dafbd9055ad8d73c5c697a3aae7f;hb\u003dHEAD" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AMDPLPA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMDPLPA.json", + "referenceNumber": 195, + "name": "AMD\u0027s plpa_map.c License", + "licenseId": "AMDPLPA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AML.json", + "referenceNumber": 113, + "name": "Apple MIT License", + "licenseId": "AML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AML-glslang.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AML-glslang.json", + "referenceNumber": 216, + "name": "AML glslang variant License", + "licenseId": "AML-glslang", + "seeAlso": [ + "https://github.com/KhronosGroup/glslang/blob/main/LICENSE.txt#L949", + "https://docs.omniverse.nvidia.com/install-guide/latest/common/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AMPAS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMPAS.json", + "referenceNumber": 634, + "name": "Academy of Motion Picture Arts and Sciences BSD", + "licenseId": "AMPAS", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ANTLR-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ANTLR-PD.json", + "referenceNumber": 150, + "name": "ANTLR Software Rights Notice", + "licenseId": "ANTLR-PD", + "seeAlso": [ + "http://www.antlr2.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ANTLR-PD-fallback.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ANTLR-PD-fallback.json", + "referenceNumber": 325, + "name": "ANTLR Software Rights Notice with license fallback", + "licenseId": "ANTLR-PD-fallback", + "seeAlso": [ + "http://www.antlr2.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/any-OSI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/any-OSI.json", + "referenceNumber": 168, + "name": "Any OSI License", + "licenseId": "any-OSI", + "seeAlso": [ + "https://metacpan.org/pod/Exporter::Tidy#LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/any-OSI-perl-modules.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/any-OSI-perl-modules.json", + "referenceNumber": 424, + "name": "Any OSI License - Perl Modules", + "licenseId": "any-OSI-perl-modules", + "seeAlso": [ + "https://metacpan.org/release/JUERD/Exporter-Tidy-0.09/view/Tidy.pm#LICENSE", + "https://metacpan.org/pod/Qmail::Deliverable::Client#LICENSE", + "https://metacpan.org/pod/Net::MQTT::Simple#LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Apache-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-1.0.json", + "referenceNumber": 635, + "name": "Apache License 1.0", + "licenseId": "Apache-1.0", + "seeAlso": [ + "http://www.apache.org/licenses/LICENSE-1.0" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Apache-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-1.1.json", + "referenceNumber": 586, + "name": "Apache License 1.1", + "licenseId": "Apache-1.1", + "seeAlso": [ + "http://apache.org/licenses/LICENSE-1.1", + "https://opensource.org/licenses/Apache-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Apache-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", + "referenceNumber": 72, + "name": "Apache License 2.0", + "licenseId": "Apache-2.0", + "seeAlso": [ + "https://www.apache.org/licenses/LICENSE-2.0", + "https://opensource.org/licenses/Apache-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/APAFML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APAFML.json", + "referenceNumber": 488, + "name": "Adobe Postscript AFM License", + "licenseId": "APAFML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/APL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APL-1.0.json", + "referenceNumber": 180, + "name": "Adaptive Public License 1.0", + "licenseId": "APL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/APL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/App-s2p.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/App-s2p.json", + "referenceNumber": 514, + "name": "App::s2p License", + "licenseId": "App-s2p", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/App-s2p" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/APSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.0.json", + "referenceNumber": 603, + "name": "Apple Public Source License 1.0", + "licenseId": "APSL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/APSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.1.json", + "referenceNumber": 395, + "name": "Apple Public Source License 1.1", + "licenseId": "APSL-1.1", + "seeAlso": [ + "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/APSL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.2.json", + "referenceNumber": 597, + "name": "Apple Public Source License 1.2", + "licenseId": "APSL-1.2", + "seeAlso": [ + "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/APSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-2.0.json", + "referenceNumber": 400, + "name": "Apple Public Source License 2.0", + "licenseId": "APSL-2.0", + "seeAlso": [ + "http://www.opensource.apple.com/license/apsl/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Arphic-1999.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Arphic-1999.json", + "referenceNumber": 16, + "name": "Arphic Public License", + "licenseId": "Arphic-1999", + "seeAlso": [ + "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0.json", + "referenceNumber": 260, + "name": "Artistic License 1.0", + "licenseId": "Artistic-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Artistic-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0-cl8.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-cl8.json", + "referenceNumber": 533, + "name": "Artistic License 1.0 w/clause 8", + "licenseId": "Artistic-1.0-cl8", + "seeAlso": [ + "https://opensource.org/licenses/Artistic-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0-Perl.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-Perl.json", + "referenceNumber": 406, + "name": "Artistic License 1.0 (Perl)", + "licenseId": "Artistic-1.0-Perl", + "seeAlso": [ + "http://dev.perl.org/licenses/artistic.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Artistic-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-2.0.json", + "referenceNumber": 358, + "name": "Artistic License 2.0", + "licenseId": "Artistic-2.0", + "seeAlso": [ + "http://www.perlfoundation.org/artistic_license_2_0", + "https://www.perlfoundation.org/artistic-license-20.html", + "https://opensource.org/licenses/artistic-license-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json", + "referenceNumber": 602, + "name": "ASWF Digital Assets License version 1.0", + "licenseId": "ASWF-Digital-Assets-1.0", + "seeAlso": [ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.json", + "referenceNumber": 505, + "name": "ASWF Digital Assets License 1.1", + "licenseId": "ASWF-Digital-Assets-1.1", + "seeAlso": [ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Baekmuk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Baekmuk.json", + "referenceNumber": 570, + "name": "Baekmuk License", + "licenseId": "Baekmuk", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd\u003dLicensing/Baekmuk" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bahyph.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bahyph.json", + "referenceNumber": 566, + "name": "Bahyph License", + "licenseId": "Bahyph", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Bahyph" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Barr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Barr.json", + "referenceNumber": 125, + "name": "Barr License", + "licenseId": "Barr", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Barr" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bcrypt-Solar-Designer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/bcrypt-Solar-Designer.json", + "referenceNumber": 673, + "name": "bcrypt Solar Designer License", + "licenseId": "bcrypt-Solar-Designer", + "seeAlso": [ + "https://github.com/bcrypt-ruby/bcrypt-ruby/blob/master/ext/mri/crypt_blowfish.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Beerware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Beerware.json", + "referenceNumber": 651, + "name": "Beerware License", + "licenseId": "Beerware", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Beerware", + "https://people.freebsd.org/~phk/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bitstream-Charter.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bitstream-Charter.json", + "referenceNumber": 77, + "name": "Bitstream Charter Font License", + "licenseId": "Bitstream-Charter", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Charter#License_Text", + "https://raw.githubusercontent.com/blackhole89/notekit/master/data/fonts/Charter%20license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bitstream-Vera.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bitstream-Vera.json", + "referenceNumber": 630, + "name": "Bitstream Vera Font License", + "licenseId": "Bitstream-Vera", + "seeAlso": [ + "https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/", + "https://docubrain.com/sites/default/files/licenses/bitstream-vera.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BitTorrent-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.0.json", + "referenceNumber": 364, + "name": "BitTorrent Open Source License v1.0", + "licenseId": "BitTorrent-1.0", + "seeAlso": [ + "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1\u003d1.1\u0026r2\u003d1.1.1.1\u0026diff_format\u003ds" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BitTorrent-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.1.json", + "referenceNumber": 5, + "name": "BitTorrent Open Source License v1.1", + "licenseId": "BitTorrent-1.1", + "seeAlso": [ + "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/blessing.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/blessing.json", + "referenceNumber": 569, + "name": "SQLite Blessing", + "licenseId": "blessing", + "seeAlso": [ + "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln\u003d4-9", + "https://sqlite.org/src/artifact/df5091916dbb40e6" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BlueOak-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BlueOak-1.0.0.json", + "referenceNumber": 518, + "name": "Blue Oak Model License 1.0.0", + "licenseId": "BlueOak-1.0.0", + "seeAlso": [ + "https://blueoakcouncil.org/license/1.0.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Boehm-GC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Boehm-GC.json", + "referenceNumber": 249, + "name": "Boehm-Demers-Weiser GC License", + "licenseId": "Boehm-GC", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT#Another_Minimal_variant_(found_in_libatomic_ops)", + "https://github.com/uim/libgcroots/blob/master/COPYING", + "https://github.com/ivmai/libatomic_ops/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Boehm-GC-without-fee.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Boehm-GC-without-fee.json", + "referenceNumber": 326, + "name": "Boehm-Demers-Weiser GC License (without fee)", + "licenseId": "Boehm-GC-without-fee", + "seeAlso": [ + "https://github.com/MariaDB/server/blob/11.6/libmysqld/lib_sql.cc" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Borceux.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Borceux.json", + "referenceNumber": 234, + "name": "Borceux license", + "licenseId": "Borceux", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Borceux" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Brian-Gladman-2-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-2-Clause.json", + "referenceNumber": 458, + "name": "Brian Gladman 2-Clause License", + "licenseId": "Brian-Gladman-2-Clause", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L140-L156", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Brian-Gladman-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-3-Clause.json", + "referenceNumber": 179, + "name": "Brian Gladman 3-Clause License", + "licenseId": "Brian-Gladman-3-Clause", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-clib/blob/master/sha1/brg_endian.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-1-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-1-Clause.json", + "referenceNumber": 474, + "name": "BSD 1-Clause License", + "licenseId": "BSD-1-Clause", + "seeAlso": [ + "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision\u003d326823" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", + "referenceNumber": 619, + "name": "BSD 2-Clause \"Simplified\" License", + "licenseId": "BSD-2-Clause", + "seeAlso": [ + "https://opensource.org/licenses/BSD-2-Clause" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Darwin.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Darwin.json", + "referenceNumber": 32, + "name": "BSD 2-Clause - Ian Darwin variant", + "licenseId": "BSD-2-Clause-Darwin", + "seeAlso": [ + "https://github.com/file/file/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-first-lines.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-first-lines.json", + "referenceNumber": 627, + "name": "BSD 2-Clause - first lines requirement", + "licenseId": "BSD-2-Clause-first-lines", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L664-L690", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", + "referenceNumber": 628, + "name": "BSD 2-Clause FreeBSD License", + "licenseId": "BSD-2-Clause-FreeBSD", + "seeAlso": [ + "http://www.freebsd.org/copyright/freebsd-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json", + "referenceNumber": 293, + "name": "BSD 2-Clause NetBSD License", + "licenseId": "BSD-2-Clause-NetBSD", + "seeAlso": [ + "http://www.netbsd.org/about/redistribution.html#default" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Patent.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Patent.json", + "referenceNumber": 230, + "name": "BSD-2-Clause Plus Patent License", + "licenseId": "BSD-2-Clause-Patent", + "seeAlso": [ + "https://opensource.org/licenses/BSDplusPatent" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Views.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Views.json", + "referenceNumber": 553, + "name": "BSD 2-Clause with views sentence", + "licenseId": "BSD-2-Clause-Views", + "seeAlso": [ + "http://www.freebsd.org/copyright/freebsd-license.html", + "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh", + "https://github.com/protegeproject/protege/blob/master/license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", + "referenceNumber": 208, + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "licenseId": "BSD-3-Clause", + "seeAlso": [ + "https://opensource.org/licenses/BSD-3-Clause", + "https://www.eclipse.org/org/documents/edl-v10.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-acpica.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-acpica.json", + "referenceNumber": 554, + "name": "BSD 3-Clause acpica variant", + "licenseId": "BSD-3-Clause-acpica", + "seeAlso": [ + "https://github.com/acpica/acpica/blob/master/source/common/acfileio.c#L119" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Attribution.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Attribution.json", + "referenceNumber": 337, + "name": "BSD with attribution", + "licenseId": "BSD-3-Clause-Attribution", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Clear.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Clear.json", + "referenceNumber": 446, + "name": "BSD 3-Clause Clear License", + "licenseId": "BSD-3-Clause-Clear", + "seeAlso": [ + "http://labs.metacarta.com/license-explanation.html#license" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-flex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-flex.json", + "referenceNumber": 101, + "name": "BSD 3-Clause Flex variant", + "licenseId": "BSD-3-Clause-flex", + "seeAlso": [ + "https://github.com/westes/flex/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-HP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-HP.json", + "referenceNumber": 151, + "name": "Hewlett-Packard BSD variant license", + "licenseId": "BSD-3-Clause-HP", + "seeAlso": [ + "https://github.com/zdohnal/hplip/blob/master/COPYING#L939" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-LBNL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-LBNL.json", + "referenceNumber": 103, + "name": "Lawrence Berkeley National Labs BSD variant license", + "licenseId": "BSD-3-Clause-LBNL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/LBNLBSD" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Modification.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Modification.json", + "referenceNumber": 606, + "name": "BSD 3-Clause Modification", + "licenseId": "BSD-3-Clause-Modification", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.json", + "referenceNumber": 306, + "name": "BSD 3-Clause No Military License", + "licenseId": "BSD-3-Clause-No-Military-License", + "seeAlso": [ + "https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE", + "https://github.com/greymass/swift-eosio/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json", + "referenceNumber": 292, + "name": "BSD 3-Clause No Nuclear License", + "licenseId": "BSD-3-Clause-No-Nuclear-License", + "seeAlso": [ + "http://download.oracle.com/otn-pub/java/licenses/bsd.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json", + "referenceNumber": 109, + "name": "BSD 3-Clause No Nuclear License 2014", + "licenseId": "BSD-3-Clause-No-Nuclear-License-2014", + "seeAlso": [ + "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json", + "referenceNumber": 352, + "name": "BSD 3-Clause No Nuclear Warranty", + "licenseId": "BSD-3-Clause-No-Nuclear-Warranty", + "seeAlso": [ + "https://jogamp.org/git/?p\u003dgluegen.git;a\u003dblob_plain;f\u003dLICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json", + "referenceNumber": 92, + "name": "BSD 3-Clause Open MPI variant", + "licenseId": "BSD-3-Clause-Open-MPI", + "seeAlso": [ + "https://www.open-mpi.org/community/license.php", + "http://www.netlib.org/lapack/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Sun.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Sun.json", + "referenceNumber": 110, + "name": "BSD 3-Clause Sun Microsystems", + "licenseId": "BSD-3-Clause-Sun", + "seeAlso": [ + "https://github.com/xmlark/msv/blob/b9316e2f2270bc1606952ea4939ec87fbba157f3/xsdlib/src/main/java/com/sun/msv/datatype/regexp/InternalImpl.java" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause.json", + "referenceNumber": 165, + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "licenseId": "BSD-4-Clause", + "seeAlso": [ + "http://directory.fsf.org/wiki/License:BSD_4Clause" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause-Shortened.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-Shortened.json", + "referenceNumber": 269, + "name": "BSD 4 Clause Shortened", + "licenseId": "BSD-4-Clause-Shortened", + "seeAlso": [ + "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause-UC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-UC.json", + "referenceNumber": 108, + "name": "BSD-4-Clause (University of California-Specific)", + "licenseId": "BSD-4-Clause-UC", + "seeAlso": [ + "http://www.freebsd.org/copyright/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4.3RENO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4.3RENO.json", + "referenceNumber": 556, + "name": "BSD 4.3 RENO License", + "licenseId": "BSD-4.3RENO", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dlibiberty/strcasecmp.c;h\u003d131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb\u003dHEAD", + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT#L55-63" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4.3TAHOE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4.3TAHOE.json", + "referenceNumber": 6, + "name": "BSD 4.3 TAHOE License", + "licenseId": "BSD-4.3TAHOE", + "seeAlso": [ + "https://github.com/389ds/389-ds-base/blob/main/ldap/include/sysexits-compat.h#L15", + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id\u003da74c6b4ee49397cf330b333da1042bffa60ed14f#n1788" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json", + "referenceNumber": 558, + "name": "BSD Advertising Acknowledgement License", + "licenseId": "BSD-Advertising-Acknowledgement", + "seeAlso": [ + "https://github.com/python-excel/xlrd/blob/master/LICENSE#L33" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.json", + "referenceNumber": 663, + "name": "BSD with Attribution and HPND disclaimer", + "licenseId": "BSD-Attribution-HPND-disclaimer", + "seeAlso": [ + "https://github.com/cyrusimap/cyrus-sasl/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Inferno-Nettverk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Inferno-Nettverk.json", + "referenceNumber": 98, + "name": "BSD-Inferno-Nettverk", + "licenseId": "BSD-Inferno-Nettverk", + "seeAlso": [ + "https://www.inet.no/dante/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Protection.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Protection.json", + "referenceNumber": 60, + "name": "BSD Protection License", + "licenseId": "BSD-Protection", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Source-beginning-file.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Source-beginning-file.json", + "referenceNumber": 544, + "name": "BSD Source Code Attribution - beginning of file variant", + "licenseId": "BSD-Source-beginning-file", + "seeAlso": [ + "https://github.com/lattera/freebsd/blob/master/sys/cam/cam.c#L4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Source-Code.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Source-Code.json", + "referenceNumber": 379, + "name": "BSD Source Code Attribution", + "licenseId": "BSD-Source-Code", + "seeAlso": [ + "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Systemics.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Systemics.json", + "referenceNumber": 251, + "name": "Systemics BSD variant license", + "licenseId": "BSD-Systemics", + "seeAlso": [ + "https://metacpan.org/release/DPARIS/Crypt-DES-2.07/source/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Systemics-W3Works.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Systemics-W3Works.json", + "referenceNumber": 199, + "name": "Systemics W3Works BSD variant license", + "licenseId": "BSD-Systemics-W3Works", + "seeAlso": [ + "https://metacpan.org/release/DPARIS/Crypt-Blowfish-2.14/source/COPYRIGHT#L7" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSL-1.0.json", + "referenceNumber": 454, + "name": "Boost Software License 1.0", + "licenseId": "BSL-1.0", + "seeAlso": [ + "http://www.boost.org/LICENSE_1_0.txt", + "https://opensource.org/licenses/BSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BUSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BUSL-1.1.json", + "referenceNumber": 127, + "name": "Business Source License 1.1", + "licenseId": "BUSL-1.1", + "seeAlso": [ + "https://mariadb.com/bsl11/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bzip2-1.0.5.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.5.json", + "referenceNumber": 511, + "name": "bzip2 and libbzip2 License v1.0.5", + "licenseId": "bzip2-1.0.5", + "seeAlso": [ + "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bzip2-1.0.6.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.6.json", + "referenceNumber": 141, + "name": "bzip2 and libbzip2 License v1.0.6", + "licenseId": "bzip2-1.0.6", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dbzip2.git;a\u003dblob;f\u003dLICENSE;hb\u003dbzip2-1.0.6", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + "https://sourceware.org/cgit/valgrind/tree/mpi/libmpiwrap.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/C-UDA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/C-UDA-1.0.json", + "referenceNumber": 376, + "name": "Computational Use of Data Agreement v1.0", + "licenseId": "C-UDA-1.0", + "seeAlso": [ + "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md", + "https://cdla.dev/computational-use-of-data-agreement-v1-0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CAL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CAL-1.0.json", + "referenceNumber": 191, + "name": "Cryptographic Autonomy License 1.0", + "licenseId": "CAL-1.0", + "seeAlso": [ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json", + "referenceNumber": 540, + "name": "Cryptographic Autonomy License 1.0 (Combined Work Exception)", + "licenseId": "CAL-1.0-Combined-Work-Exception", + "seeAlso": [ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Caldera.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Caldera.json", + "referenceNumber": 371, + "name": "Caldera License", + "licenseId": "Caldera", + "seeAlso": [ + "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Caldera-no-preamble.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Caldera-no-preamble.json", + "referenceNumber": 668, + "name": "Caldera License (without preamble)", + "licenseId": "Caldera-no-preamble", + "seeAlso": [ + "https://github.com/apache/apr/blob/trunk/LICENSE#L298C6-L298C29" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Catharon.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Catharon.json", + "referenceNumber": 86, + "name": "Catharon License", + "licenseId": "Catharon", + "seeAlso": [ + "https://github.com/scummvm/scummvm/blob/v2.8.0/LICENSES/CatharonLicense.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CATOSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CATOSL-1.1.json", + "referenceNumber": 435, + "name": "Computer Associates Trusted Open Source License 1.1", + "licenseId": "CATOSL-1.1", + "seeAlso": [ + "https://opensource.org/licenses/CATOSL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CC-BY-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-1.0.json", + "referenceNumber": 660, + "name": "Creative Commons Attribution 1.0 Generic", + "licenseId": "CC-BY-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.0.json", + "referenceNumber": 57, + "name": "Creative Commons Attribution 2.0 Generic", + "licenseId": "CC-BY-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5.json", + "referenceNumber": 336, + "name": "Creative Commons Attribution 2.5 Generic", + "licenseId": "CC-BY-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.5-AU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5-AU.json", + "referenceNumber": 380, + "name": "Creative Commons Attribution 2.5 Australia", + "licenseId": "CC-BY-2.5-AU", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.5/au/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0.json", + "referenceNumber": 158, + "name": "Creative Commons Attribution 3.0 Unported", + "licenseId": "CC-BY-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-AT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AT.json", + "referenceNumber": 296, + "name": "Creative Commons Attribution 3.0 Austria", + "licenseId": "CC-BY-3.0-AT", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/at/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-AU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AU.json", + "referenceNumber": 536, + "name": "Creative Commons Attribution 3.0 Australia", + "licenseId": "CC-BY-3.0-AU", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/au/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-DE.json", + "referenceNumber": 256, + "name": "Creative Commons Attribution 3.0 Germany", + "licenseId": "CC-BY-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-IGO.json", + "referenceNumber": 114, + "name": "Creative Commons Attribution 3.0 IGO", + "licenseId": "CC-BY-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-NL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-NL.json", + "referenceNumber": 132, + "name": "Creative Commons Attribution 3.0 Netherlands", + "licenseId": "CC-BY-3.0-NL", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/nl/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-US.json", + "referenceNumber": 483, + "name": "Creative Commons Attribution 3.0 United States", + "licenseId": "CC-BY-3.0-US", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/us/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-4.0.json", + "referenceNumber": 91, + "name": "Creative Commons Attribution 4.0 International", + "licenseId": "CC-BY-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-1.0.json", + "referenceNumber": 525, + "name": "Creative Commons Attribution Non Commercial 1.0 Generic", + "licenseId": "CC-BY-NC-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.0.json", + "referenceNumber": 217, + "name": "Creative Commons Attribution Non Commercial 2.0 Generic", + "licenseId": "CC-BY-NC-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/2.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.5.json", + "referenceNumber": 374, + "name": "Creative Commons Attribution Non Commercial 2.5 Generic", + "licenseId": "CC-BY-NC-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/2.5/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0.json", + "referenceNumber": 517, + "name": "Creative Commons Attribution Non Commercial 3.0 Unported", + "licenseId": "CC-BY-NC-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/3.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.json", + "referenceNumber": 519, + "name": "Creative Commons Attribution Non Commercial 3.0 Germany", + "licenseId": "CC-BY-NC-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-4.0.json", + "referenceNumber": 247, + "name": "Creative Commons Attribution Non Commercial 4.0 International", + "licenseId": "CC-BY-NC-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json", + "referenceNumber": 95, + "name": "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", + "licenseId": "CC-BY-NC-ND-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.json", + "referenceNumber": 214, + "name": "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", + "licenseId": "CC-BY-NC-ND-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.json", + "referenceNumber": 40, + "name": "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", + "licenseId": "CC-BY-NC-ND-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json", + "referenceNumber": 53, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", + "licenseId": "CC-BY-NC-ND-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json", + "referenceNumber": 112, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", + "licenseId": "CC-BY-NC-ND-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json", + "referenceNumber": 659, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", + "licenseId": "CC-BY-NC-ND-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.json", + "referenceNumber": 353, + "name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "licenseId": "CC-BY-NC-ND-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.json", + "referenceNumber": 416, + "name": "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", + "licenseId": "CC-BY-NC-SA-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json", + "referenceNumber": 676, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", + "licenseId": "CC-BY-NC-SA-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json", + "referenceNumber": 96, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Germany", + "licenseId": "CC-BY-NC-SA-2.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json", + "referenceNumber": 467, + "name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", + "licenseId": "CC-BY-NC-SA-2.0-FR", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json", + "referenceNumber": 122, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", + "licenseId": "CC-BY-NC-SA-2.0-UK", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json", + "referenceNumber": 478, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", + "licenseId": "CC-BY-NC-SA-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json", + "referenceNumber": 584, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", + "licenseId": "CC-BY-NC-SA-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json", + "referenceNumber": 546, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", + "licenseId": "CC-BY-NC-SA-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json", + "referenceNumber": 636, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", + "licenseId": "CC-BY-NC-SA-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json", + "referenceNumber": 390, + "name": "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + "licenseId": "CC-BY-NC-SA-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-1.0.json", + "referenceNumber": 323, + "name": "Creative Commons Attribution No Derivatives 1.0 Generic", + "licenseId": "CC-BY-ND-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.0.json", + "referenceNumber": 51, + "name": "Creative Commons Attribution No Derivatives 2.0 Generic", + "licenseId": "CC-BY-ND-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/2.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.5.json", + "referenceNumber": 620, + "name": "Creative Commons Attribution No Derivatives 2.5 Generic", + "licenseId": "CC-BY-ND-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/2.5/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0.json", + "referenceNumber": 493, + "name": "Creative Commons Attribution No Derivatives 3.0 Unported", + "licenseId": "CC-BY-ND-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/3.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.json", + "referenceNumber": 303, + "name": "Creative Commons Attribution No Derivatives 3.0 Germany", + "licenseId": "CC-BY-ND-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-4.0.json", + "referenceNumber": 244, + "name": "Creative Commons Attribution No Derivatives 4.0 International", + "licenseId": "CC-BY-ND-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-1.0.json", + "referenceNumber": 447, + "name": "Creative Commons Attribution Share Alike 1.0 Generic", + "licenseId": "CC-BY-SA-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0.json", + "referenceNumber": 414, + "name": "Creative Commons Attribution Share Alike 2.0 Generic", + "licenseId": "CC-BY-SA-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json", + "referenceNumber": 639, + "name": "Creative Commons Attribution Share Alike 2.0 England and Wales", + "licenseId": "CC-BY-SA-2.0-UK", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json", + "referenceNumber": 295, + "name": "Creative Commons Attribution Share Alike 2.1 Japan", + "licenseId": "CC-BY-SA-2.1-JP", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.5.json", + "referenceNumber": 378, + "name": "Creative Commons Attribution Share Alike 2.5 Generic", + "licenseId": "CC-BY-SA-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0.json", + "referenceNumber": 268, + "name": "Creative Commons Attribution Share Alike 3.0 Unported", + "licenseId": "CC-BY-SA-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.json", + "referenceNumber": 600, + "name": "Creative Commons Attribution Share Alike 3.0 Austria", + "licenseId": "CC-BY-SA-3.0-AT", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json", + "referenceNumber": 104, + "name": "Creative Commons Attribution Share Alike 3.0 Germany", + "licenseId": "CC-BY-SA-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json", + "referenceNumber": 239, + "name": "Creative Commons Attribution-ShareAlike 3.0 IGO", + "licenseId": "CC-BY-SA-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-4.0.json", + "referenceNumber": 471, + "name": "Creative Commons Attribution Share Alike 4.0 International", + "licenseId": "CC-BY-SA-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CC-PDDC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-PDDC.json", + "referenceNumber": 487, + "name": "Creative Commons Public Domain Dedication and Certification", + "licenseId": "CC-PDDC", + "seeAlso": [ + "https://creativecommons.org/licenses/publicdomain/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-PDM-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-PDM-1.0.json", + "referenceNumber": 363, + "name": "Creative Commons Public Domain Mark 1.0 Universal", + "licenseId": "CC-PDM-1.0", + "seeAlso": [ + "https://creativecommons.org/publicdomain/mark/1.0/", + "https://creativecommons.org/share-your-work/cclicenses/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-SA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-SA-1.0.json", + "referenceNumber": 49, + "name": "Creative Commons Share Alike 1.0 Generic", + "licenseId": "CC-SA-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/sa/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC0-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC0-1.0.json", + "referenceNumber": 641, + "name": "Creative Commons Zero v1.0 Universal", + "licenseId": "CC0-1.0", + "seeAlso": [ + "https://creativecommons.org/publicdomain/zero/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CDDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDDL-1.0.json", + "referenceNumber": 574, + "name": "Common Development and Distribution License 1.0", + "licenseId": "CDDL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/cddl1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CDDL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDDL-1.1.json", + "referenceNumber": 490, + "name": "Common Development and Distribution License 1.1", + "licenseId": "CDDL-1.1", + "seeAlso": [ + "http://glassfish.java.net/public/CDDL+GPL_1_1.html", + "https://javaee.github.io/glassfish/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDL-1.0.json", + "referenceNumber": 532, + "name": "Common Documentation License 1.0", + "licenseId": "CDL-1.0", + "seeAlso": [ + "http://www.opensource.apple.com/cdl/", + "https://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "https://www.gnu.org/licenses/license-list.html#ACDL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Permissive-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-1.0.json", + "referenceNumber": 531, + "name": "Community Data License Agreement Permissive 1.0", + "licenseId": "CDLA-Permissive-1.0", + "seeAlso": [ + "https://cdla.io/permissive-1-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Permissive-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-2.0.json", + "referenceNumber": 409, + "name": "Community Data License Agreement Permissive 2.0", + "licenseId": "CDLA-Permissive-2.0", + "seeAlso": [ + "https://cdla.dev/permissive-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Sharing-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Sharing-1.0.json", + "referenceNumber": 201, + "name": "Community Data License Agreement Sharing 1.0", + "licenseId": "CDLA-Sharing-1.0", + "seeAlso": [ + "https://cdla.io/sharing-1-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-1.0.json", + "referenceNumber": 280, + "name": "CeCILL Free Software License Agreement v1.0", + "licenseId": "CECILL-1.0", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-1.1.json", + "referenceNumber": 185, + "name": "CeCILL Free Software License Agreement v1.1", + "licenseId": "CECILL-1.1", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-2.0.json", + "referenceNumber": 171, + "name": "CeCILL Free Software License Agreement v2.0", + "licenseId": "CECILL-2.0", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-2.1.json", + "referenceNumber": 599, + "name": "CeCILL Free Software License Agreement v2.1", + "licenseId": "CECILL-2.1", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-B.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-B.json", + "referenceNumber": 450, + "name": "CeCILL-B Free Software License Agreement", + "licenseId": "CECILL-B", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-C.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-C.json", + "referenceNumber": 257, + "name": "CeCILL-C Free Software License Agreement", + "licenseId": "CECILL-C", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.1.json", + "referenceNumber": 520, + "name": "CERN Open Hardware Licence v1.1", + "licenseId": "CERN-OHL-1.1", + "seeAlso": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.2.json", + "referenceNumber": 626, + "name": "CERN Open Hardware Licence v1.2", + "licenseId": "CERN-OHL-1.2", + "seeAlso": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-P-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-P-2.0.json", + "referenceNumber": 551, + "name": "CERN Open Hardware Licence Version 2 - Permissive", + "licenseId": "CERN-OHL-P-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-S-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-S-2.0.json", + "referenceNumber": 516, + "name": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", + "licenseId": "CERN-OHL-S-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-W-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-W-2.0.json", + "referenceNumber": 396, + "name": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", + "licenseId": "CERN-OHL-W-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CFITSIO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CFITSIO.json", + "referenceNumber": 263, + "name": "CFITSIO License", + "licenseId": "CFITSIO", + "seeAlso": [ + "https://heasarc.gsfc.nasa.gov/docs/software/fitsio/c/f_user/node9.html", + "https://heasarc.gsfc.nasa.gov/docs/software/ftools/fv/doc/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/check-cvs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/check-cvs.json", + "referenceNumber": 320, + "name": "check-cvs License", + "licenseId": "check-cvs", + "seeAlso": [ + "http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/contrib/check_cvs.in?revision\u003d1.1.4.3\u0026view\u003dmarkup\u0026pathrev\u003dcvs1-11-23#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/checkmk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/checkmk.json", + "referenceNumber": 206, + "name": "Checkmk License", + "licenseId": "checkmk", + "seeAlso": [ + "https://github.com/libcheck/check/blob/master/checkmk/checkmk.in" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ClArtistic.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ClArtistic.json", + "referenceNumber": 640, + "name": "Clarified Artistic License", + "licenseId": "ClArtistic", + "seeAlso": [ + "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/", + "http://www.ncftp.com/ncftp/doc/LICENSE.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Clips.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Clips.json", + "referenceNumber": 542, + "name": "Clips License", + "licenseId": "Clips", + "seeAlso": [ + "https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CMU-Mach.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CMU-Mach.json", + "referenceNumber": 322, + "name": "CMU Mach License", + "licenseId": "CMU-Mach", + "seeAlso": [ + "https://www.cs.cmu.edu/~410/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CMU-Mach-nodoc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CMU-Mach-nodoc.json", + "referenceNumber": 388, + "name": "CMU Mach - no notices-in-documentation variant", + "licenseId": "CMU-Mach-nodoc", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L718-L728", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CNRI-Jython.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Jython.json", + "referenceNumber": 654, + "name": "CNRI Jython License", + "licenseId": "CNRI-Jython", + "seeAlso": [ + "http://www.jython.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CNRI-Python.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Python.json", + "referenceNumber": 240, + "name": "CNRI Python License", + "licenseId": "CNRI-Python", + "seeAlso": [ + "https://opensource.org/licenses/CNRI-Python" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json", + "referenceNumber": 423, + "name": "CNRI Python Open Source GPL Compatible License Agreement", + "licenseId": "CNRI-Python-GPL-Compatible", + "seeAlso": [ + "http://www.python.org/download/releases/1.6.1/download_win/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/COIL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/COIL-1.0.json", + "referenceNumber": 436, + "name": "Copyfree Open Innovation License", + "licenseId": "COIL-1.0", + "seeAlso": [ + "https://coil.apotheon.org/plaintext/01.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Community-Spec-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Community-Spec-1.0.json", + "referenceNumber": 370, + "name": "Community Specification License 1.0", + "licenseId": "Community-Spec-1.0", + "seeAlso": [ + "https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Condor-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Condor-1.1.json", + "referenceNumber": 365, + "name": "Condor Public License v1.1", + "licenseId": "Condor-1.1", + "seeAlso": [ + "http://research.cs.wisc.edu/condor/license.html#condor", + "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/copyleft-next-0.3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.0.json", + "referenceNumber": 140, + "name": "copyleft-next 0.3.0", + "licenseId": "copyleft-next-0.3.0", + "seeAlso": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/copyleft-next-0.3.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.1.json", + "referenceNumber": 381, + "name": "copyleft-next 0.3.1", + "licenseId": "copyleft-next-0.3.1", + "seeAlso": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Cornell-Lossless-JPEG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cornell-Lossless-JPEG.json", + "referenceNumber": 633, + "name": "Cornell Lossless JPEG License", + "licenseId": "Cornell-Lossless-JPEG", + "seeAlso": [ + "https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/source/dng_lossless_jpeg.cpp#16", + "https://www.mssl.ucl.ac.uk/~mcrw/src/20050920/proto.h", + "https://gitlab.freedesktop.org/libopenraw/libopenraw/blob/master/lib/ljpegdecompressor.cpp#L32" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CPAL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPAL-1.0.json", + "referenceNumber": 367, + "name": "Common Public Attribution License 1.0", + "licenseId": "CPAL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CPAL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPL-1.0.json", + "referenceNumber": 347, + "name": "Common Public License 1.0", + "licenseId": "CPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CPOL-1.02.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPOL-1.02.json", + "referenceNumber": 426, + "name": "Code Project Open License 1.02", + "licenseId": "CPOL-1.02", + "seeAlso": [ + "http://www.codeproject.com/info/cpol10.aspx" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Cronyx.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cronyx.json", + "referenceNumber": 193, + "name": "Cronyx License", + "licenseId": "Cronyx", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/alias/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/cronyx-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/misc-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/screen-cyrillic/-/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Crossword.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Crossword.json", + "referenceNumber": 340, + "name": "Crossword License", + "licenseId": "Crossword", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Crossword" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CrystalStacker.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CrystalStacker.json", + "referenceNumber": 539, + "name": "CrystalStacker License", + "licenseId": "CrystalStacker", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd\u003dLicensing/CrystalStacker" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CUA-OPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CUA-OPL-1.0.json", + "referenceNumber": 69, + "name": "CUA Office Public License v1.0", + "licenseId": "CUA-OPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CUA-OPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Cube.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cube.json", + "referenceNumber": 93, + "name": "Cube License", + "licenseId": "Cube", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Cube" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/curl.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/curl.json", + "referenceNumber": 623, + "name": "curl License", + "licenseId": "curl", + "seeAlso": [ + "https://github.com/bagder/curl/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/cve-tou.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/cve-tou.json", + "referenceNumber": 583, + "name": "Common Vulnerability Enumeration ToU License", + "licenseId": "cve-tou", + "seeAlso": [ + "https://www.cve.org/Legal/TermsOfUse" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/D-FSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/D-FSL-1.0.json", + "referenceNumber": 657, + "name": "Deutsche Freie Software Lizenz", + "licenseId": "D-FSL-1.0", + "seeAlso": [ + "http://www.dipp.nrw.de/d-fsl/lizenzen/", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DEC-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DEC-3-Clause.json", + "referenceNumber": 18, + "name": "DEC 3-Clause License", + "licenseId": "DEC-3-Clause", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L239" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/diffmark.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/diffmark.json", + "referenceNumber": 54, + "name": "diffmark license", + "licenseId": "diffmark", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/diffmark" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DL-DE-BY-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DL-DE-BY-2.0.json", + "referenceNumber": 275, + "name": "Data licence Germany – attribution – version 2.0", + "licenseId": "DL-DE-BY-2.0", + "seeAlso": [ + "https://www.govdata.de/dl-de/by-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DL-DE-ZERO-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DL-DE-ZERO-2.0.json", + "referenceNumber": 572, + "name": "Data licence Germany – zero – version 2.0", + "licenseId": "DL-DE-ZERO-2.0", + "seeAlso": [ + "https://www.govdata.de/dl-de/zero-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DOC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DOC.json", + "referenceNumber": 289, + "name": "DOC License", + "licenseId": "DOC", + "seeAlso": [ + "http://www.cs.wustl.edu/~schmidt/ACE-copying.html", + "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DocBook-Schema.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DocBook-Schema.json", + "referenceNumber": 274, + "name": "DocBook Schema License", + "licenseId": "DocBook-Schema", + "seeAlso": [ + "https://github.com/docbook/xslt10-stylesheets/blob/efd62655c11cc8773708df7a843613fa1e932bf8/xsl/assembly/schema/docbook51b7.rnc" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DocBook-Stylesheet.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DocBook-Stylesheet.json", + "referenceNumber": 596, + "name": "DocBook Stylesheet License", + "licenseId": "DocBook-Stylesheet", + "seeAlso": [ + "http://www.docbook.org/xml/5.0/docbook-5.0.zip" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DocBook-XML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DocBook-XML.json", + "referenceNumber": 609, + "name": "DocBook XML License", + "licenseId": "DocBook-XML", + "seeAlso": [ + "https://github.com/docbook/xslt10-stylesheets/blob/efd62655c11cc8773708df7a843613fa1e932bf8/xsl/COPYING#L27" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Dotseqn.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Dotseqn.json", + "referenceNumber": 330, + "name": "Dotseqn License", + "licenseId": "Dotseqn", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Dotseqn" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DRL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DRL-1.0.json", + "referenceNumber": 338, + "name": "Detection Rule License 1.0", + "licenseId": "DRL-1.0", + "seeAlso": [ + "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DRL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DRL-1.1.json", + "referenceNumber": 223, + "name": "Detection Rule License 1.1", + "licenseId": "DRL-1.1", + "seeAlso": [ + "https://github.com/SigmaHQ/Detection-Rule-License/blob/6ec7fbde6101d101b5b5d1fcb8f9b69fbc76c04a/LICENSE.Detection.Rules.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DSDP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DSDP.json", + "referenceNumber": 470, + "name": "DSDP License", + "licenseId": "DSDP", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/DSDP" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/dtoa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/dtoa.json", + "referenceNumber": 355, + "name": "David M. Gay dtoa License", + "licenseId": "dtoa", + "seeAlso": [ + "https://github.com/SWI-Prolog/swipl-devel/blob/master/src/os/dtoa.c", + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/stdlib/mprec.h;hb\u003dHEAD" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/dvipdfm.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/dvipdfm.json", + "referenceNumber": 118, + "name": "dvipdfm License", + "licenseId": "dvipdfm", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/dvipdfm" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ECL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ECL-1.0.json", + "referenceNumber": 85, + "name": "Educational Community License v1.0", + "licenseId": "ECL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/ECL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ECL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ECL-2.0.json", + "referenceNumber": 7, + "name": "Educational Community License v2.0", + "licenseId": "ECL-2.0", + "seeAlso": [ + "https://opensource.org/licenses/ECL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/eCos-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/eCos-2.0.json", + "referenceNumber": 169, + "name": "eCos license version 2.0", + "licenseId": "eCos-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/ecos-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EFL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EFL-1.0.json", + "referenceNumber": 464, + "name": "Eiffel Forum License v1.0", + "licenseId": "EFL-1.0", + "seeAlso": [ + "http://www.eiffel-nice.org/license/forum.txt", + "https://opensource.org/licenses/EFL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/EFL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EFL-2.0.json", + "referenceNumber": 585, + "name": "Eiffel Forum License v2.0", + "licenseId": "EFL-2.0", + "seeAlso": [ + "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", + "https://opensource.org/licenses/EFL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/eGenix.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/eGenix.json", + "referenceNumber": 465, + "name": "eGenix.com Public License 1.1.0", + "licenseId": "eGenix", + "seeAlso": [ + "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", + "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Elastic-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Elastic-2.0.json", + "referenceNumber": 232, + "name": "Elastic License 2.0", + "licenseId": "Elastic-2.0", + "seeAlso": [ + "https://www.elastic.co/licensing/elastic-license", + "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Entessa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Entessa.json", + "referenceNumber": 250, + "name": "Entessa Public License v1.0", + "licenseId": "Entessa", + "seeAlso": [ + "https://opensource.org/licenses/Entessa" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/EPICS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPICS.json", + "referenceNumber": 184, + "name": "EPICS Open License", + "licenseId": "EPICS", + "seeAlso": [ + "https://epics.anl.gov/license/open.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPL-1.0.json", + "referenceNumber": 359, + "name": "Eclipse Public License 1.0", + "licenseId": "EPL-1.0", + "seeAlso": [ + "http://www.eclipse.org/legal/epl-v10.html", + "https://opensource.org/licenses/EPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPL-2.0.json", + "referenceNumber": 669, + "name": "Eclipse Public License 2.0", + "licenseId": "EPL-2.0", + "seeAlso": [ + "https://www.eclipse.org/legal/epl-2.0", + "https://www.opensource.org/licenses/EPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ErlPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ErlPL-1.1.json", + "referenceNumber": 327, + "name": "Erlang Public License v1.1", + "licenseId": "ErlPL-1.1", + "seeAlso": [ + "http://www.erlang.org/EPLICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/etalab-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/etalab-2.0.json", + "referenceNumber": 459, + "name": "Etalab Open License 2.0", + "licenseId": "etalab-2.0", + "seeAlso": [ + "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", + "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EUDatagrid.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUDatagrid.json", + "referenceNumber": 283, + "name": "EU DataGrid Software License", + "licenseId": "EUDatagrid", + "seeAlso": [ + "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", + "https://opensource.org/licenses/EUDatagrid" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.0.json", + "referenceNumber": 614, + "name": "European Union Public License 1.0", + "licenseId": "EUPL-1.0", + "seeAlso": [ + "http://ec.europa.eu/idabc/en/document/7330.html", + "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id\u003d31096" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.1.json", + "referenceNumber": 589, + "name": "European Union Public License 1.1", + "licenseId": "EUPL-1.1", + "seeAlso": [ + "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", + "https://opensource.org/licenses/EUPL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.2.json", + "referenceNumber": 472, + "name": "European Union Public License 1.2", + "licenseId": "EUPL-1.2", + "seeAlso": [ + "https://joinup.ec.europa.eu/page/eupl-text-11-12", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt", + "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", + "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri\u003dCELEX:32017D0863", + "https://opensource.org/licenses/EUPL-1.2" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Eurosym.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Eurosym.json", + "referenceNumber": 10, + "name": "Eurosym License", + "licenseId": "Eurosym", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Eurosym" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Fair.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Fair.json", + "referenceNumber": 577, + "name": "Fair License", + "licenseId": "Fair", + "seeAlso": [ + "https://web.archive.org/web/20150926120323/http://fairlicense.org/", + "https://opensource.org/licenses/Fair" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/FBM.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FBM.json", + "referenceNumber": 496, + "name": "Fuzzy Bitmap License", + "licenseId": "FBM", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-xpce/blob/161a40cd82004f731ba48024f9d30af388a7edf5/src/img/gifwrite.c#L21-L26" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FDK-AAC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FDK-AAC.json", + "referenceNumber": 417, + "name": "Fraunhofer FDK AAC Codec Library", + "licenseId": "FDK-AAC", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FDK-AAC", + "https://directory.fsf.org/wiki/License:Fdk" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Ferguson-Twofish.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ferguson-Twofish.json", + "referenceNumber": 252, + "name": "Ferguson Twofish License", + "licenseId": "Ferguson-Twofish", + "seeAlso": [ + "https://github.com/wernerd/ZRTPCPP/blob/6b3cd8e6783642292bad0c21e3e5e5ce45ff3e03/cryptcommon/twofish.c#L113C3-L127" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Frameworx-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Frameworx-1.0.json", + "referenceNumber": 415, + "name": "Frameworx Open License 1.0", + "licenseId": "Frameworx-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Frameworx-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/FreeBSD-DOC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FreeBSD-DOC.json", + "referenceNumber": 300, + "name": "FreeBSD Documentation License", + "licenseId": "FreeBSD-DOC", + "seeAlso": [ + "https://www.freebsd.org/copyright/freebsd-doc-license/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FreeImage.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FreeImage.json", + "referenceNumber": 3, + "name": "FreeImage Public License v1.0", + "licenseId": "FreeImage", + "seeAlso": [ + "http://freeimage.sourceforge.net/freeimage-license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFAP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFAP.json", + "referenceNumber": 286, + "name": "FSF All Permissive License", + "licenseId": "FSFAP", + "seeAlso": [ + "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.json", + "referenceNumber": 160, + "name": "FSF All Permissive License (without Warranty)", + "licenseId": "FSFAP-no-warranty-disclaimer", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/wget.git/tree/util/trunc.c?h\u003dv1.21.3\u0026id\u003d40747a11e44ced5a8ac628a41f879ced3e2ebce9#n6" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFUL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFUL.json", + "referenceNumber": 183, + "name": "FSF Unlimited License", + "licenseId": "FSFUL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFULLR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFULLR.json", + "referenceNumber": 152, + "name": "FSF Unlimited License (with License Retention)", + "licenseId": "FSFULLR", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFULLRWD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFULLRWD.json", + "referenceNumber": 579, + "name": "FSF Unlimited License (With License Retention and Warranty Disclaimer)", + "licenseId": "FSFULLRWD", + "seeAlso": [ + "https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FTL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FTL.json", + "referenceNumber": 453, + "name": "Freetype Project License", + "licenseId": "FTL", + "seeAlso": [ + "http://freetype.fis.uniroma2.it/FTL.TXT", + "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT", + "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Furuseth.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Furuseth.json", + "referenceNumber": 439, + "name": "Furuseth License", + "licenseId": "Furuseth", + "seeAlso": [ + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT?ref_type\u003dheads#L39-51" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/fwlw.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/fwlw.json", + "referenceNumber": 237, + "name": "fwlw License", + "licenseId": "fwlw", + "seeAlso": [ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GCR-docs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GCR-docs.json", + "referenceNumber": 149, + "name": "Gnome GCR Documentation License", + "licenseId": "GCR-docs", + "seeAlso": [ + "https://github.com/GNOME/gcr/blob/master/docs/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GD.json", + "referenceNumber": 279, + "name": "GD License", + "licenseId": "GD", + "seeAlso": [ + "https://libgd.github.io/manuals/2.3.0/files/license-txt.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/generic-xts.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/generic-xts.json", + "referenceNumber": 62, + "name": "Generic XTS License", + "licenseId": "generic-xts", + "seeAlso": [ + "https://github.com/mhogomchungu/zuluCrypt/blob/master/external_libraries/tcplay/generic_xts.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1.json", + "referenceNumber": 662, + "name": "GNU Free Documentation License v1.1", + "licenseId": "GFDL-1.1", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-only.json", + "referenceNumber": 270, + "name": "GNU Free Documentation License v1.1 only - invariants", + "licenseId": "GFDL-1.1-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json", + "referenceNumber": 241, + "name": "GNU Free Documentation License v1.1 or later - invariants", + "licenseId": "GFDL-1.1-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json", + "referenceNumber": 482, + "name": "GNU Free Documentation License v1.1 only - no invariants", + "licenseId": "GFDL-1.1-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json", + "referenceNumber": 402, + "name": "GNU Free Documentation License v1.1 or later - no invariants", + "licenseId": "GFDL-1.1-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-only.json", + "referenceNumber": 386, + "name": "GNU Free Documentation License v1.1 only", + "licenseId": "GFDL-1.1-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-or-later.json", + "referenceNumber": 611, + "name": "GNU Free Documentation License v1.1 or later", + "licenseId": "GFDL-1.1-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2.json", + "referenceNumber": 486, + "name": "GNU Free Documentation License v1.2", + "licenseId": "GFDL-1.2", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-only.json", + "referenceNumber": 115, + "name": "GNU Free Documentation License v1.2 only - invariants", + "licenseId": "GFDL-1.2-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json", + "referenceNumber": 594, + "name": "GNU Free Documentation License v1.2 or later - invariants", + "licenseId": "GFDL-1.2-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.json", + "referenceNumber": 61, + "name": "GNU Free Documentation License v1.2 only - no invariants", + "licenseId": "GFDL-1.2-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json", + "referenceNumber": 228, + "name": "GNU Free Documentation License v1.2 or later - no invariants", + "licenseId": "GFDL-1.2-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-only.json", + "referenceNumber": 384, + "name": "GNU Free Documentation License v1.2 only", + "licenseId": "GFDL-1.2-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-or-later.json", + "referenceNumber": 178, + "name": "GNU Free Documentation License v1.2 or later", + "licenseId": "GFDL-1.2-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3.json", + "referenceNumber": 233, + "name": "GNU Free Documentation License v1.3", + "licenseId": "GFDL-1.3", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-only.json", + "referenceNumber": 509, + "name": "GNU Free Documentation License v1.3 only - invariants", + "licenseId": "GFDL-1.3-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json", + "referenceNumber": 186, + "name": "GNU Free Documentation License v1.3 or later - invariants", + "licenseId": "GFDL-1.3-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json", + "referenceNumber": 427, + "name": "GNU Free Documentation License v1.3 only - no invariants", + "licenseId": "GFDL-1.3-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json", + "referenceNumber": 552, + "name": "GNU Free Documentation License v1.3 or later - no invariants", + "licenseId": "GFDL-1.3-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-only.json", + "referenceNumber": 441, + "name": "GNU Free Documentation License v1.3 only", + "licenseId": "GFDL-1.3-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-or-later.json", + "referenceNumber": 173, + "name": "GNU Free Documentation License v1.3 or later", + "licenseId": "GFDL-1.3-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Giftware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Giftware.json", + "referenceNumber": 513, + "name": "Giftware License", + "licenseId": "Giftware", + "seeAlso": [ + "http://liballeg.org/license.html#allegro-4-the-giftware-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GL2PS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GL2PS.json", + "referenceNumber": 181, + "name": "GL2PS License", + "licenseId": "GL2PS", + "seeAlso": [ + "http://www.geuz.org/gl2ps/COPYING.GL2PS" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Glide.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Glide.json", + "referenceNumber": 45, + "name": "3dfx Glide License", + "licenseId": "Glide", + "seeAlso": [ + "http://www.users.on.net/~triforce/glidexp/COPYING.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Glulxe.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Glulxe.json", + "referenceNumber": 354, + "name": "Glulxe License", + "licenseId": "Glulxe", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Glulxe" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GLWTPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GLWTPL.json", + "referenceNumber": 675, + "name": "Good Luck With That Public License", + "licenseId": "GLWTPL", + "seeAlso": [ + "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gnuplot.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gnuplot.json", + "referenceNumber": 512, + "name": "gnuplot License", + "licenseId": "gnuplot", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Gnuplot" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0.json", + "referenceNumber": 79, + "name": "GNU General Public License v1.0 only", + "licenseId": "GPL-1.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0+.json", + "referenceNumber": 547, + "name": "GNU General Public License v1.0 or later", + "licenseId": "GPL-1.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0-only.json", + "referenceNumber": 461, + "name": "GNU General Public License v1.0 only", + "licenseId": "GPL-1.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0-or-later.json", + "referenceNumber": 672, + "name": "GNU General Public License v1.0 or later", + "licenseId": "GPL-1.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0.json", + "referenceNumber": 128, + "name": "GNU General Public License v2.0 only", + "licenseId": "GPL-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0+.json", + "referenceNumber": 182, + "name": "GNU General Public License v2.0 or later", + "licenseId": "GPL-2.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-only.json", + "referenceNumber": 19, + "name": "GNU General Public License v2.0 only", + "licenseId": "GPL-2.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-or-later.json", + "referenceNumber": 253, + "name": "GNU General Public License v2.0 or later", + "licenseId": "GPL-2.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json", + "referenceNumber": 419, + "name": "GNU General Public License v2.0 w/Autoconf exception", + "licenseId": "GPL-2.0-with-autoconf-exception", + "seeAlso": [ + "http://ac-archive.sourceforge.net/doc/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json", + "referenceNumber": 571, + "name": "GNU General Public License v2.0 w/Bison exception", + "licenseId": "GPL-2.0-with-bison-exception", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id\u003d193d7c7054ba7197b0789e14965b739162319b5e#n141" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json", + "referenceNumber": 59, + "name": "GNU General Public License v2.0 w/Classpath exception", + "licenseId": "GPL-2.0-with-classpath-exception", + "seeAlso": [ + "https://www.gnu.org/software/classpath/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-font-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-font-exception.json", + "referenceNumber": 592, + "name": "GNU General Public License v2.0 w/Font exception", + "licenseId": "GPL-2.0-with-font-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.html#FontException" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json", + "referenceNumber": 661, + "name": "GNU General Public License v2.0 w/GCC Runtime Library exception", + "licenseId": "GPL-2.0-with-GCC-exception", + "seeAlso": [ + "https://gcc.gnu.org/git/?p\u003dgcc.git;a\u003dblob;f\u003dgcc/libgcc1.c;h\u003d762f5143fc6eed57b6797c82710f3538aa52b40b;hb\u003dcb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0.json", + "referenceNumber": 215, + "name": "GNU General Public License v3.0 only", + "licenseId": "GPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0+.json", + "referenceNumber": 123, + "name": "GNU General Public License v3.0 or later", + "licenseId": "GPL-3.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-only.json", + "referenceNumber": 120, + "name": "GNU General Public License v3.0 only", + "licenseId": "GPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-or-later.json", + "referenceNumber": 139, + "name": "GNU General Public License v3.0 or later", + "licenseId": "GPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json", + "referenceNumber": 254, + "name": "GNU General Public License v3.0 w/Autoconf exception", + "licenseId": "GPL-3.0-with-autoconf-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/autoconf-exception-3.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.json", + "referenceNumber": 510, + "name": "GNU General Public License v3.0 w/GCC Runtime Library exception", + "licenseId": "GPL-3.0-with-GCC-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gcc-exception-3.1.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Graphics-Gems.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Graphics-Gems.json", + "referenceNumber": 82, + "name": "Graphics Gems License", + "licenseId": "Graphics-Gems", + "seeAlso": [ + "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gSOAP-1.3b.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gSOAP-1.3b.json", + "referenceNumber": 649, + "name": "gSOAP Public License v1.3b", + "licenseId": "gSOAP-1.3b", + "seeAlso": [ + "http://www.cs.fsu.edu/~engelen/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gtkbook.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gtkbook.json", + "referenceNumber": 391, + "name": "gtkbook License", + "licenseId": "gtkbook", + "seeAlso": [ + "https://github.com/slogan621/gtkbook", + "https://github.com/oetiker/rrdtool-1.x/blob/master/src/plbasename.c#L8-L11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Gutmann.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Gutmann.json", + "referenceNumber": 162, + "name": "Gutmann License", + "licenseId": "Gutmann", + "seeAlso": [ + "https://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HaskellReport.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HaskellReport.json", + "referenceNumber": 629, + "name": "Haskell Language Report License", + "licenseId": "HaskellReport", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/hdparm.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/hdparm.json", + "referenceNumber": 408, + "name": "hdparm License", + "licenseId": "hdparm", + "seeAlso": [ + "https://github.com/Distrotech/hdparm/blob/4517550db29a91420fb2b020349523b1b4512df2/LICENSE.TXT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HIDAPI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HIDAPI.json", + "referenceNumber": 573, + "name": "HIDAPI License", + "licenseId": "HIDAPI", + "seeAlso": [ + "https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Hippocratic-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Hippocratic-2.1.json", + "referenceNumber": 124, + "name": "Hippocratic License 2.1", + "licenseId": "Hippocratic-2.1", + "seeAlso": [ + "https://firstdonoharm.dev/version/2/1/license.html", + "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HP-1986.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HP-1986.json", + "referenceNumber": 314, + "name": "Hewlett-Packard 1986 License", + "licenseId": "HP-1986", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/machine/hppa/memchr.S;h\u003d1cca3e5e8867aa4bffef1f75a5c1bba25c0c441e;hb\u003dHEAD#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HP-1989.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HP-1989.json", + "referenceNumber": 477, + "name": "Hewlett-Packard 1989 License", + "licenseId": "HP-1989", + "seeAlso": [ + "https://github.com/bleargh45/Data-UUID/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND.json", + "referenceNumber": 67, + "name": "Historical Permission Notice and Disclaimer", + "licenseId": "HPND", + "seeAlso": [ + "https://opensource.org/licenses/HPND", + "http://lists.opensource.org/pipermail/license-discuss_lists.opensource.org/2002-November/006304.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/HPND-DEC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-DEC.json", + "referenceNumber": 147, + "name": "Historical Permission Notice and Disclaimer - DEC variant", + "licenseId": "HPND-DEC", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/blob/master/COPYING?ref_type\u003dheads#L69" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-doc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-doc.json", + "referenceNumber": 119, + "name": "Historical Permission Notice and Disclaimer - documentation variant", + "licenseId": "HPND-doc", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type\u003dheads#L185-197", + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type\u003dheads#L70-77" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-doc-sell.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-doc-sell.json", + "referenceNumber": 515, + "name": "Historical Permission Notice and Disclaimer - documentation sell variant", + "licenseId": "HPND-doc-sell", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type\u003dheads#L108-117", + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type\u003dheads#L153-162" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export-US.json", + "referenceNumber": 587, + "name": "HPND with US Government export control warning", + "licenseId": "HPND-export-US", + "seeAlso": [ + "https://www.kermitproject.org/ck90.html#source" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export-US-acknowledgement.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export-US-acknowledgement.json", + "referenceNumber": 31, + "name": "HPND with US Government export control warning and acknowledgment", + "licenseId": "HPND-export-US-acknowledgement", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L831-L852", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export-US-modify.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export-US-modify.json", + "referenceNumber": 14, + "name": "HPND with US Government export control warning and modification rqmt", + "licenseId": "HPND-export-US-modify", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L1157-L1182", + "https://github.com/pythongssapi/k5test/blob/v0.10.3/K5TEST-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export2-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export2-US.json", + "referenceNumber": 469, + "name": "HPND with US Government export control and 2 disclaimers", + "licenseId": "HPND-export2-US", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L111-L133", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.json", + "referenceNumber": 245, + "name": "Historical Permission Notice and Disclaimer - Fenneberg-Livingston variant", + "licenseId": "HPND-Fenneberg-Livingston", + "seeAlso": [ + "https://github.com/FreeRADIUS/freeradius-client/blob/master/COPYRIGHT#L32", + "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L34" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-INRIA-IMAG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-INRIA-IMAG.json", + "referenceNumber": 319, + "name": "Historical Permission Notice and Disclaimer - INRIA-IMAG variant", + "licenseId": "HPND-INRIA-IMAG", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/ipv6cp.c#L75-L83" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Intel.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Intel.json", + "referenceNumber": 29, + "name": "Historical Permission Notice and Disclaimer - Intel variant", + "licenseId": "HPND-Intel", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/machine/i960/memcpy.S;hb\u003dHEAD" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Kevlin-Henney.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Kevlin-Henney.json", + "referenceNumber": 411, + "name": "Historical Permission Notice and Disclaimer - Kevlin Henney variant", + "licenseId": "HPND-Kevlin-Henney", + "seeAlso": [ + "https://github.com/mruby/mruby/blob/83d12f8d52522cdb7c8cc46fad34821359f453e6/mrbgems/mruby-dir/src/Win/dirent.c#L127-L140" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Markus-Kuhn.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Markus-Kuhn.json", + "referenceNumber": 438, + "name": "Historical Permission Notice and Disclaimer - Markus Kuhn variant", + "licenseId": "HPND-Markus-Kuhn", + "seeAlso": [ + "https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c", + "https://sourceware.org/git/?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dreadline/readline/support/wcwidth.c;h\u003d0f5ec995796f4813abbcf4972aec0378ab74722a;hb\u003dHEAD#l55" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-merchantability-variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-merchantability-variant.json", + "referenceNumber": 121, + "name": "Historical Permission Notice and Disclaimer - merchantability variant", + "licenseId": "HPND-merchantability-variant", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/misc/fini.c;hb\u003dHEAD" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-MIT-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-MIT-disclaimer.json", + "referenceNumber": 100, + "name": "Historical Permission Notice and Disclaimer with MIT disclaimer", + "licenseId": "HPND-MIT-disclaimer", + "seeAlso": [ + "https://metacpan.org/release/NLNETLABS/Net-DNS-SEC-1.22/source/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Netrek.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Netrek.json", + "referenceNumber": 565, + "name": "Historical Permission Notice and Disclaimer - Netrek variant", + "licenseId": "HPND-Netrek", + "seeAlso": [], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Pbmplus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Pbmplus.json", + "referenceNumber": 198, + "name": "Historical Permission Notice and Disclaimer - Pbmplus variant", + "licenseId": "HPND-Pbmplus", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/netpbm.c#l8" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.json", + "referenceNumber": 131, + "name": "Historical Permission Notice and Disclaimer - sell xserver variant with MIT disclaimer", + "licenseId": "HPND-sell-MIT-disclaimer-xserver", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L1781" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-regexpr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-regexpr.json", + "referenceNumber": 368, + "name": "Historical Permission Notice and Disclaimer - sell regexpr variant", + "licenseId": "HPND-sell-regexpr", + "seeAlso": [ + "https://gitlab.com/bacula-org/bacula/-/blob/Branch-11.0/bacula/LICENSE-FOSS?ref_type\u003dheads#L245" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant.json", + "referenceNumber": 631, + "name": "Historical Permission Notice and Disclaimer - sell variant", + "licenseId": "HPND-sell-variant", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h\u003dv4.19", + "https://github.com/kfish/xsel/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json", + "referenceNumber": 550, + "name": "HPND sell variant with MIT disclaimer", + "licenseId": "HPND-sell-variant-MIT-disclaimer", + "seeAlso": [ + "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer-rev.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer-rev.json", + "referenceNumber": 344, + "name": "HPND sell variant with MIT disclaimer - reverse", + "licenseId": "HPND-sell-variant-MIT-disclaimer-rev", + "seeAlso": [ + "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/dynlist.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-UC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-UC.json", + "referenceNumber": 643, + "name": "Historical Permission Notice and Disclaimer - University of California variant", + "licenseId": "HPND-UC", + "seeAlso": [ + "https://core.tcl-lang.org/tk/file?name\u003dcompat/unistd.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-UC-export-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-UC-export-US.json", + "referenceNumber": 460, + "name": "Historical Permission Notice and Disclaimer - University of California, US export warning", + "licenseId": "HPND-UC-export-US", + "seeAlso": [ + "https://github.com/RTimothyEdwards/magic/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HTMLTIDY.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HTMLTIDY.json", + "referenceNumber": 176, + "name": "HTML Tidy License", + "licenseId": "HTMLTIDY", + "seeAlso": [ + "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IBM-pibs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IBM-pibs.json", + "referenceNumber": 316, + "name": "IBM PowerPC Initialization and Boot Software", + "licenseId": "IBM-pibs", + "seeAlso": [ + "http://git.denx.de/?p\u003du-boot.git;a\u003dblob;f\u003darch/powerpc/cpu/ppc4xx/miiphy.c;h\u003d297155fdafa064b955e53e9832de93bfb0cfb85b;hb\u003d9fab4bf4cc077c21e43941866f3f2c196f28670d" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ICU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ICU.json", + "referenceNumber": 448, + "name": "ICU License", + "licenseId": "ICU", + "seeAlso": [ + "http://source.icu-project.org/repos/icu/icu/trunk/license.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/IEC-Code-Components-EULA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IEC-Code-Components-EULA.json", + "referenceNumber": 277, + "name": "IEC Code Components End-user licence agreement", + "licenseId": "IEC-Code-Components-EULA", + "seeAlso": [ + "https://www.iec.ch/webstore/custserv/pdf/CC-EULA.pdf", + "https://www.iec.ch/CCv1", + "https://www.iec.ch/copyright" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IJG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IJG.json", + "referenceNumber": 75, + "name": "Independent JPEG Group License", + "licenseId": "IJG", + "seeAlso": [ + "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev\u003d1.2" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/IJG-short.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IJG-short.json", + "referenceNumber": 117, + "name": "Independent JPEG Group License - short", + "licenseId": "IJG-short", + "seeAlso": [ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/ljpg/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ImageMagick.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ImageMagick.json", + "referenceNumber": 142, + "name": "ImageMagick License", + "licenseId": "ImageMagick", + "seeAlso": [ + "http://www.imagemagick.org/script/license.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/iMatix.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/iMatix.json", + "referenceNumber": 196, + "name": "iMatix Standard Function Library Agreement", + "licenseId": "iMatix", + "seeAlso": [ + "http://legacy.imatix.com/html/sfl/sfl4.htm#license" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Imlib2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Imlib2.json", + "referenceNumber": 377, + "name": "Imlib2 License", + "licenseId": "Imlib2", + "seeAlso": [ + "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING", + "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Info-ZIP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Info-ZIP.json", + "referenceNumber": 65, + "name": "Info-ZIP License", + "licenseId": "Info-ZIP", + "seeAlso": [ + "http://www.info-zip.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Inner-Net-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Inner-Net-2.0.json", + "referenceNumber": 190, + "name": "Inner Net License v2.0", + "licenseId": "Inner-Net-2.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Inner_Net_License", + "https://sourceware.org/git/?p\u003dglibc.git;a\u003dblob;f\u003dLICENSES;h\u003d530893b1dc9ea00755603c68fb36bd4fc38a7be8;hb\u003dHEAD#l207" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/InnoSetup.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/InnoSetup.json", + "referenceNumber": 479, + "name": "Inno Setup License", + "licenseId": "InnoSetup", + "seeAlso": [ + "https://github.com/jrsoftware/issrc/blob/HEAD/license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Intel.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Intel.json", + "referenceNumber": 42, + "name": "Intel Open Source License", + "licenseId": "Intel", + "seeAlso": [ + "https://opensource.org/licenses/Intel" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Intel-ACPI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Intel-ACPI.json", + "referenceNumber": 504, + "name": "Intel ACPI Software License Agreement", + "licenseId": "Intel-ACPI", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Interbase-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Interbase-1.0.json", + "referenceNumber": 133, + "name": "Interbase Public License v1.0", + "licenseId": "Interbase-1.0", + "seeAlso": [ + "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IPA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IPA.json", + "referenceNumber": 156, + "name": "IPA Font License", + "licenseId": "IPA", + "seeAlso": [ + "https://opensource.org/licenses/IPA" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/IPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IPL-1.0.json", + "referenceNumber": 671, + "name": "IBM Public License v1.0", + "licenseId": "IPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/IPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ISC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ISC.json", + "referenceNumber": 273, + "name": "ISC License", + "licenseId": "ISC", + "seeAlso": [ + "https://www.isc.org/licenses/", + "https://www.isc.org/downloads/software-support-policy/isc-license/", + "https://opensource.org/licenses/ISC" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ISC-Veillard.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ISC-Veillard.json", + "referenceNumber": 84, + "name": "ISC Veillard variant", + "licenseId": "ISC-Veillard", + "seeAlso": [ + "https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c", + "https://github.com/GNOME/libxml2/blob/master/dict.c", + "https://sourceforge.net/p/ctrio/git/ci/master/tree/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Jam.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Jam.json", + "referenceNumber": 39, + "name": "Jam License", + "licenseId": "Jam", + "seeAlso": [ + "https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html", + "https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/JasPer-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JasPer-2.0.json", + "referenceNumber": 212, + "name": "JasPer License", + "licenseId": "JasPer-2.0", + "seeAlso": [ + "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JPL-image.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JPL-image.json", + "referenceNumber": 502, + "name": "JPL Image Use Policy", + "licenseId": "JPL-image", + "seeAlso": [ + "https://www.jpl.nasa.gov/jpl-image-use-policy" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JPNIC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JPNIC.json", + "referenceNumber": 564, + "name": "Japan Network Information Center License", + "licenseId": "JPNIC", + "seeAlso": [ + "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JSON.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JSON.json", + "referenceNumber": 311, + "name": "JSON License", + "licenseId": "JSON", + "seeAlso": [ + "http://www.json.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Kastrup.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Kastrup.json", + "referenceNumber": 298, + "name": "Kastrup License", + "licenseId": "Kastrup", + "seeAlso": [ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/kastrup/binhex.dtx" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Kazlib.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Kazlib.json", + "referenceNumber": 175, + "name": "Kazlib License", + "licenseId": "Kazlib", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id\u003d0062df360c2d17d57f6af19b0e444c51feb99036" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Knuth-CTAN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Knuth-CTAN.json", + "referenceNumber": 431, + "name": "Knuth CTAN License", + "licenseId": "Knuth-CTAN", + "seeAlso": [ + "https://ctan.org/license/knuth" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LAL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LAL-1.2.json", + "referenceNumber": 407, + "name": "Licence Art Libre 1.2", + "licenseId": "LAL-1.2", + "seeAlso": [ + "http://artlibre.org/licence/lal/licence-art-libre-12/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LAL-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LAL-1.3.json", + "referenceNumber": 523, + "name": "Licence Art Libre 1.3", + "licenseId": "LAL-1.3", + "seeAlso": [ + "https://artlibre.org/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Latex2e.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Latex2e.json", + "referenceNumber": 9, + "name": "Latex2e License", + "licenseId": "Latex2e", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Latex2e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Latex2e-translated-notice.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Latex2e-translated-notice.json", + "referenceNumber": 404, + "name": "Latex2e with translated notice permission", + "licenseId": "Latex2e-translated-notice", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id\u003da74c6b4ee49397cf330b333da1042bffa60ed14f#n74" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Leptonica.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Leptonica.json", + "referenceNumber": 297, + "name": "Leptonica License", + "licenseId": "Leptonica", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Leptonica" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0.json", + "referenceNumber": 313, + "name": "GNU Library General Public License v2 only", + "licenseId": "LGPL-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0+.json", + "referenceNumber": 489, + "name": "GNU Library General Public License v2 or later", + "licenseId": "LGPL-2.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-only.json", + "referenceNumber": 200, + "name": "GNU Library General Public License v2 only", + "licenseId": "LGPL-2.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-or-later.json", + "referenceNumber": 530, + "name": "GNU Library General Public License v2 or later", + "licenseId": "LGPL-2.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1.json", + "referenceNumber": 476, + "name": "GNU Lesser General Public License v2.1 only", + "licenseId": "LGPL-2.1", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1+.json", + "referenceNumber": 394, + "name": "GNU Lesser General Public License v2.1 or later", + "licenseId": "LGPL-2.1+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-only.json", + "referenceNumber": 21, + "name": "GNU Lesser General Public License v2.1 only", + "licenseId": "LGPL-2.1-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-or-later.json", + "referenceNumber": 387, + "name": "GNU Lesser General Public License v2.1 or later", + "licenseId": "LGPL-2.1-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0.json", + "referenceNumber": 209, + "name": "GNU Lesser General Public License v3.0 only", + "licenseId": "LGPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0+.json", + "referenceNumber": 17, + "name": "GNU Lesser General Public License v3.0 or later", + "licenseId": "LGPL-3.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-only.json", + "referenceNumber": 227, + "name": "GNU Lesser General Public License v3.0 only", + "licenseId": "LGPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-or-later.json", + "referenceNumber": 528, + "name": "GNU Lesser General Public License v3.0 or later", + "licenseId": "LGPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPLLR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPLLR.json", + "referenceNumber": 56, + "name": "Lesser General Public License For Linguistic Resources", + "licenseId": "LGPLLR", + "seeAlso": [ + "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Libpng.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Libpng.json", + "referenceNumber": 138, + "name": "libpng License", + "licenseId": "Libpng", + "seeAlso": [ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libpng-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libpng-2.0.json", + "referenceNumber": 455, + "name": "PNG Reference Library version 2", + "licenseId": "libpng-2.0", + "seeAlso": [ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libselinux-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libselinux-1.0.json", + "referenceNumber": 83, + "name": "libselinux public domain notice", + "licenseId": "libselinux-1.0", + "seeAlso": [ + "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libtiff.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libtiff.json", + "referenceNumber": 229, + "name": "libtiff License", + "licenseId": "libtiff", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/libtiff" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libutil-David-Nugent.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libutil-David-Nugent.json", + "referenceNumber": 642, + "name": "libutil David Nugent License", + "licenseId": "libutil-David-Nugent", + "seeAlso": [ + "http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3", + "https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-P-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-P-1.1.json", + "referenceNumber": 328, + "name": "Licence Libre du Québec – Permissive version 1.1", + "licenseId": "LiLiQ-P-1.1", + "seeAlso": [ + "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/", + "http://opensource.org/licenses/LiLiQ-P-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-R-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-R-1.1.json", + "referenceNumber": 87, + "name": "Licence Libre du Québec – Réciprocité version 1.1", + "licenseId": "LiLiQ-R-1.1", + "seeAlso": [ + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/", + "http://opensource.org/licenses/LiLiQ-R-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json", + "referenceNumber": 473, + "name": "Licence Libre du Québec – Réciprocité forte version 1.1", + "licenseId": "LiLiQ-Rplus-1.1", + "seeAlso": [ + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/", + "http://opensource.org/licenses/LiLiQ-Rplus-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-1-para.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-1-para.json", + "referenceNumber": 285, + "name": "Linux man-pages - 1 paragraph", + "licenseId": "Linux-man-pages-1-para", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/getcpu.2#n4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft.json", + "referenceNumber": 219, + "name": "Linux man-pages Copyleft", + "licenseId": "Linux-man-pages-copyleft", + "seeAlso": [ + "https://www.kernel.org/doc/man-pages/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json", + "referenceNumber": 444, + "name": "Linux man-pages Copyleft - 2 paragraphs", + "licenseId": "Linux-man-pages-copyleft-2-para", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/move_pages.2#n5", + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/migrate_pages.2#n8" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.json", + "referenceNumber": 167, + "name": "Linux man-pages Copyleft Variant", + "licenseId": "Linux-man-pages-copyleft-var", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/set_mempolicy.2#n5" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-OpenIB.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-OpenIB.json", + "referenceNumber": 177, + "name": "Linux Kernel Variant of OpenIB.org license", + "licenseId": "Linux-OpenIB", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LOOP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LOOP.json", + "referenceNumber": 26, + "name": "Common Lisp LOOP License", + "licenseId": "LOOP", + "seeAlso": [ + "https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/loop.lsp", + "http://git.savannah.gnu.org/cgit/gcl.git/tree/gcl/lsp/gcl_loop.lsp?h\u003dVersion_2_6_13pre", + "https://sourceforge.net/p/sbcl/sbcl/ci/master/tree/src/code/loop.lisp", + "https://github.com/cl-adams/adams/blob/master/LICENSE.md", + "https://github.com/blakemcbride/eclipse-lisp/blob/master/lisp/loop.lisp", + "https://gitlab.common-lisp.net/cmucl/cmucl/-/blob/master/src/code/loop.lisp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPD-document.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPD-document.json", + "referenceNumber": 38, + "name": "LPD Documentation License", + "licenseId": "LPD-document", + "seeAlso": [ + "https://github.com/Cyan4973/xxHash/blob/dev/doc/xxhash_spec.md", + "https://www.ietf.org/rfc/rfc1952.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPL-1.0.json", + "referenceNumber": 433, + "name": "Lucent Public License Version 1.0", + "licenseId": "LPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/LPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LPL-1.02.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPL-1.02.json", + "referenceNumber": 243, + "name": "Lucent Public License v1.02", + "licenseId": "LPL-1.02", + "seeAlso": [ + "http://plan9.bell-labs.com/plan9/license.html", + "https://opensource.org/licenses/LPL-1.02" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.0.json", + "referenceNumber": 46, + "name": "LaTeX Project Public License v1.0", + "licenseId": "LPPL-1.0", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.1.json", + "referenceNumber": 576, + "name": "LaTeX Project Public License v1.1", + "licenseId": "LPPL-1.1", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.2.json", + "referenceNumber": 272, + "name": "LaTeX Project Public License v1.2", + "licenseId": "LPPL-1.2", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.3a.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.3a.json", + "referenceNumber": 575, + "name": "LaTeX Project Public License v1.3a", + "licenseId": "LPPL-1.3a", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-3a.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.3c.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.3c.json", + "referenceNumber": 679, + "name": "LaTeX Project Public License v1.3c", + "licenseId": "LPPL-1.3c", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-3c.txt", + "https://opensource.org/licenses/LPPL-1.3c" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/lsof.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/lsof.json", + "referenceNumber": 324, + "name": "lsof License", + "licenseId": "lsof", + "seeAlso": [ + "https://github.com/lsof-org/lsof/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.json", + "referenceNumber": 194, + "name": "Lucida Bitmap Fonts License", + "licenseId": "Lucida-Bitmap-Fonts", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/bh-100dpi/-/blob/master/COPYING?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.json", + "referenceNumber": 48, + "name": "LZMA SDK License (versions 9.11 to 9.20)", + "licenseId": "LZMA-SDK-9.11-to-9.20", + "seeAlso": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LZMA-SDK-9.22.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LZMA-SDK-9.22.json", + "referenceNumber": 650, + "name": "LZMA SDK License (versions 9.22 and beyond)", + "licenseId": "LZMA-SDK-9.22", + "seeAlso": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Mackerras-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause.json", + "referenceNumber": 405, + "name": "Mackerras 3-Clause License", + "licenseId": "Mackerras-3-Clause", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/chap_ms.c#L6-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.json", + "referenceNumber": 522, + "name": "Mackerras 3-Clause - acknowledgment variant", + "licenseId": "Mackerras-3-Clause-acknowledgment", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/auth.c#L6-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/magaz.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/magaz.json", + "referenceNumber": 429, + "name": "magaz License", + "licenseId": "magaz", + "seeAlso": [ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mailprio.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mailprio.json", + "referenceNumber": 621, + "name": "mailprio License", + "licenseId": "mailprio", + "seeAlso": [ + "https://fossies.org/linux/sendmail/contrib/mailprio" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MakeIndex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MakeIndex.json", + "referenceNumber": 11, + "name": "MakeIndex License", + "licenseId": "MakeIndex", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MakeIndex" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Martin-Birgmeier.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Martin-Birgmeier.json", + "referenceNumber": 607, + "name": "Martin Birgmeier License", + "licenseId": "Martin-Birgmeier", + "seeAlso": [ + "https://github.com/Perl/perl5/blob/blead/util.c#L6136" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/McPhee-slideshow.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/McPhee-slideshow.json", + "referenceNumber": 437, + "name": "McPhee Slideshow License", + "licenseId": "McPhee-slideshow", + "seeAlso": [ + "https://mirror.las.iastate.edu/tex-archive/graphics/metapost/contrib/macros/slideshow/slideshow.mp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/metamail.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/metamail.json", + "referenceNumber": 645, + "name": "metamail License", + "licenseId": "metamail", + "seeAlso": [ + "https://github.com/Dual-Life/mime-base64/blob/master/Base64.xs#L12" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Minpack.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Minpack.json", + "referenceNumber": 210, + "name": "Minpack License", + "licenseId": "Minpack", + "seeAlso": [ + "http://www.netlib.org/minpack/disclaimer", + "https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIPS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIPS.json", + "referenceNumber": 281, + "name": "MIPS License", + "licenseId": "MIPS", + "seeAlso": [ + "https://sourceware.org/cgit/binutils-gdb/tree/include/coff/sym.h#n11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MirOS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MirOS.json", + "referenceNumber": 658, + "name": "The MirOS Licence", + "licenseId": "MirOS", + "seeAlso": [ + "https://opensource.org/licenses/MirOS" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT.json", + "referenceNumber": 211, + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/license/mit/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MIT-0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-0.json", + "referenceNumber": 255, + "name": "MIT No Attribution", + "licenseId": "MIT-0", + "seeAlso": [ + "https://github.com/aws/mit-0", + "https://romanrm.net/mit-zero", + "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT-advertising.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-advertising.json", + "referenceNumber": 342, + "name": "Enlightenment License (e16)", + "licenseId": "MIT-advertising", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Click.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Click.json", + "referenceNumber": 375, + "name": "MIT Click License", + "licenseId": "MIT-Click", + "seeAlso": [ + "https://github.com/kohler/t1utils/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-CMU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-CMU.json", + "referenceNumber": 548, + "name": "CMU License", + "licenseId": "MIT-CMU", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT?rd\u003dLicensing/MIT#CMU_Style", + "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-enna.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-enna.json", + "referenceNumber": 155, + "name": "enna License", + "licenseId": "MIT-enna", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#enna" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-feh.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-feh.json", + "referenceNumber": 333, + "name": "feh License", + "licenseId": "MIT-feh", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#feh" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Festival.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Festival.json", + "referenceNumber": 507, + "name": "MIT Festival Variant", + "licenseId": "MIT-Festival", + "seeAlso": [ + "https://github.com/festvox/flite/blob/master/COPYING", + "https://github.com/festvox/speech_tools/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Khronos-old.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Khronos-old.json", + "referenceNumber": 284, + "name": "MIT Khronos - old variant", + "licenseId": "MIT-Khronos-old", + "seeAlso": [ + "https://github.com/KhronosGroup/SPIRV-Cross/blob/main/LICENSES/LicenseRef-KhronosFreeUse.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Modern-Variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Modern-Variant.json", + "referenceNumber": 68, + "name": "MIT License Modern Variant", + "licenseId": "MIT-Modern-Variant", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants", + "https://ptolemy.berkeley.edu/copyright.htm", + "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT-open-group.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-open-group.json", + "referenceNumber": 526, + "name": "MIT Open Group variant", + "licenseId": "MIT-open-group", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-testregex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-testregex.json", + "referenceNumber": 28, + "name": "MIT testregex Variant", + "licenseId": "MIT-testregex", + "seeAlso": [ + "https://github.com/dotnet/runtime/blob/55e1ac7c07df62c4108d4acedf78f77574470ce5/src/libraries/System.Text.RegularExpressions/tests/FunctionalTests/AttRegexTests.cs#L12-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Wu.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Wu.json", + "referenceNumber": 501, + "name": "MIT Tom Wu Variant", + "licenseId": "MIT-Wu", + "seeAlso": [ + "https://github.com/chromium/octane/blob/master/crypto.js" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MITNFA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MITNFA.json", + "referenceNumber": 235, + "name": "MIT +no-false-attribs license", + "licenseId": "MITNFA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MITNFA" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MMIXware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MMIXware.json", + "referenceNumber": 36, + "name": "MMIXware License", + "licenseId": "MMIXware", + "seeAlso": [ + "https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Motosoto.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Motosoto.json", + "referenceNumber": 403, + "name": "Motosoto License", + "licenseId": "Motosoto", + "seeAlso": [ + "https://opensource.org/licenses/Motosoto" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MPEG-SSG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPEG-SSG.json", + "referenceNumber": 291, + "name": "MPEG Software Simulation", + "licenseId": "MPEG-SSG", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/ppm/ppmtompeg/jrevdct.c#l1189" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mpi-permissive.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mpi-permissive.json", + "referenceNumber": 434, + "name": "mpi Permissive License", + "licenseId": "mpi-permissive", + "seeAlso": [ + "https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl\u003d19#L19" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mpich2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mpich2.json", + "referenceNumber": 451, + "name": "mpich2 License", + "licenseId": "mpich2", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-1.0.json", + "referenceNumber": 351, + "name": "Mozilla Public License 1.0", + "licenseId": "MPL-1.0", + "seeAlso": [ + "http://www.mozilla.org/MPL/MPL-1.0.html", + "https://opensource.org/licenses/MPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-1.1.json", + "referenceNumber": 357, + "name": "Mozilla Public License 1.1", + "licenseId": "MPL-1.1", + "seeAlso": [ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "https://opensource.org/licenses/MPL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-2.0.json", + "referenceNumber": 345, + "name": "Mozilla Public License 2.0", + "licenseId": "MPL-2.0", + "seeAlso": [ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json", + "referenceNumber": 503, + "name": "Mozilla Public License 2.0 (no copyleft exception)", + "licenseId": "MPL-2.0-no-copyleft-exception", + "seeAlso": [ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/mplus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mplus.json", + "referenceNumber": 373, + "name": "mplus Font License", + "licenseId": "mplus", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:Mplus?rd\u003dLicensing/mplus" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MS-LPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-LPL.json", + "referenceNumber": 665, + "name": "Microsoft Limited Public License", + "licenseId": "MS-LPL", + "seeAlso": [ + "https://www.openhub.net/licenses/mslpl", + "https://github.com/gabegundy/atlserver/blob/master/License.txt", + "https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL)" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MS-PL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-PL.json", + "referenceNumber": 383, + "name": "Microsoft Public License", + "licenseId": "MS-PL", + "seeAlso": [ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-PL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MS-RL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-RL.json", + "referenceNumber": 242, + "name": "Microsoft Reciprocal License", + "licenseId": "MS-RL", + "seeAlso": [ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-RL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MTLL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MTLL.json", + "referenceNumber": 331, + "name": "Matrix Template Library License", + "licenseId": "MTLL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MulanPSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MulanPSL-1.0.json", + "referenceNumber": 34, + "name": "Mulan Permissive Software License, Version 1", + "licenseId": "MulanPSL-1.0", + "seeAlso": [ + "https://license.coscl.org.cn/MulanPSL/", + "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MulanPSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MulanPSL-2.0.json", + "referenceNumber": 207, + "name": "Mulan Permissive Software License, Version 2", + "licenseId": "MulanPSL-2.0", + "seeAlso": [ + "https://license.coscl.org.cn/MulanPSL2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Multics.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Multics.json", + "referenceNumber": 498, + "name": "Multics License", + "licenseId": "Multics", + "seeAlso": [ + "https://opensource.org/licenses/Multics" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Mup.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mup.json", + "referenceNumber": 130, + "name": "Mup License", + "licenseId": "Mup", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Mup" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NAIST-2003.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NAIST-2003.json", + "referenceNumber": 425, + "name": "Nara Institute of Science and Technology License (2003)", + "licenseId": "NAIST-2003", + "seeAlso": [ + "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text", + "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NASA-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NASA-1.3.json", + "referenceNumber": 81, + "name": "NASA Open Source Agreement 1.3", + "licenseId": "NASA-1.3", + "seeAlso": [ + "http://ti.arc.nasa.gov/opensource/nosa/", + "https://opensource.org/licenses/NASA-1.3" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Naumen.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Naumen.json", + "referenceNumber": 74, + "name": "Naumen Public License", + "licenseId": "Naumen", + "seeAlso": [ + "https://opensource.org/licenses/Naumen" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NBPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NBPL-1.0.json", + "referenceNumber": 430, + "name": "Net Boolean Public License v1", + "licenseId": "NBPL-1.0", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d37b4b3f6cc4bf34e1d3dec61e69914b9819d8894" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCBI-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCBI-PD.json", + "referenceNumber": 282, + "name": "NCBI Public Domain Notice", + "licenseId": "NCBI-PD", + "seeAlso": [ + "https://github.com/ncbi/sra-tools/blob/e8e5b6af4edc460156ad9ce5902d0779cffbf685/LICENSE", + "https://github.com/ncbi/datasets/blob/0ea4cd16b61e5b799d9cc55aecfa016d6c9bd2bf/LICENSE.md", + "https://github.com/ncbi/gprobe/blob/de64d30fee8b4c4013094d7d3139ea89b5dd1ace/LICENSE", + "https://github.com/ncbi/egapx/blob/08930b9dec0c69b2d1a05e5153c7b95ef0a3eb0f/LICENSE", + "https://github.com/ncbi/datasets/blob/master/LICENSE.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCGL-UK-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCGL-UK-2.0.json", + "referenceNumber": 677, + "name": "Non-Commercial Government Licence", + "licenseId": "NCGL-UK-2.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCL.json", + "referenceNumber": 420, + "name": "NCL Source Code License", + "licenseId": "NCL", + "seeAlso": [ + "https://gitlab.freedesktop.org/pipewire/pipewire/-/blob/master/src/modules/module-filter-chain/pffft.c?ref_type\u003dheads#L1-52" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCSA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCSA.json", + "referenceNumber": 73, + "name": "University of Illinois/NCSA Open Source License", + "licenseId": "NCSA", + "seeAlso": [ + "http://otm.illinois.edu/uiuc_openSource", + "https://opensource.org/licenses/NCSA" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Net-SNMP.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/Net-SNMP.json", + "referenceNumber": 492, + "name": "Net-SNMP License", + "licenseId": "Net-SNMP", + "seeAlso": [ + "http://net-snmp.sourceforge.net/about/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NetCDF.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NetCDF.json", + "referenceNumber": 399, + "name": "NetCDF license", + "licenseId": "NetCDF", + "seeAlso": [ + "http://www.unidata.ucar.edu/software/netcdf/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Newsletr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Newsletr.json", + "referenceNumber": 638, + "name": "Newsletr License", + "licenseId": "Newsletr", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Newsletr" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NGPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NGPL.json", + "referenceNumber": 136, + "name": "Nethack General Public License", + "licenseId": "NGPL", + "seeAlso": [ + "https://opensource.org/licenses/NGPL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NICTA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NICTA-1.0.json", + "referenceNumber": 43, + "name": "NICTA Public Software License, Version 1.0", + "licenseId": "NICTA-1.0", + "seeAlso": [ + "https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-PD.json", + "referenceNumber": 605, + "name": "NIST Public Domain Notice", + "licenseId": "NIST-PD", + "seeAlso": [ + "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt", + "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-PD-fallback.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-PD-fallback.json", + "referenceNumber": 187, + "name": "NIST Public Domain Notice with license fallback", + "licenseId": "NIST-PD-fallback", + "seeAlso": [ + "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE", + "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-Software.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-Software.json", + "referenceNumber": 321, + "name": "NIST Software License", + "licenseId": "NIST-Software", + "seeAlso": [ + "https://github.com/open-quantum-safe/liboqs/blob/40b01fdbb270f8614fde30e65d30e9da18c02393/src/common/rand/rand_nist.c#L1-L15" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLOD-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLOD-1.0.json", + "referenceNumber": 71, + "name": "Norwegian Licence for Open Government Data (NLOD) 1.0", + "licenseId": "NLOD-1.0", + "seeAlso": [ + "http://data.norge.no/nlod/en/1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLOD-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLOD-2.0.json", + "referenceNumber": 146, + "name": "Norwegian Licence for Open Government Data (NLOD) 2.0", + "licenseId": "NLOD-2.0", + "seeAlso": [ + "http://data.norge.no/nlod/en/2.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLPL.json", + "referenceNumber": 537, + "name": "No Limit Public License", + "licenseId": "NLPL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/NLPL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Nokia.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Nokia.json", + "referenceNumber": 97, + "name": "Nokia Open Source License", + "licenseId": "Nokia", + "seeAlso": [ + "https://opensource.org/licenses/nokia" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NOSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NOSL.json", + "referenceNumber": 90, + "name": "Netizen Open Source License", + "licenseId": "NOSL", + "seeAlso": [ + "http://bits.netizen.com.au/licenses/NOSL/nosl.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Noweb.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Noweb.json", + "referenceNumber": 567, + "name": "Noweb License", + "licenseId": "Noweb", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Noweb" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPL-1.0.json", + "referenceNumber": 172, + "name": "Netscape Public License v1.0", + "licenseId": "NPL-1.0", + "seeAlso": [ + "http://www.mozilla.org/MPL/NPL/1.0/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPL-1.1.json", + "referenceNumber": 302, + "name": "Netscape Public License v1.1", + "licenseId": "NPL-1.1", + "seeAlso": [ + "http://www.mozilla.org/MPL/NPL/1.1/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NPOSL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPOSL-3.0.json", + "referenceNumber": 385, + "name": "Non-Profit Open Software License 3.0", + "licenseId": "NPOSL-3.0", + "seeAlso": [ + "https://opensource.org/licenses/NOSL3.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NRL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NRL.json", + "referenceNumber": 346, + "name": "NRL License", + "licenseId": "NRL", + "seeAlso": [ + "http://web.mit.edu/network/isakmp/nrllicense.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NTP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NTP.json", + "referenceNumber": 301, + "name": "NTP License", + "licenseId": "NTP", + "seeAlso": [ + "https://opensource.org/licenses/NTP" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NTP-0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NTP-0.json", + "referenceNumber": 305, + "name": "NTP No Attribution", + "licenseId": "NTP-0", + "seeAlso": [ + "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Nunit.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/Nunit.json", + "referenceNumber": 41, + "name": "Nunit License", + "licenseId": "Nunit", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Nunit" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/O-UDA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/O-UDA-1.0.json", + "referenceNumber": 225, + "name": "Open Use of Data Agreement v1.0", + "licenseId": "O-UDA-1.0", + "seeAlso": [ + "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md", + "https://cdla.dev/open-use-of-data-agreement-v1-0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OAR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OAR.json", + "referenceNumber": 361, + "name": "OAR License", + "licenseId": "OAR", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/string/strsignal.c;hb\u003dHEAD#l35" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OCCT-PL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OCCT-PL.json", + "referenceNumber": 22, + "name": "Open CASCADE Technology Public License", + "licenseId": "OCCT-PL", + "seeAlso": [ + "http://www.opencascade.com/content/occt-public-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OCLC-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OCLC-2.0.json", + "referenceNumber": 12, + "name": "OCLC Research Public License 2.0", + "licenseId": "OCLC-2.0", + "seeAlso": [ + "http://www.oclc.org/research/activities/software/license/v2final.htm", + "https://opensource.org/licenses/OCLC-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ODbL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ODbL-1.0.json", + "referenceNumber": 617, + "name": "Open Data Commons Open Database License v1.0", + "licenseId": "ODbL-1.0", + "seeAlso": [ + "http://www.opendatacommons.org/licenses/odbl/1.0/", + "https://opendatacommons.org/licenses/odbl/1-0/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ODC-By-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ODC-By-1.0.json", + "referenceNumber": 616, + "name": "Open Data Commons Attribution License v1.0", + "licenseId": "ODC-By-1.0", + "seeAlso": [ + "https://opendatacommons.org/licenses/by/1.0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFFIS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFFIS.json", + "referenceNumber": 213, + "name": "OFFIS License", + "licenseId": "OFFIS", + "seeAlso": [ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/dicom/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0.json", + "referenceNumber": 4, + "name": "SIL Open Font License 1.0", + "licenseId": "OFL-1.0", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0-no-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0-no-RFN.json", + "referenceNumber": 618, + "name": "SIL Open Font License 1.0 with no Reserved Font Name", + "licenseId": "OFL-1.0-no-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0-RFN.json", + "referenceNumber": 541, + "name": "SIL Open Font License 1.0 with Reserved Font Name", + "licenseId": "OFL-1.0-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1.json", + "referenceNumber": 521, + "name": "SIL Open Font License 1.1", + "licenseId": "OFL-1.1", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1-no-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1-no-RFN.json", + "referenceNumber": 63, + "name": "SIL Open Font License 1.1 with no Reserved Font Name", + "licenseId": "OFL-1.1-no-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1-RFN.json", + "referenceNumber": 192, + "name": "SIL Open Font License 1.1 with Reserved Font Name", + "licenseId": "OFL-1.1-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OGC-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGC-1.0.json", + "referenceNumber": 527, + "name": "OGC Software License, Version 1.0", + "licenseId": "OGC-1.0", + "seeAlso": [ + "https://www.ogc.org/ogc/software/1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGDL-Taiwan-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGDL-Taiwan-1.0.json", + "referenceNumber": 452, + "name": "Taiwan Open Government Data License, version 1.0", + "licenseId": "OGDL-Taiwan-1.0", + "seeAlso": [ + "https://data.gov.tw/license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-Canada-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-Canada-2.0.json", + "referenceNumber": 236, + "name": "Open Government Licence - Canada", + "licenseId": "OGL-Canada-2.0", + "seeAlso": [ + "https://open.canada.ca/en/open-government-licence-canada" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-1.0.json", + "referenceNumber": 401, + "name": "Open Government Licence v1.0", + "licenseId": "OGL-UK-1.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-2.0.json", + "referenceNumber": 222, + "name": "Open Government Licence v2.0", + "licenseId": "OGL-UK-2.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-3.0.json", + "referenceNumber": 143, + "name": "Open Government Licence v3.0", + "licenseId": "OGL-UK-3.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGTSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGTSL.json", + "referenceNumber": 557, + "name": "Open Group Test Suite License", + "licenseId": "OGTSL", + "seeAlso": [ + "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", + "https://opensource.org/licenses/OGTSL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.1.json", + "referenceNumber": 309, + "name": "Open LDAP Public License v1.1", + "licenseId": "OLDAP-1.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d806557a5ad59804ef3a44d5abfbe91d706b0791f" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.2.json", + "referenceNumber": 76, + "name": "Open LDAP Public License v1.2", + "licenseId": "OLDAP-1.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d42b0383c50c299977b5893ee695cf4e486fb0dc7" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.3.json", + "referenceNumber": 622, + "name": "Open LDAP Public License v1.3", + "licenseId": "OLDAP-1.3", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003de5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.4.json", + "referenceNumber": 343, + "name": "Open LDAP Public License v1.4", + "licenseId": "OLDAP-1.4", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dc9f95c2f3f2ffb5e0ae55fe7388af75547660941" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.json", + "referenceNumber": 366, + "name": "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", + "licenseId": "OLDAP-2.0", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcbf50f4e1185a21abd4c0a54d3f4341fe28f36ea" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.0.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.1.json", + "referenceNumber": 126, + "name": "Open LDAP Public License v2.0.1", + "licenseId": "OLDAP-2.0.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db6d68acd14e51ca3aab4428bf26522aa74873f0e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.1.json", + "referenceNumber": 442, + "name": "Open LDAP Public License v2.1", + "licenseId": "OLDAP-2.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db0d176738e96a0d3b9f85cb51e140a86f21be715" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.json", + "referenceNumber": 154, + "name": "Open LDAP Public License v2.2", + "licenseId": "OLDAP-2.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d470b0c18ec67621c85881b2733057fecf4a1acc3" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.1.json", + "referenceNumber": 612, + "name": "Open LDAP Public License v2.2.1", + "licenseId": "OLDAP-2.2.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d4bc786f34b50aa301be6f5600f58a980070f481e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.2.json", + "referenceNumber": 33, + "name": "Open LDAP Public License 2.2.2", + "licenseId": "OLDAP-2.2.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003ddf2cc1e21eb7c160695f5b7cffd6296c151ba188" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.3.json", + "referenceNumber": 290, + "name": "Open LDAP Public License v2.3", + "licenseId": "OLDAP-2.3", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dd32cf54a32d581ab475d23c810b0a7fbaf8d63c3" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.4.json", + "referenceNumber": 480, + "name": "Open LDAP Public License v2.4", + "licenseId": "OLDAP-2.4", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcd1284c4a91a8a380d904eee68d1583f989ed386" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.5.json", + "referenceNumber": 164, + "name": "Open LDAP Public License v2.5", + "licenseId": "OLDAP-2.5", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d6852b9d90022e8593c98205413380536b1b5a7cf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.6.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.6.json", + "referenceNumber": 197, + "name": "Open LDAP Public License v2.6", + "licenseId": "OLDAP-2.6", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d1cae062821881f41b73012ba816434897abf4205" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.7.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.7.json", + "referenceNumber": 356, + "name": "Open LDAP Public License v2.7", + "licenseId": "OLDAP-2.7", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d47c2415c1df81556eeb39be6cad458ef87c534a2" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.8.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.8.json", + "referenceNumber": 202, + "name": "Open LDAP Public License v2.8", + "licenseId": "OLDAP-2.8", + "seeAlso": [ + "http://www.openldap.org/software/release/license.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OLFL-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLFL-1.3.json", + "referenceNumber": 350, + "name": "Open Logistics Foundation License Version 1.3", + "licenseId": "OLFL-1.3", + "seeAlso": [ + "https://openlogisticsfoundation.org/licenses/", + "https://opensource.org/license/olfl-1-3/" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OML.json", + "referenceNumber": 578, + "name": "Open Market License", + "licenseId": "OML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Open_Market_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenPBS-2.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenPBS-2.3.json", + "referenceNumber": 524, + "name": "OpenPBS v2.3 Software License", + "licenseId": "OpenPBS-2.3", + "seeAlso": [ + "https://github.com/adaptivecomputing/torque/blob/master/PBS_License.txt", + "https://www.mcs.anl.gov/research/projects/openpbs/PBS_License.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenSSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenSSL.json", + "referenceNumber": 655, + "name": "OpenSSL License", + "licenseId": "OpenSSL", + "seeAlso": [ + "http://www.openssl.org/source/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OpenSSL-standalone.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenSSL-standalone.json", + "referenceNumber": 205, + "name": "OpenSSL License - standalone", + "licenseId": "OpenSSL-standalone", + "seeAlso": [ + "https://library.netapp.com/ecm/ecm_download_file/ECMP1196395", + "https://hstechdocs.helpsystems.com/manuals/globalscape/archive/cuteftp6/open_ssl_license_agreement.htm" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenVision.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenVision.json", + "referenceNumber": 134, + "name": "OpenVision License", + "licenseId": "OpenVision", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L66-L98", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html", + "https://fedoraproject.org/wiki/Licensing:MIT#OpenVision_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPL-1.0.json", + "referenceNumber": 500, + "name": "Open Public License v1.0", + "licenseId": "OPL-1.0", + "seeAlso": [ + "http://old.koalateam.com/jackaroo/OPL_1_0.TXT", + "https://fedoraproject.org/wiki/Licensing/Open_Public_License" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/OPL-UK-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPL-UK-3.0.json", + "referenceNumber": 137, + "name": "United Kingdom Open Parliament Licence v3.0", + "licenseId": "OPL-UK-3.0", + "seeAlso": [ + "https://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OPUBL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPUBL-1.0.json", + "referenceNumber": 593, + "name": "Open Publication License v1.0", + "licenseId": "OPUBL-1.0", + "seeAlso": [ + "http://opencontent.org/openpub/", + "https://www.debian.org/opl", + "https://www.ctan.org/license/opl" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OSET-PL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSET-PL-2.1.json", + "referenceNumber": 24, + "name": "OSET Public License version 2.1", + "licenseId": "OSET-PL-2.1", + "seeAlso": [ + "http://www.osetfoundation.org/public-license", + "https://opensource.org/licenses/OPL-2.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-1.0.json", + "referenceNumber": 413, + "name": "Open Software License 1.0", + "licenseId": "OSL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/OSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-1.1.json", + "referenceNumber": 203, + "name": "Open Software License 1.1", + "licenseId": "OSL-1.1", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/OSL1.1" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-2.0.json", + "referenceNumber": 174, + "name": "Open Software License 2.0", + "licenseId": "OSL-2.0", + "seeAlso": [ + "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-2.1.json", + "referenceNumber": 644, + "name": "Open Software License 2.1", + "licenseId": "OSL-2.1", + "seeAlso": [ + "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm", + "https://opensource.org/licenses/OSL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-3.0.json", + "referenceNumber": 349, + "name": "Open Software License 3.0", + "licenseId": "OSL-3.0", + "seeAlso": [ + "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm", + "https://opensource.org/licenses/OSL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/PADL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PADL.json", + "referenceNumber": 456, + "name": "PADL License", + "licenseId": "PADL", + "seeAlso": [ + "https://git.openldap.org/openldap/openldap/-/blob/master/libraries/libldap/os-local.c?ref_type\u003dheads#L19-23" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Parity-6.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Parity-6.0.0.json", + "referenceNumber": 608, + "name": "The Parity Public License 6.0.0", + "licenseId": "Parity-6.0.0", + "seeAlso": [ + "https://paritylicense.com/versions/6.0.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Parity-7.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Parity-7.0.0.json", + "referenceNumber": 78, + "name": "The Parity Public License 7.0.0", + "licenseId": "Parity-7.0.0", + "seeAlso": [ + "https://paritylicense.com/versions/7.0.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PDDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PDDL-1.0.json", + "referenceNumber": 0, + "name": "Open Data Commons Public Domain Dedication \u0026 License 1.0", + "licenseId": "PDDL-1.0", + "seeAlso": [ + "http://opendatacommons.org/licenses/pddl/1.0/", + "https://opendatacommons.org/licenses/pddl/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PHP-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PHP-3.0.json", + "referenceNumber": 463, + "name": "PHP License v3.0", + "licenseId": "PHP-3.0", + "seeAlso": [ + "http://www.php.net/license/3_0.txt", + "https://opensource.org/licenses/PHP-3.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/PHP-3.01.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PHP-3.01.json", + "referenceNumber": 278, + "name": "PHP License v3.01", + "licenseId": "PHP-3.01", + "seeAlso": [ + "http://www.php.net/license/3_01.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Pixar.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Pixar.json", + "referenceNumber": 23, + "name": "Pixar License", + "licenseId": "Pixar", + "seeAlso": [ + "https://github.com/PixarAnimationStudios/OpenSubdiv/raw/v3_5_0/LICENSE.txt", + "https://graphics.pixar.com/opensubdiv/docs/license.html", + "https://github.com/PixarAnimationStudios/OpenSubdiv/blob/v3_5_0/opensubdiv/version.cpp#L2-L22" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/pkgconf.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/pkgconf.json", + "referenceNumber": 261, + "name": "pkgconf License", + "licenseId": "pkgconf", + "seeAlso": [ + "https://github.com/pkgconf/pkgconf/blob/master/cli/main.c#L8" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Plexus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Plexus.json", + "referenceNumber": 497, + "name": "Plexus Classworlds License", + "licenseId": "Plexus", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/pnmstitch.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/pnmstitch.json", + "referenceNumber": 369, + "name": "pnmstitch License", + "licenseId": "pnmstitch", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/editor/pnmstitch.c#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json", + "referenceNumber": 508, + "name": "PolyForm Noncommercial License 1.0.0", + "licenseId": "PolyForm-Noncommercial-1.0.0", + "seeAlso": [ + "https://polyformproject.org/licenses/noncommercial/1.0.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json", + "referenceNumber": 397, + "name": "PolyForm Small Business License 1.0.0", + "licenseId": "PolyForm-Small-Business-1.0.0", + "seeAlso": [ + "https://polyformproject.org/licenses/small-business/1.0.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PostgreSQL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PostgreSQL.json", + "referenceNumber": 428, + "name": "PostgreSQL License", + "licenseId": "PostgreSQL", + "seeAlso": [ + "http://www.postgresql.org/about/licence", + "https://opensource.org/licenses/PostgreSQL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/PPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PPL.json", + "referenceNumber": 664, + "name": "Peer Production License", + "licenseId": "PPL", + "seeAlso": [ + "https://wiki.p2pfoundation.net/Peer_Production_License", + "http://www.networkcultures.org/_uploads/%233notebook_telekommunist.pdf" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/PSF-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PSF-2.0.json", + "referenceNumber": 262, + "name": "Python Software Foundation License 2.0", + "licenseId": "PSF-2.0", + "seeAlso": [ + "https://opensource.org/licenses/Python-2.0", + "https://matplotlib.org/stable/project/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/psfrag.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/psfrag.json", + "referenceNumber": 466, + "name": "psfrag License", + "licenseId": "psfrag", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/psfrag" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/psutils.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/psutils.json", + "referenceNumber": 421, + "name": "psutils License", + "licenseId": "psutils", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/psutils" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Python-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Python-2.0.json", + "referenceNumber": 637, + "name": "Python License 2.0", + "licenseId": "Python-2.0", + "seeAlso": [ + "https://opensource.org/licenses/Python-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Python-2.0.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Python-2.0.1.json", + "referenceNumber": 308, + "name": "Python License 2.0.1", + "licenseId": "Python-2.0.1", + "seeAlso": [ + "https://www.python.org/download/releases/2.0.1/license/", + "https://docs.python.org/3/license.html", + "https://github.com/python/cpython/blob/main/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/python-ldap.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/python-ldap.json", + "referenceNumber": 204, + "name": "Python ldap License", + "licenseId": "python-ldap", + "seeAlso": [ + "https://github.com/python-ldap/python-ldap/blob/main/LICENCE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Qhull.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Qhull.json", + "referenceNumber": 529, + "name": "Qhull License", + "licenseId": "Qhull", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Qhull" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/QPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/QPL-1.0.json", + "referenceNumber": 393, + "name": "Q Public License 1.0", + "licenseId": "QPL-1.0", + "seeAlso": [ + "http://doc.qt.nokia.com/3.3/license.html", + "https://opensource.org/licenses/QPL-1.0", + "https://doc.qt.io/archives/3.3/license.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.json", + "referenceNumber": 170, + "name": "Q Public License 1.0 - INRIA 2004 variant", + "licenseId": "QPL-1.0-INRIA-2004", + "seeAlso": [ + "https://github.com/maranget/hevea/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/radvd.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/radvd.json", + "referenceNumber": 422, + "name": "radvd License", + "licenseId": "radvd", + "seeAlso": [ + "https://github.com/radvd-project/radvd/blob/master/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Rdisc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Rdisc.json", + "referenceNumber": 47, + "name": "Rdisc License", + "licenseId": "Rdisc", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Rdisc_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/RHeCos-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RHeCos-1.1.json", + "referenceNumber": 258, + "name": "Red Hat eCos Public License v1.1", + "licenseId": "RHeCos-1.1", + "seeAlso": [ + "http://ecos.sourceware.org/old-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/RPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPL-1.1.json", + "referenceNumber": 88, + "name": "Reciprocal Public License 1.1", + "licenseId": "RPL-1.1", + "seeAlso": [ + "https://opensource.org/licenses/RPL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/RPL-1.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPL-1.5.json", + "referenceNumber": 27, + "name": "Reciprocal Public License 1.5", + "licenseId": "RPL-1.5", + "seeAlso": [ + "https://opensource.org/licenses/RPL-1.5" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/RPSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPSL-1.0.json", + "referenceNumber": 555, + "name": "RealNetworks Public Source License v1.0", + "licenseId": "RPSL-1.0", + "seeAlso": [ + "https://helixcommunity.org/content/rpsl", + "https://opensource.org/licenses/RPSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/RSA-MD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RSA-MD.json", + "referenceNumber": 20, + "name": "RSA Message-Digest License", + "licenseId": "RSA-MD", + "seeAlso": [ + "http://www.faqs.org/rfcs/rfc1321.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/RSCPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RSCPL.json", + "referenceNumber": 64, + "name": "Ricoh Source Code Public License", + "licenseId": "RSCPL", + "seeAlso": [ + "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml", + "https://opensource.org/licenses/RSCPL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Ruby.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ruby.json", + "referenceNumber": 449, + "name": "Ruby License", + "licenseId": "Ruby", + "seeAlso": [ + "https://www.ruby-lang.org/en/about/license.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Ruby-pty.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ruby-pty.json", + "referenceNumber": 99, + "name": "Ruby pty extension license", + "licenseId": "Ruby-pty", + "seeAlso": [ + "https://github.com/ruby/ruby/blob/9f6deaa6888a423720b4b127b5314f0ad26cc2e6/ext/pty/pty.c#L775-L786", + "https://github.com/ruby/ruby/commit/0a64817fb80016030c03518fb9459f63c11605ea#diff-ef5fa30838d6d0cecad9e675cc50b24628cfe2cb277c346053fafcc36c91c204", + "https://github.com/ruby/ruby/commit/0a64817fb80016030c03518fb9459f63c11605ea#diff-fedf217c1ce44bda01f0a678d3ff8b198bed478754d699c527a698ad933979a0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SAX-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SAX-PD.json", + "referenceNumber": 481, + "name": "Sax Public Domain Notice", + "licenseId": "SAX-PD", + "seeAlso": [ + "http://www.saxproject.org/copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SAX-PD-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SAX-PD-2.0.json", + "referenceNumber": 161, + "name": "Sax Public Domain Notice 2.0", + "licenseId": "SAX-PD-2.0", + "seeAlso": [ + "http://www.saxproject.org/copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Saxpath.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Saxpath.json", + "referenceNumber": 55, + "name": "Saxpath License", + "licenseId": "Saxpath", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Saxpath_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SCEA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SCEA.json", + "referenceNumber": 389, + "name": "SCEA Shared Source License", + "licenseId": "SCEA", + "seeAlso": [ + "http://research.scea.com/scea_shared_source_license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SchemeReport.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SchemeReport.json", + "referenceNumber": 372, + "name": "Scheme Language Report License", + "licenseId": "SchemeReport", + "seeAlso": [], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sendmail.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sendmail.json", + "referenceNumber": 312, + "name": "Sendmail License", + "licenseId": "Sendmail", + "seeAlso": [ + "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf", + "https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sendmail-8.23.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sendmail-8.23.json", + "referenceNumber": 94, + "name": "Sendmail License 8.23", + "licenseId": "Sendmail-8.23", + "seeAlso": [ + "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", + "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sendmail-Open-Source-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sendmail-Open-Source-1.1.json", + "referenceNumber": 218, + "name": "Sendmail Open Source License v1.1", + "licenseId": "Sendmail-Open-Source-1.1", + "seeAlso": [ + "https://github.com/trusteddomainproject/OpenDMARC/blob/master/LICENSE.Sendmail" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-1.0.json", + "referenceNumber": 310, + "name": "SGI Free Software License B v1.0", + "licenseId": "SGI-B-1.0", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-1.1.json", + "referenceNumber": 674, + "name": "SGI Free Software License B v1.1", + "licenseId": "SGI-B-1.1", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-2.0.json", + "referenceNumber": 418, + "name": "SGI Free Software License B v2.0", + "licenseId": "SGI-B-2.0", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SGI-OpenGL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-OpenGL.json", + "referenceNumber": 499, + "name": "SGI OpenGL License", + "licenseId": "SGI-OpenGL", + "seeAlso": [ + "https://gitlab.freedesktop.org/mesa/glw/-/blob/master/README?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGP4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGP4.json", + "referenceNumber": 562, + "name": "SGP4 Permission Notice", + "licenseId": "SGP4", + "seeAlso": [ + "https://celestrak.org/publications/AIAA/2006-6753/faq.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SHL-0.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SHL-0.5.json", + "referenceNumber": 670, + "name": "Solderpad Hardware License v0.5", + "licenseId": "SHL-0.5", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-0.5/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SHL-0.51.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SHL-0.51.json", + "referenceNumber": 44, + "name": "Solderpad Hardware License, Version 0.51", + "licenseId": "SHL-0.51", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-0.51/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SimPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SimPL-2.0.json", + "referenceNumber": 226, + "name": "Simple Public License 2.0", + "licenseId": "SimPL-2.0", + "seeAlso": [ + "https://opensource.org/licenses/SimPL-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/SISSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SISSL.json", + "referenceNumber": 568, + "name": "Sun Industry Standards Source License v1.1", + "licenseId": "SISSL", + "seeAlso": [ + "http://www.openoffice.org/licenses/sissl_license.html", + "https://opensource.org/licenses/SISSL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SISSL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SISSL-1.2.json", + "referenceNumber": 188, + "name": "Sun Industry Standards Source License v1.2", + "licenseId": "SISSL-1.2", + "seeAlso": [ + "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SL.json", + "referenceNumber": 189, + "name": "SL License", + "licenseId": "SL", + "seeAlso": [ + "https://github.com/mtoyoda/sl/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sleepycat.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sleepycat.json", + "referenceNumber": 52, + "name": "Sleepycat License", + "licenseId": "Sleepycat", + "seeAlso": [ + "https://opensource.org/licenses/Sleepycat" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SMAIL-GPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SMAIL-GPL.json", + "referenceNumber": 50, + "name": "SMAIL General Public License", + "licenseId": "SMAIL-GPL", + "seeAlso": [ + "https://sources.debian.org/copyright/license/debianutils/4.11.2/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SMLNJ.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SMLNJ.json", + "referenceNumber": 288, + "name": "Standard ML of New Jersey License", + "licenseId": "SMLNJ", + "seeAlso": [ + "https://www.smlnj.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SMPPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SMPPL.json", + "referenceNumber": 590, + "name": "Secure Messaging Protocol Public License", + "licenseId": "SMPPL", + "seeAlso": [ + "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SNIA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SNIA.json", + "referenceNumber": 591, + "name": "SNIA Public License 1.1", + "licenseId": "SNIA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/snprintf.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/snprintf.json", + "referenceNumber": 398, + "name": "snprintf License", + "licenseId": "snprintf", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/master/openbsd-compat/bsd-snprintf.c#L2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/softSurfer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/softSurfer.json", + "referenceNumber": 8, + "name": "softSurfer License", + "licenseId": "softSurfer", + "seeAlso": [ + "https://github.com/mm2/Little-CMS/blob/master/src/cmssm.c#L207", + "https://fedoraproject.org/wiki/Licensing/softSurfer" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Soundex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Soundex.json", + "referenceNumber": 66, + "name": "Soundex License", + "licenseId": "Soundex", + "seeAlso": [ + "https://metacpan.org/release/RJBS/Text-Soundex-3.05/source/Soundex.pm#L3-11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-86.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-86.json", + "referenceNumber": 348, + "name": "Spencer License 86", + "licenseId": "Spencer-86", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-94.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-94.json", + "referenceNumber": 341, + "name": "Spencer License 94", + "licenseId": "Spencer-94", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", + "https://metacpan.org/release/KNOK/File-MMagic-1.30/source/COPYING#L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-99.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-99.json", + "referenceNumber": 265, + "name": "Spencer License 99", + "licenseId": "Spencer-99", + "seeAlso": [ + "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SPL-1.0.json", + "referenceNumber": 107, + "name": "Sun Public License v1.0", + "licenseId": "SPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/SPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ssh-keyscan.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ssh-keyscan.json", + "referenceNumber": 224, + "name": "ssh-keyscan License", + "licenseId": "ssh-keyscan", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/master/LICENCE#L82" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSH-OpenSSH.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSH-OpenSSH.json", + "referenceNumber": 475, + "name": "SSH OpenSSH license", + "licenseId": "SSH-OpenSSH", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSH-short.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSH-short.json", + "referenceNumber": 116, + "name": "SSH short notice", + "licenseId": "SSH-short", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h", + "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1", + "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSLeay-standalone.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSLeay-standalone.json", + "referenceNumber": 559, + "name": "SSLeay License - standalone", + "licenseId": "SSLeay-standalone", + "seeAlso": [ + "https://www.tq-group.com/filedownloads/files/software-license-conditions/OriginalSSLeay/OriginalSSLeay.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSPL-1.0.json", + "referenceNumber": 613, + "name": "Server Side Public License, v 1", + "licenseId": "SSPL-1.0", + "seeAlso": [ + "https://www.mongodb.com/licensing/server-side-public-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/StandardML-NJ.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/StandardML-NJ.json", + "referenceNumber": 299, + "name": "Standard ML of New Jersey License", + "licenseId": "StandardML-NJ", + "seeAlso": [ + "https://www.smlnj.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SugarCRM-1.1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SugarCRM-1.1.3.json", + "referenceNumber": 163, + "name": "SugarCRM Public License v1.1.3", + "licenseId": "SugarCRM-1.1.3", + "seeAlso": [ + "http://www.sugarcrm.com/crm/SPL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sun-PPP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sun-PPP.json", + "referenceNumber": 329, + "name": "Sun PPP License", + "licenseId": "Sun-PPP", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/eap.c#L7-L16" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sun-PPP-2000.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sun-PPP-2000.json", + "referenceNumber": 13, + "name": "Sun PPP License (2000)", + "licenseId": "Sun-PPP-2000", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/modules/ppp_ahdlc.c#L7-L19" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SunPro.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SunPro.json", + "referenceNumber": 264, + "name": "SunPro License", + "licenseId": "SunPro", + "seeAlso": [ + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_acosh.c", + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_lgammal.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SWL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SWL.json", + "referenceNumber": 581, + "name": "Scheme Widget Library (SWL) Software License Agreement", + "licenseId": "SWL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/SWL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/swrule.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/swrule.json", + "referenceNumber": 259, + "name": "swrule License", + "licenseId": "swrule", + "seeAlso": [ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/misc/swrule.sty" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Symlinks.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Symlinks.json", + "referenceNumber": 35, + "name": "Symlinks License", + "licenseId": "Symlinks", + "seeAlso": [ + "https://www.mail-archive.com/debian-bugs-rc@lists.debian.org/msg11494.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TAPR-OHL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TAPR-OHL-1.0.json", + "referenceNumber": 615, + "name": "TAPR Open Hardware License v1.0", + "licenseId": "TAPR-OHL-1.0", + "seeAlso": [ + "https://www.tapr.org/OHL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TCL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TCL.json", + "referenceNumber": 332, + "name": "TCL/TK License", + "licenseId": "TCL", + "seeAlso": [ + "http://www.tcl.tk/software/tcltk/license.html", + "https://fedoraproject.org/wiki/Licensing/TCL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TCP-wrappers.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TCP-wrappers.json", + "referenceNumber": 545, + "name": "TCP Wrappers License", + "licenseId": "TCP-wrappers", + "seeAlso": [ + "http://rc.quest.com/topics/openssh/license.php#tcpwrappers" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TermReadKey.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TermReadKey.json", + "referenceNumber": 166, + "name": "TermReadKey License", + "licenseId": "TermReadKey", + "seeAlso": [ + "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TGPPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TGPPL-1.0.json", + "referenceNumber": 588, + "name": "Transitive Grace Period Public Licence 1.0", + "licenseId": "TGPPL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TGPPL", + "https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/COPYING.TGPPL.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ThirdEye.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ThirdEye.json", + "referenceNumber": 70, + "name": "ThirdEye License", + "licenseId": "ThirdEye", + "seeAlso": [ + "https://sourceware.org/cgit/binutils-gdb/tree/include/coff/symconst.h#n11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/threeparttable.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/threeparttable.json", + "referenceNumber": 267, + "name": "threeparttable License", + "licenseId": "threeparttable", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Threeparttable" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TMate.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TMate.json", + "referenceNumber": 601, + "name": "TMate Open Source License", + "licenseId": "TMate", + "seeAlso": [ + "http://svnkit.com/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TORQUE-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TORQUE-1.1.json", + "referenceNumber": 543, + "name": "TORQUE v2.5+ Software License v1.1", + "licenseId": "TORQUE-1.1", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TOSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TOSL.json", + "referenceNumber": 220, + "name": "Trusster Open Source License", + "licenseId": "TOSL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TOSL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TPDL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TPDL.json", + "referenceNumber": 506, + "name": "Time::ParseDate License", + "licenseId": "TPDL", + "seeAlso": [ + "https://metacpan.org/pod/Time::ParseDate#LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TPL-1.0.json", + "referenceNumber": 549, + "name": "THOR Public License 1.0", + "licenseId": "TPL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TrustedQSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TrustedQSL.json", + "referenceNumber": 317, + "name": "TrustedQSL License", + "licenseId": "TrustedQSL", + "seeAlso": [ + "https://sourceforge.net/p/trustedqsl/tqsl/ci/master/tree/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TTWL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TTWL.json", + "referenceNumber": 231, + "name": "Text-Tabs+Wrap License", + "licenseId": "TTWL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TTWL", + "https://github.com/ap/Text-Tabs/blob/master/lib.modern/Text/Tabs.pm#L148" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TTYP0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TTYP0.json", + "referenceNumber": 494, + "name": "TTYP0 License", + "licenseId": "TTYP0", + "seeAlso": [ + "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TU-Berlin-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TU-Berlin-1.0.json", + "referenceNumber": 580, + "name": "Technische Universitaet Berlin License 1.0", + "licenseId": "TU-Berlin-1.0", + "seeAlso": [ + "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TU-Berlin-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TU-Berlin-2.0.json", + "referenceNumber": 625, + "name": "Technische Universitaet Berlin License 2.0", + "licenseId": "TU-Berlin-2.0", + "seeAlso": [ + "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Ubuntu-font-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ubuntu-font-1.0.json", + "referenceNumber": 271, + "name": "Ubuntu Font Licence v1.0", + "licenseId": "Ubuntu-font-1.0", + "seeAlso": [ + "https://ubuntu.com/legal/font-licence", + "https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UCAR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UCAR.json", + "referenceNumber": 495, + "name": "UCAR License", + "licenseId": "UCAR", + "seeAlso": [ + "https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UCL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UCL-1.0.json", + "referenceNumber": 412, + "name": "Upstream Compatibility License v1.0", + "licenseId": "UCL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/UCL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ulem.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ulem.json", + "referenceNumber": 304, + "name": "ulem License", + "licenseId": "ulem", + "seeAlso": [ + "https://mirrors.ctan.org/macros/latex/contrib/ulem/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UMich-Merit.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UMich-Merit.json", + "referenceNumber": 145, + "name": "Michigan/Merit Networks License", + "licenseId": "UMich-Merit", + "seeAlso": [ + "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L64" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unicode-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-3.0.json", + "referenceNumber": 334, + "name": "Unicode License v3", + "licenseId": "Unicode-3.0", + "seeAlso": [ + "https://www.unicode.org/license.txt" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Unicode-DFS-2015.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2015.json", + "referenceNumber": 221, + "name": "Unicode License Agreement - Data Files and Software (2015)", + "licenseId": "Unicode-DFS-2015", + "seeAlso": [ + "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unicode-DFS-2016.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2016.json", + "referenceNumber": 106, + "name": "Unicode License Agreement - Data Files and Software (2016)", + "licenseId": "Unicode-DFS-2016", + "seeAlso": [ + "https://www.unicode.org/license.txt", + "http://web.archive.org/web/20160823201924/http://www.unicode.org/copyright.html#License", + "http://www.unicode.org/copyright.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Unicode-TOU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-TOU.json", + "referenceNumber": 485, + "name": "Unicode Terms of Use", + "licenseId": "Unicode-TOU", + "seeAlso": [ + "http://web.archive.org/web/20140704074106/http://www.unicode.org/copyright.html", + "http://www.unicode.org/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UnixCrypt.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UnixCrypt.json", + "referenceNumber": 37, + "name": "UnixCrypt License", + "licenseId": "UnixCrypt", + "seeAlso": [ + "https://foss.heptapod.net/python-libs/passlib/-/blob/branch/stable/LICENSE#L70", + "https://opensource.apple.com/source/JBoss/JBoss-737/jboss-all/jetty/src/main/org/mortbay/util/UnixCrypt.java.auto.html", + "https://archive.eclipse.org/jetty/8.0.1.v20110908/xref/org/eclipse/jetty/http/security/UnixCrypt.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unlicense.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unlicense.json", + "referenceNumber": 582, + "name": "The Unlicense", + "licenseId": "Unlicense", + "seeAlso": [ + "https://unlicense.org/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/UPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UPL-1.0.json", + "referenceNumber": 563, + "name": "Universal Permissive License v1.0", + "licenseId": "UPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/UPL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/URT-RLE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/URT-RLE.json", + "referenceNumber": 445, + "name": "Utah Raster Toolkit Run Length Encoded License", + "licenseId": "URT-RLE", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/pnmtorle.c", + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/rletopnm.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Vim.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Vim.json", + "referenceNumber": 667, + "name": "Vim License", + "licenseId": "Vim", + "seeAlso": [ + "http://vimdoc.sourceforge.net/htmldoc/uganda.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/VOSTROM.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/VOSTROM.json", + "referenceNumber": 248, + "name": "VOSTROM Public License for Open Source", + "licenseId": "VOSTROM", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/VOSTROM" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/VSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/VSL-1.0.json", + "referenceNumber": 105, + "name": "Vovida Software License v1.0", + "licenseId": "VSL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/VSL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/W3C.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C.json", + "referenceNumber": 135, + "name": "W3C Software Notice and License (2002-12-31)", + "licenseId": "W3C", + "seeAlso": [ + "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", + "https://opensource.org/licenses/W3C" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/W3C-19980720.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C-19980720.json", + "referenceNumber": 666, + "name": "W3C Software Notice and License (1998-07-20)", + "licenseId": "W3C-19980720", + "seeAlso": [ + "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/W3C-20150513.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C-20150513.json", + "referenceNumber": 129, + "name": "W3C Software Notice and Document License (2015-05-13)", + "licenseId": "W3C-20150513", + "seeAlso": [ + "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document", + "https://www.w3.org/copyright/software-license-2015/", + "https://www.w3.org/copyright/software-license-2023/" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/w3m.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/w3m.json", + "referenceNumber": 89, + "name": "w3m License", + "licenseId": "w3m", + "seeAlso": [ + "https://github.com/tats/w3m/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Watcom-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Watcom-1.0.json", + "referenceNumber": 534, + "name": "Sybase Open Watcom Public License 1.0", + "licenseId": "Watcom-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Watcom-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Widget-Workshop.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Widget-Workshop.json", + "referenceNumber": 538, + "name": "Widget Workshop License", + "licenseId": "Widget-Workshop", + "seeAlso": [ + "https://github.com/novnc/noVNC/blob/master/core/crypto/des.js#L24" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Wsuipa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Wsuipa.json", + "referenceNumber": 647, + "name": "Wsuipa License", + "licenseId": "Wsuipa", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Wsuipa" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/WTFPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/WTFPL.json", + "referenceNumber": 157, + "name": "Do What The F*ck You Want To Public License", + "licenseId": "WTFPL", + "seeAlso": [ + "http://www.wtfpl.net/about/", + "http://sam.zoy.org/wtfpl/COPYING" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/wwl.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/wwl.json", + "referenceNumber": 318, + "name": "WWL License", + "licenseId": "wwl", + "seeAlso": [ + "http://www.db.net/downloads/wwl+db-1.3.tgz" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/wxWindows.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/wxWindows.json", + "referenceNumber": 632, + "name": "wxWindows Library License", + "licenseId": "wxWindows", + "seeAlso": [ + "https://opensource.org/licenses/WXwindows" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/X11.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/X11.json", + "referenceNumber": 287, + "name": "X11 License", + "licenseId": "X11", + "seeAlso": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/X11-distribute-modifications-variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/X11-distribute-modifications-variant.json", + "referenceNumber": 144, + "name": "X11 License Distribution Modification Variant", + "licenseId": "X11-distribute-modifications-variant", + "seeAlso": [ + "https://github.com/mirror/ncurses/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/X11-swapped.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/X11-swapped.json", + "referenceNumber": 58, + "name": "X11 swapped final paragraphs", + "licenseId": "X11-swapped", + "seeAlso": [ + "https://github.com/fedeinthemix/chez-srfi/blob/master/srfi/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xdebug-1.03.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xdebug-1.03.json", + "referenceNumber": 678, + "name": "Xdebug License v 1.03", + "licenseId": "Xdebug-1.03", + "seeAlso": [ + "https://github.com/xdebug/xdebug/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xerox.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xerox.json", + "referenceNumber": 653, + "name": "Xerox License", + "licenseId": "Xerox", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Xerox" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xfig.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xfig.json", + "referenceNumber": 360, + "name": "Xfig License", + "licenseId": "Xfig", + "seeAlso": [ + "https://github.com/Distrotech/transfig/blob/master/transfig/transfig.c", + "https://fedoraproject.org/wiki/Licensing:MIT#Xfig_Variant", + "https://sourceforge.net/p/mcj/xfig/ci/master/tree/src/Makefile.am" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/XFree86-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/XFree86-1.1.json", + "referenceNumber": 339, + "name": "XFree86 License 1.1", + "licenseId": "XFree86-1.1", + "seeAlso": [ + "http://www.xfree86.org/current/LICENSE4.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/xinetd.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xinetd.json", + "referenceNumber": 610, + "name": "xinetd License", + "licenseId": "xinetd", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Xinetd_License" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.json", + "referenceNumber": 335, + "name": "xkeyboard-config Zinoviev License", + "licenseId": "xkeyboard-config-Zinoviev", + "seeAlso": [ + "https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/blob/master/COPYING?ref_type\u003dheads#L178" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/xlock.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xlock.json", + "referenceNumber": 15, + "name": "xlock License", + "licenseId": "xlock", + "seeAlso": [ + "https://fossies.org/linux/tiff/contrib/ras/ras2tif.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xnet.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xnet.json", + "referenceNumber": 111, + "name": "X.Net License", + "licenseId": "Xnet", + "seeAlso": [ + "https://opensource.org/licenses/Xnet" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/xpp.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xpp.json", + "referenceNumber": 315, + "name": "XPP License", + "licenseId": "xpp", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/xpp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/XSkat.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/XSkat.json", + "referenceNumber": 246, + "name": "XSkat License", + "licenseId": "XSkat", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/XSkat_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/xzoom.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xzoom.json", + "referenceNumber": 443, + "name": "xzoom License", + "licenseId": "xzoom", + "seeAlso": [ + "https://metadata.ftp-master.debian.org/changelogs//main/x/xzoom/xzoom_0.3-27_copyright" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/YPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/YPL-1.0.json", + "referenceNumber": 30, + "name": "Yahoo! Public License v1.0", + "licenseId": "YPL-1.0", + "seeAlso": [ + "http://www.zimbra.com/license/yahoo_public_license_1.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/YPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/YPL-1.1.json", + "referenceNumber": 392, + "name": "Yahoo! Public License v1.1", + "licenseId": "YPL-1.1", + "seeAlso": [ + "http://www.zimbra.com/license/yahoo_public_license_1.1.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zed.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zed.json", + "referenceNumber": 153, + "name": "Zed License", + "licenseId": "Zed", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Zed" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zeeff.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zeeff.json", + "referenceNumber": 648, + "name": "Zeeff License", + "licenseId": "Zeeff", + "seeAlso": [ + "ftp://ftp.tin.org/pub/news/utils/newsx/newsx-1.6.tar.gz" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zend-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zend-2.0.json", + "referenceNumber": 491, + "name": "Zend License v2.0", + "licenseId": "Zend-2.0", + "seeAlso": [ + "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zimbra-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zimbra-1.3.json", + "referenceNumber": 1, + "name": "Zimbra Public License v1.3", + "licenseId": "Zimbra-1.3", + "seeAlso": [ + "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zimbra-1.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zimbra-1.4.json", + "referenceNumber": 624, + "name": "Zimbra Public License v1.4", + "licenseId": "Zimbra-1.4", + "seeAlso": [ + "http://www.zimbra.com/legal/zimbra-public-license-1-4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zlib.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zlib.json", + "referenceNumber": 276, + "name": "zlib License", + "licenseId": "Zlib", + "seeAlso": [ + "http://www.zlib.net/zlib_license.html", + "https://opensource.org/licenses/Zlib" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/zlib-acknowledgement.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/zlib-acknowledgement.json", + "referenceNumber": 432, + "name": "zlib/libpng License with Acknowledgement", + "licenseId": "zlib-acknowledgement", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ZPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-1.1.json", + "referenceNumber": 148, + "name": "Zope Public License 1.1", + "licenseId": "ZPL-1.1", + "seeAlso": [ + "http://old.zope.org/Resources/License/ZPL-1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ZPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-2.0.json", + "referenceNumber": 462, + "name": "Zope Public License 2.0", + "licenseId": "ZPL-2.0", + "seeAlso": [ + "http://old.zope.org/Resources/License/ZPL-2.0", + "https://opensource.org/licenses/ZPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ZPL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-2.1.json", + "referenceNumber": 80, + "name": "Zope Public License 2.1", + "licenseId": "ZPL-2.1", + "seeAlso": [ + "http://old.zope.org/Resources/ZPL/" + ], + "isOsiApproved": true, + "isFsfLibre": true + } + ], + "releaseDate": "2025-03-06T00:00:00Z" +} \ No newline at end of file diff --git a/licenses/spdx.py b/licenses/spdx.py new file mode 100644 index 0000000000..06c3edb4e6 --- /dev/null +++ b/licenses/spdx.py @@ -0,0 +1,100 @@ +import json +import logging +import sys +import urllib.request + +SPDX_LICENSE_LIST_URL = 'https://raw.githubusercontent.com/spdx/license-list-data/main/json/licenses.json' + +LICENSE_URL = 'license_url' +SPDX = 'spdx' + +spdx_license_list = None + +# Configure the logging module +logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s") + + +def get_spdx_license_list(): + """ + Download JSON file with current list of SPDX licenses, parse it, and return it as a Python dictionary. + """ + global spdx_license_list + + if spdx_license_list is None: + with urllib.request.urlopen(SPDX_LICENSE_LIST_URL) as fp: + spdx_license_list = json.load(fp) + version, release_date = spdx_license_list['licenseListVersion'], spdx_license_list['releaseDate'] + logging.info(f"Downloaded version {version} of SPDX license list (release date: {release_date})") + licenses = spdx_license_list['licenses'] + logging.info(f"Found info on {len(licenses)} licenses!") + + return spdx_license_list + + +def license_info(spdx_id): + """Find license with specified SPDX identifier.""" + + spdx_license_list = get_spdx_license_list() + + licenses = spdx_license_list['licenses'] + for lic in licenses: + if lic['licenseId'] == spdx_id: + return lic + + # if no match is found, return None as result + return None + + +def read_licenses(path): + """ + Read software project to license mapping from specified path + """ + with open(path) as fp: + licenses = json.loads(fp.read()) + + return licenses + + +def check_licenses(licenses): + """ + Check mapping of software licenses: make sure SPDX identifiers are valid. + """ + faulty_licenses = {} + + for software_name in licenses: + spdx_lic_id = licenses[software_name][SPDX] + lic_info = license_info(spdx_lic_id) + if lic_info: + lic_url = licenses[software_name][LICENSE_URL] + logging.info(f"License for software '{software_name}': {lic_info['name']} (see {lic_url})") + else: + logging.warning(f"Found faulty SPDX license ID for {software_name}: {spdx_lic_id}") + faulty_licenses[software_name] = spdx_lic_id + + if faulty_licenses: + logging.warning(f"Found {len(faulty_licenses)} faulty SPDIX license IDs (out of {len(licenses)})!") + result = False + else: + logging.info(f"License check passed for {len(licenses)} licenses!") + result = True + + return result + + +def main(args): + if len(args) == 1: + licenses_path = args[0] + else: + logging.error("Usage: python spdx.py ") + sys.exit(1) + + licenses = read_licenses(licenses_path) + if check_licenses(licenses): + logging.info("All license checks PASSED!") + else: + logging.error("One or more licence checks failed!") + sys.exit(2) + + +if __name__ == '__main__': + main(sys.argv[1:]) diff --git a/licenses/update_licenses.py b/licenses/update_licenses.py new file mode 100644 index 0000000000..c465e42d9d --- /dev/null +++ b/licenses/update_licenses.py @@ -0,0 +1,179 @@ +import requests +import argparse +import json +import os +import re +from datetime import datetime + +url_repo = "https://repos.ecosyste.ms/api/v1/hosts" +url_reg = "https://packages.ecosyste.ms/api/v1/registries" + +def ecosystems_list(url): + r = requests.get(url) + if r.status_code != 200: + return "not found", None, None + data = r.json() + listing = [] + for reg in data: + listing.append(reg["name"]) + return(listing) + +def validate_repo_format(value): + # Validates the input format :/ and ensures the hostname is allowed. + pattern = r'^([^:]+):(?:(\w+)/)?([^/]+)/(.+)$' + match = re.match(pattern, value) + + if not match: + raise argparse.ArgumentTypeError( + f"Invalid format. Use :/ or or ://.") + + hostname, group, user, repo = match.groups() + + if hostname not in ecosystems_list(url_repo): + raise argparse.ArgumentTypeError( + f"Invalid hostname '{hostname}'. Check '--repo help'" + ) + + return value # Return the validated string + +def parse_arguments(): + + # Positional arguments + parser = argparse.ArgumentParser(description='Script to ingest licenses') + parser.add_argument('project', nargs='+', help='List of project name') + parser.add_argument( + '--manual', help='Manually provided license', required=False) + parser.add_argument( + '--spdx', help='SPDX identifier for the license', required=False) + + # Now the complicated ones + group = parser.add_mutually_exclusive_group() + group.add_argument('--registry', help='Origin registry. Use "--registry help" to see all available options', metavar='REGISTRY', choices=ecosystems_list(url_reg)) + group.add_argument('--repo', help='Origin repository. Format: :/. All available hosts shown with "--repo help"', metavar='REPOSITORY', type=validate_repo_format) + + args = parser.parse_args() + return args + +# Retrieve license from ecosyste.ms package API +def ecosystems_packages(registry, package): + print("available registries: ") + ecosystems_registries() + url = "https://packages.ecosyste.ms/api/v1/registries/{registry}/packages/{package}".format( + registry=registry, package=package + ) + print(url) + r = requests.get(url) + if r.status_code != 200: + return "not found", None, None + data = r.json() + print(data.get('licenses')) + return data.get('normalized_licenses', 'not found'), registry + +# Retrieve license from ecosyste.ms repo API +def ecosystems_repo(repository, source): +# hostname, user, repo = re.match(r'^([^:]+):([^/]+)/(.+)$', repository).groups() + hostname, group, user, repo = re.match(r'^([^:]+):(?:(\w+)/)?([^/]+)/(.+)$', repository).groups() + + if group: + url = "https://repos.ecosyste.ms/api/v1/hosts/{hostname}/repositories/{group}%2F{user}%2F{repo}".format( + hostname=hostname, group=group, user=user, repo=repo) + else: + url = "https://repos.ecosyste.ms/api/v1/hosts/{hostname}/repositories/{user}%2F{repo}".format( + hostname=hostname, user=user, repo=repo) + print(url) + r = requests.get(url) + if r.status_code != 200: + return "not found", None, None + data = r.json() + return data.get('license', 'not found') + +# Main license retrieval function +def go_fetch(args): + if args.registry: + lic, source = ecosystems_packages(args.registry, args.project) + elif args.repo: + lic = ecosystems_repo(args.repo, args.project) + else: + lic, source, url = "not found", None, None + spdx_id = args.spdx if args.spdx else ( + lic if lic and lic != "not found" else None) + + info = { + "license": lic, +# "source": source, + "retrieved_at": datetime.now().isoformat(), + } + return info + + +def update_json(licenses, project, info): + if project in licenses: + if 'history' not in licenses[project]: + licenses[project]['history'] = [] + licenses[project]['history'].append(info) + licenses[project]['current'] = info + print('Updated license for project {project}'.format(project=project)) + else: + licenses[project] = { + "current": info, + "history": [info], + } + print('Added new license for project {project}'.format( + project=project)) + + lic_json = json.dumps(licenses, indent=4) + with open('licenses.json', 'w') as lic_file: + lic_file.write(lic_json) + + return licenses + +# Create patch output + + +def generate_patch(licenses): + patch = json.dumps(licenses, indent=4) + return patch + +# Function to save patch to a file + + +def save_patch(patch_content, filename="license_update.patch"): + with open(filename, 'w') as patch_file: + patch_file.write(patch_content) + print("Patch saved to {filename}".format(filename=filename)) + + +def main(): + args = parse_arguments() + + if os.path.exists('licenses.json'): + with open('licenses.json', 'r') as lic_dict: + licenses = json.loads(lic_dict.read()) + else: + licenses = {} + + for project in args.project: + # add if not manual, this just for fetching the license! + if not args.manual: + # we fetchin' + info = go_fetch(args) + update_json(licenses, project, info) + else: + # we inserting it manually + info = { + "license": args.spdx, + "retrieved_at": datetime.now().isoformat(), + } + + + patch = generate_patch(licenses) + save_patch(patch) + + with open('licenses.json', 'w') as lic_file: + lic_file.write(patch) + + print("Patch output:\n{patch}".format(patch=patch)) + + +if __name__ == "__main__": + main()