From 5510aaf8e27cf9bb7e0db3ce29f6579f0bf215b2 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 22 Dec 2025 10:48:49 +0100 Subject: [PATCH 1/5] Added licensed configuration files and scripts --- .gitignore | 2 ++ .licensed.yml | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ Taskfile.yml | 44 ++++++++++++++++++++++++ 3 files changed, 138 insertions(+) create mode 100644 .licensed.yml create mode 100644 Taskfile.yml diff --git a/.gitignore b/.gitignore index 570b7df39..da9806d94 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,5 @@ electron-app/traces inols*.log # The electron-builder output. electron-app/dist +# The licensed executable (installed as a ruby gem) +.licensed \ No newline at end of file diff --git a/.licensed.yml b/.licensed.yml new file mode 100644 index 000000000..9324ebf6c --- /dev/null +++ b/.licensed.yml @@ -0,0 +1,92 @@ +# See: https://github.com/licensee/licensed/blob/main/docs/configuration.md + +sources: + npm: true + +ignored: + npm: + # "msgpackr-extract" and "@parcel/watcher" have some optional (architecutre native) packages. + - "@msgpackr-extract/msgpackr-extract-**" # ignored in favor of parent package "msgpackr-extract" + - "@parcel/watcher-**" # ignored in favor of parent package "@parcel-watcher" + # "@vscode/windows-ca-certs" is installed only windows + - "@vscode/windows-ca-certs" + +# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies/AGPL-3.0/.licensed.yml +allowed: + # The following are based on: https://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses + - gpl-1.0-or-later + - gpl-1.0+ # Deprecated ID for `gpl-1.0-or-later` + - gpl-2.0-or-later + - gpl-2.0+ # Deprecated ID for `gpl-2.0-or-later` + - gpl-3.0-only + - gpl-3.0 # Deprecated ID for `gpl-3.0-only` + - gpl-3.0-or-later + - gpl-3.0+ # Deprecated ID for `gpl-3.0-or-later` + - lgpl-2.0-or-later + - lgpl-2.0+ # Deprecated ID for `lgpl-2.0-or-later` + - lgpl-2.1-only + - lgpl-2.1 # Deprecated ID for `lgpl-2.1-only` + - lgpl-2.1-or-later + - lgpl-2.1+ # Deprecated ID for `lgpl-2.1-or-later` + - lgpl-3.0-only + - lgpl-3.0 # Deprecated ID for `lgpl-3.0-only` + - lgpl-3.0-or-later + - lgpl-3.0+ # Deprecated ID for `lgpl-3.0-or-later` + - agpl-1.0-or-later + - agpl-3.0-only + - agpl-3.0 # Deprecated ID for `agpl-3.0-only` + - agpl-3.0-or-later + - fsfap + - apache-2.0 + - artistic-2.0 + - clartistic + - sleepycat + - bsl-1.0 + - bsd-3-clause + - cecill-2.0 + - bsd-3-clause-clear + # "Cryptix General License" - no SPDX ID (https://github.com/spdx/license-list-XML/issues/456) + - ecos-2.0 + - ecl-2.0 + - efl-2.0 + - eudatagrid + - mit + - bsd-2-clause # Subsumed by `bsd-2-clause-views` + - bsd-2-clause-netbsd # Deprecated ID for `bsd-2-clause` + - bsd-2-clause-views # This is the version linked from https://www.gnu.org/licenses/license-list.html#FreeBSD + - bsd-2-clause-freebsd # Deprecated ID for `bsd-2-clause-views` + - ftl + - hpnd + - imatix + - imlib2 + - ijg + # "Informal license" - this is a general class of license + - intel + - isc + - mpl-2.0 + - ncsa + # "License of Netscape JavaScript" - no SPDX ID + - oldap-2.7 + # "License of Perl 5 and below" - possibly `Artistic-1.0-Perl` ? + - cc0-1.0 + - cc-pddc + - psf-2.0 + - ruby + - sgi-b-2.0 + - smlnj + - standardml-nj # Deprecated ID for `smlnj` + - unicode-dfs-2015 + - upl-1.0 + - unlicense + - vim + - w3c + - wtfpl + - lgpl-2.0-or-later with wxwindows-exception-3.1 + - wxwindows # Deprecated ID for `lgpl-2.0-or-later with wxwindows-exception-3.1` + - x11 + - xfree86-1.1 + - zlib + - zpl-2.0 + - zpl-2.1 + # The following are based on individual license text + - eupl-1.2 \ No newline at end of file diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 000000000..3b61a137c --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,44 @@ +# See: https://taskfile.dev/#/usage +version: "3" + +tasks: + # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies-task/Taskfile.yml + general:cache-dep-licenses: + desc: Cache dependency license metadata + deps: + - task: general:install-licensed + - task: general:prepare-deps + cmds: + - .licensed/bin/licensed cache + + # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies-task/Taskfile.yml + general:check-dep-licenses: + desc: Check for unapproved dependency licenses + deps: + - task: general:cache-dep-licenses + cmds: + - .licensed/bin/licensed status + + general:install-licensed: + desc: Install licensed in the .licensed folder + status: + - test -f .licensed/bin/licensed + cmds: + - if [[ {{OS}} == "windows" ]]; then + echo "Licensed does not have Windows support." + echo "Please use Linux/macOS or download the dependencies cache from the GitHub Actions workflow artifact." + exit 1 + fi + - gem install licensed --install-dir .licensed + + general:prepare-deps: + desc: Prepare project dependencies for license check + deps: + - task: yarn:install-deps + + yarn:install-deps: + desc: | + Install dependencies managed by npm/yarn. + run: when_changed + cmds: + - yarn \ No newline at end of file From e9d27be0ac91aeb35810622dbad2e8e6559f4ae7 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 22 Dec 2025 12:33:11 +0100 Subject: [PATCH 2/5] First run of licensed --- .licenses/npm/@babel/code-frame.dep.yml | 33 + .licenses/npm/@babel/generator.dep.yml | 33 + .../npm/@babel/helper-module-imports.dep.yml | 33 + .../npm/@babel/helper-string-parser.dep.yml | 33 + .../helper-validator-identifier.dep.yml | 33 + .licenses/npm/@babel/parser.dep.yml | 30 + .licenses/npm/@babel/runtime.dep.yml | 33 + .licenses/npm/@babel/template.dep.yml | 33 + .licenses/npm/@babel/traverse.dep.yml | 34 + .licenses/npm/@babel/types.dep.yml | 33 + .licenses/npm/@electron/get.dep.yml | 32 + .licenses/npm/@emotion/babel-plugin.dep.yml | 33 + .licenses/npm/@emotion/cache.dep.yml | 32 + .licenses/npm/@emotion/hash.dep.yml | 32 + .licenses/npm/@emotion/memoize.dep.yml | 32 + .licenses/npm/@emotion/react.dep.yml | 32 + .licenses/npm/@emotion/serialize.dep.yml | 32 + .licenses/npm/@emotion/sheet.dep.yml | 32 + .licenses/npm/@emotion/unitless.dep.yml | 32 + ...se-insertion-effect-with-fallbacks.dep.yml | 32 + .licenses/npm/@emotion/utils.dep.yml | 32 + .licenses/npm/@emotion/weak-memoize.dep.yml | 32 + .licenses/npm/@floating-ui/core.dep.yml | 32 + .licenses/npm/@floating-ui/dom.dep.yml | 31 + .licenses/npm/@floating-ui/utils.dep.yml | 31 + .licenses/npm/@grpc/grpc-js.dep.yml | 212 ++++++ .licenses/npm/@grpc/proto-loader.dep.yml | 212 ++++++ .licenses/npm/@isaacs/cliui.dep.yml | 25 + .licenses/npm/@jridgewell/gen-mapping.dep.yml | 30 + .licenses/npm/@jridgewell/resolve-uri.dep.yml | 30 + .licenses/npm/@jridgewell/set-array.dep.yml | 30 + .../npm/@jridgewell/sourcemap-codec.dep.yml | 34 + .../npm/@jridgewell/trace-mapping.dep.yml | 30 + .licenses/npm/@js-sdsl/ordered-map.dep.yml | 32 + .licenses/npm/@leichtgewicht/ip-codec.dep.yml | 34 + .licenses/npm/@mapbox/node-pre-gyp.dep.yml | 38 + .licenses/npm/@parcel/watcher.dep.yml | 35 + .licenses/npm/@phosphor/algorithm.dep.yml | 38 + .licenses/npm/@phosphor/collections.dep.yml | 38 + .licenses/npm/@phosphor/commands.dep.yml | 38 + .licenses/npm/@phosphor/coreutils.dep.yml | 37 + .licenses/npm/@phosphor/disposable.dep.yml | 38 + .licenses/npm/@phosphor/domutils.dep.yml | 38 + .licenses/npm/@phosphor/dragdrop.dep.yml | 38 + .licenses/npm/@phosphor/keyboard.dep.yml | 37 + .licenses/npm/@phosphor/messaging.dep.yml | 38 + .licenses/npm/@phosphor/properties.dep.yml | 37 + .licenses/npm/@phosphor/signaling.dep.yml | 38 + .licenses/npm/@phosphor/virtualdom.dep.yml | 38 + .licenses/npm/@phosphor/widgets.dep.yml | 38 + .licenses/npm/@pingghost/protoc.dep.yml | 31 + .licenses/npm/@pkgjs/parseargs.dep.yml | 212 ++++++ .licenses/npm/@popperjs/core.dep.yml | 33 + .licenses/npm/@protobufjs/aspromise.dep.yml | 37 + .licenses/npm/@protobufjs/base64.dep.yml | 37 + .licenses/npm/@protobufjs/codegen.dep.yml | 37 + .../npm/@protobufjs/eventemitter.dep.yml | 37 + .licenses/npm/@protobufjs/fetch.dep.yml | 37 + .licenses/npm/@protobufjs/float.dep.yml | 38 + .licenses/npm/@protobufjs/inquire.dep.yml | 37 + .licenses/npm/@protobufjs/path.dep.yml | 37 + .licenses/npm/@protobufjs/pool.dep.yml | 37 + .licenses/npm/@protobufjs/utf8.dep.yml | 37 + .licenses/npm/@sindresorhus/df-1.0.1.dep.yml | 34 + .licenses/npm/@sindresorhus/df-3.1.1.dep.yml | 20 + .licenses/npm/@sindresorhus/is-4.6.0.dep.yml | 20 + .licenses/npm/@sindresorhus/is-5.6.0.dep.yml | 20 + .../npm/@socket.io/component-emitter.dep.yml | 37 + .licenses/npm/@stroncium/procfs.dep.yml | 128 ++++ .../npm/@szmarczak/http-timer-4.0.6.dep.yml | 34 + .../npm/@szmarczak/http-timer-5.0.1.dep.yml | 34 + .../npm/@theia/application-package.dep.yml | 11 + .licenses/npm/@theia/bulk-edit.dep.yml | 11 + .licenses/npm/@theia/callhierarchy.dep.yml | 11 + .licenses/npm/@theia/console.dep.yml | 11 + .licenses/npm/@theia/core.dep.yml | 11 + .licenses/npm/@theia/debug.dep.yml | 13 + .licenses/npm/@theia/editor-preview.dep.yml | 11 + .licenses/npm/@theia/editor.dep.yml | 11 + .licenses/npm/@theia/electron.dep.yml | 11 + .licenses/npm/@theia/file-search.dep.yml | 11 + .licenses/npm/@theia/filesystem.dep.yml | 11 + .licenses/npm/@theia/keymaps.dep.yml | 11 + .licenses/npm/@theia/markers.dep.yml | 11 + .licenses/npm/@theia/messages.dep.yml | 11 + .../npm/@theia/monaco-editor-core.dep.yml | 34 + .licenses/npm/@theia/monaco.dep.yml | 11 + .licenses/npm/@theia/navigator.dep.yml | 11 + .licenses/npm/@theia/notebook.dep.yml | 11 + .licenses/npm/@theia/outline-view.dep.yml | 11 + .licenses/npm/@theia/output.dep.yml | 11 + .../npm/@theia/plugin-ext-vscode.dep.yml | 11 + .licenses/npm/@theia/plugin-ext.dep.yml | 11 + .licenses/npm/@theia/plugin.dep.yml | 11 + .licenses/npm/@theia/preferences.dep.yml | 11 + .licenses/npm/@theia/process.dep.yml | 11 + .licenses/npm/@theia/request.dep.yml | 11 + .licenses/npm/@theia/scm.dep.yml | 11 + .../npm/@theia/search-in-workspace.dep.yml | 11 + .licenses/npm/@theia/task.dep.yml | 12 + .licenses/npm/@theia/terminal.dep.yml | 11 + .licenses/npm/@theia/test.dep.yml | 9 + .licenses/npm/@theia/timeline.dep.yml | 11 + .licenses/npm/@theia/typehierarchy.dep.yml | 11 + .licenses/npm/@theia/userstorage.dep.yml | 11 + .../npm/@theia/variable-resolver.dep.yml | 11 + .licenses/npm/@theia/workspace.dep.yml | 11 + .licenses/npm/@tippyjs/react.dep.yml | 32 + .licenses/npm/@tootallnate/once-1.1.2.dep.yml | 30 + .licenses/npm/@tootallnate/once-2.0.0.dep.yml | 32 + .licenses/npm/@types/auth0-js.dep.yml | 32 + .licenses/npm/@types/body-parser.dep.yml | 32 + .licenses/npm/@types/btoa.dep.yml | 32 + .../npm/@types/cacheable-request.dep.yml | 32 + .licenses/npm/@types/connect.dep.yml | 32 + .licenses/npm/@types/cookie.dep.yml | 32 + .licenses/npm/@types/cors.dep.yml | 32 + .licenses/npm/@types/dateformat.dep.yml | 32 + .licenses/npm/@types/debug.dep.yml | 32 + .licenses/npm/@types/diff.dep.yml | 32 + .licenses/npm/@types/dompurify.dep.yml | 32 + .licenses/npm/@types/express-4.17.21.dep.yml | 32 + .licenses/npm/@types/express-5.0.0.dep.yml | 32 + .../express-serve-static-core-4.19.6.dep.yml | 32 + .../express-serve-static-core-5.0.6.dep.yml | 32 + .licenses/npm/@types/fs-extra.dep.yml | 32 + .licenses/npm/@types/google-protobuf.dep.yml | 32 + .licenses/npm/@types/hast.dep.yml | 32 + .../npm/@types/http-cache-semantics.dep.yml | 32 + .licenses/npm/@types/http-errors.dep.yml | 32 + .licenses/npm/@types/js-yaml.dep.yml | 32 + .licenses/npm/@types/jsdom.dep.yml | 32 + .licenses/npm/@types/keyv.dep.yml | 32 + .licenses/npm/@types/linkify-it.dep.yml | 32 + .../npm/@types/lodash.debounce-4.0.3.dep.yml | 32 + .../npm/@types/lodash.debounce-4.0.9.dep.yml | 32 + .licenses/npm/@types/lodash.dep.yml | 32 + .licenses/npm/@types/lodash.throttle.dep.yml | 32 + .licenses/npm/@types/markdown-it.dep.yml | 32 + .licenses/npm/@types/mdast.dep.yml | 32 + .licenses/npm/@types/mdurl.dep.yml | 32 + .licenses/npm/@types/mime-1.3.5.dep.yml | 32 + .licenses/npm/@types/mime-2.0.3.dep.yml | 32 + .licenses/npm/@types/ms.dep.yml | 32 + .licenses/npm/@types/multer.dep.yml | 32 + .licenses/npm/@types/node-20.17.24.dep.yml | 32 + .licenses/npm/@types/node-22.13.10.dep.yml | 32 + .licenses/npm/@types/node-fetch.dep.yml | 32 + .licenses/npm/@types/p-queue.dep.yml | 32 + .licenses/npm/@types/parse-json.dep.yml | 32 + .licenses/npm/@types/prop-types.dep.yml | 32 + .licenses/npm/@types/ps-tree.dep.yml | 32 + .licenses/npm/@types/qs.dep.yml | 32 + .licenses/npm/@types/range-parser.dep.yml | 32 + .licenses/npm/@types/react-dom.dep.yml | 32 + .../npm/@types/react-transition-group.dep.yml | 32 + .licenses/npm/@types/react.dep.yml | 32 + .licenses/npm/@types/responselike.dep.yml | 32 + .licenses/npm/@types/route-parser.dep.yml | 32 + .licenses/npm/@types/safer-buffer.dep.yml | 32 + .licenses/npm/@types/semver.dep.yml | 32 + .licenses/npm/@types/send.dep.yml | 32 + .licenses/npm/@types/serve-static.dep.yml | 32 + .licenses/npm/@types/tar-fs.dep.yml | 32 + .licenses/npm/@types/tar-stream.dep.yml | 32 + .licenses/npm/@types/temp.dep.yml | 32 + .licenses/npm/@types/tough-cookie.dep.yml | 32 + .licenses/npm/@types/trusted-types.dep.yml | 32 + .licenses/npm/@types/unist.dep.yml | 32 + .licenses/npm/@types/uuid.dep.yml | 32 + .licenses/npm/@types/vscode.dep.yml | 32 + .licenses/npm/@types/write-json-file.dep.yml | 32 + .licenses/npm/@types/ws.dep.yml | 32 + .licenses/npm/@types/yargs-parser.dep.yml | 32 + .licenses/npm/@types/yargs.dep.yml | 32 + .licenses/npm/@types/yauzl.dep.yml | 32 + .licenses/npm/@virtuoso.dev/react-urx.dep.yml | 32 + .licenses/npm/@virtuoso.dev/urx.dep.yml | 32 + .licenses/npm/@vscode/codicons.dep.yml | 261 +++++++ .licenses/npm/@vscode/debugprotocol.dep.yml | 26 + .licenses/npm/@vscode/proxy-agent.dep.yml | 27 + .licenses/npm/@vscode/ripgrep.dep.yml | 24 + .licenses/npm/abab.dep.yml | 24 + .licenses/npm/abbrev.dep.yml | 57 ++ .licenses/npm/accepts.dep.yml | 47 ++ .licenses/npm/acorn-globals.dep.yml | 32 + .licenses/npm/acorn-walk.dep.yml | 32 + .licenses/npm/acorn.dep.yml | 32 + .licenses/npm/advanced-mark.js.dep.yml | 35 + .licenses/npm/agent-base-6.0.2.dep.yml | 39 + .licenses/npm/agent-base-7.1.3.dep.yml | 33 + .licenses/npm/aggregate-error-3.1.0.dep.yml | 20 + .licenses/npm/aggregate-error-4.0.1.dep.yml | 20 + .licenses/npm/ajv-6.12.6.dep.yml | 36 + .licenses/npm/ajv-8.17.1.dep.yml | 36 + .licenses/npm/ajv-formats.dep.yml | 34 + .licenses/npm/anser.dep.yml | 32 + .licenses/npm/ansi-colors.dep.yml | 42 ++ .licenses/npm/ansi-escapes.dep.yml | 20 + .licenses/npm/ansi-regex-2.1.1.dep.yml | 34 + .licenses/npm/ansi-regex-5.0.1.dep.yml | 20 + .licenses/npm/ansi-regex-6.1.0.dep.yml | 20 + .licenses/npm/ansi-styles-4.3.0.dep.yml | 20 + .licenses/npm/ansi-styles-6.2.1.dep.yml | 20 + .licenses/npm/append-field.dep.yml | 34 + .licenses/npm/aproba-1.2.0.dep.yml | 26 + .licenses/npm/aproba-2.0.0.dep.yml | 26 + .licenses/npm/arduino-ide-extension.dep.yml | 9 + .../npm/arduino-serial-plotter-webapp.dep.yml | 672 ++++++++++++++++++ .licenses/npm/ardunno-cli.dep.yml | 35 + .licenses/npm/are-we-there-yet-1.1.7.dep.yml | 16 + .licenses/npm/are-we-there-yet-2.0.0.dep.yml | 29 + .licenses/npm/argparse-1.0.10.dep.yml | 38 + .licenses/npm/argparse-2.0.1.dep.yml | 265 +++++++ .../npm/array-buffer-byte-length.dep.yml | 33 + .licenses/npm/array-flatten.dep.yml | 44 ++ .licenses/npm/array-union.dep.yml | 34 + .licenses/npm/array-uniq.dep.yml | 34 + .licenses/npm/asap.dep.yml | 36 + .licenses/npm/astral-regex.dep.yml | 22 + .licenses/npm/async-mutex-0.3.2.dep.yml | 34 + .licenses/npm/async-mutex-0.4.1.dep.yml | 34 + .licenses/npm/asynckit.dep.yml | 34 + .licenses/npm/atomically.dep.yml | 34 + .licenses/npm/auth0-js.dep.yml | 32 + .licenses/npm/autosize.dep.yml | 33 + .licenses/npm/available-typed-arrays.dep.yml | 32 + .licenses/npm/axios.dep.yml | 20 + .licenses/npm/babel-plugin-macros.dep.yml | 62 ++ .licenses/npm/bail.dep.yml | 74 ++ .licenses/npm/balanced-match.dep.yml | 55 ++ .licenses/npm/base64-js.dep.yml | 34 + .licenses/npm/base64id.dep.yml | 33 + .licenses/npm/big-integer.dep.yml | 37 + .licenses/npm/binary.dep.yml | 11 + .licenses/npm/bindings.dep.yml | 57 ++ .licenses/npm/bl-1.2.3.dep.yml | 25 + .licenses/npm/bl-4.1.0.dep.yml | 25 + .licenses/npm/bluebird.dep.yml | 55 ++ .licenses/npm/body-parser.dep.yml | 49 ++ .licenses/npm/boolean.dep.yml | 19 + .licenses/npm/brace-expansion-1.1.11.dep.yml | 55 ++ .licenses/npm/brace-expansion-2.0.1.dep.yml | 55 ++ .licenses/npm/braces.dep.yml | 42 ++ .licenses/npm/btoa.dep.yml | 523 ++++++++++++++ .licenses/npm/buffer-alloc-unsafe.dep.yml | 30 + .licenses/npm/buffer-alloc.dep.yml | 30 + .licenses/npm/buffer-crc32.dep.yml | 26 + .licenses/npm/buffer-fill.dep.yml | 30 + .licenses/npm/buffer-from.dep.yml | 32 + .licenses/npm/buffer-indexof-polyfill.dep.yml | 43 ++ .licenses/npm/buffer.dep.yml | 107 +++ .licenses/npm/buffers.dep.yml | 9 + .licenses/npm/builder-util-runtime.dep.yml | 34 + .licenses/npm/busboy.dep.yml | 30 + .licenses/npm/bytes.dep.yml | 46 ++ .licenses/npm/cacheable-lookup-5.0.4.dep.yml | 34 + .licenses/npm/cacheable-lookup-7.0.0.dep.yml | 32 + .../npm/cacheable-request-10.2.14.dep.yml | 12 + .licenses/npm/cacheable-request-7.0.4.dep.yml | 34 + .licenses/npm/call-bind-apply-helpers.dep.yml | 32 + .licenses/npm/call-bind.dep.yml | 32 + .licenses/npm/call-bound.dep.yml | 32 + .licenses/npm/callsites.dep.yml | 22 + .licenses/npm/camelcase.dep.yml | 23 + .licenses/npm/chainsaw.dep.yml | 9 + .licenses/npm/chalk.dep.yml | 20 + .licenses/npm/character-entities.dep.yml | 74 ++ .licenses/npm/chownr-1.1.4.dep.yml | 26 + .licenses/npm/chownr-2.0.0.dep.yml | 26 + .licenses/npm/classnames.dep.yml | 32 + .licenses/npm/clean-stack-2.2.0.dep.yml | 22 + .licenses/npm/clean-stack-4.2.0.dep.yml | 20 + .licenses/npm/cli-cursor.dep.yml | 20 + .licenses/npm/cli-truncate.dep.yml | 20 + .licenses/npm/cliui-6.0.0.dep.yml | 25 + .licenses/npm/cliui-8.0.1.dep.yml | 25 + .licenses/npm/clone-buffer.dep.yml | 51 ++ .licenses/npm/clone-response.dep.yml | 34 + .licenses/npm/clone-stats.dep.yml | 35 + .licenses/npm/clone.dep.yml | 50 ++ .licenses/npm/cloneable-readable.dep.yml | 34 + .licenses/npm/clsx.dep.yml | 22 + .licenses/npm/code-point-at.dep.yml | 34 + .licenses/npm/color-convert.dep.yml | 36 + .licenses/npm/color-name.dep.yml | 19 + .licenses/npm/color-support.dep.yml | 26 + .licenses/npm/colorette.dep.yml | 20 + .licenses/npm/combined-stream.dep.yml | 32 + .licenses/npm/comma-separated-tokens.dep.yml | 72 ++ .licenses/npm/commander-2.20.3.dep.yml | 35 + .licenses/npm/commander-6.2.1.dep.yml | 33 + .licenses/npm/component-emitter.dep.yml | 37 + .licenses/npm/computed-style.dep.yml | 38 + .licenses/npm/concat-map.dep.yml | 31 + .licenses/npm/concat-stream.dep.yml | 27 + .licenses/npm/conf.dep.yml | 20 + .licenses/npm/console-control-strings.dep.yml | 26 + .licenses/npm/content-disposition.dep.yml | 47 ++ .licenses/npm/content-type.dep.yml | 46 ++ .licenses/npm/convert-source-map.dep.yml | 25 + .licenses/npm/cookie-0.4.2.dep.yml | 48 ++ .licenses/npm/cookie-0.7.1.dep.yml | 48 ++ .licenses/npm/cookie-0.7.2.dep.yml | 48 ++ .licenses/npm/cookie-signature.dep.yml | 33 + .licenses/npm/cookiejar.dep.yml | 24 + .licenses/npm/core-util-is.dep.yml | 30 + .licenses/npm/cors.dep.yml | 35 + .licenses/npm/cosmiconfig.dep.yml | 35 + .licenses/npm/cross-fetch.dep.yml | 35 + .licenses/npm/cross-spawn-4.0.2.dep.yml | 32 + .licenses/npm/cross-spawn-7.0.6.dep.yml | 34 + .licenses/npm/crypto-js.dep.yml | 25 + .licenses/npm/cssstyle.dep.yml | 31 + .licenses/npm/csstype.dep.yml | 30 + .licenses/npm/data-uri-to-buffer.dep.yml | 35 + .licenses/npm/data-urls.dep.yml | 18 + .licenses/npm/dateformat.dep.yml | 37 + .licenses/npm/debounce-fn.dep.yml | 20 + .licenses/npm/debug-2.6.9.dep.yml | 48 ++ .licenses/npm/debug-3.2.7.dep.yml | 48 ++ .licenses/npm/debug-4.3.7.dep.yml | 56 ++ .licenses/npm/debug-4.4.0.dep.yml | 56 ++ .licenses/npm/decamelize.dep.yml | 35 + .licenses/npm/decimal.js.dep.yml | 37 + .../decode-named-character-reference.dep.yml | 70 ++ .licenses/npm/decode-uri-component.dep.yml | 26 + .../npm/decompress-response-4.2.1.dep.yml | 20 + .../npm/decompress-response-6.0.0.dep.yml | 20 + .licenses/npm/decompress-tar.dep.yml | 22 + .licenses/npm/decompress-tarbz2.dep.yml | 22 + .licenses/npm/decompress-targz.dep.yml | 22 + .licenses/npm/decompress-unzip.dep.yml | 34 + .licenses/npm/decompress.dep.yml | 22 + .licenses/npm/dedent.dep.yml | 34 + .licenses/npm/deep-equal.dep.yml | 32 + .licenses/npm/deep-extend.dep.yml | 33 + .licenses/npm/deepmerge.dep.yml | 34 + .licenses/npm/default-shell.dep.yml | 34 + .licenses/npm/defer-to-connect.dep.yml | 34 + .licenses/npm/define-data-property.dep.yml | 33 + .licenses/npm/define-lazy-prop.dep.yml | 22 + .licenses/npm/define-properties.dep.yml | 33 + .licenses/npm/delayed-stream.dep.yml | 32 + .licenses/npm/delegates.dep.yml | 33 + .licenses/npm/depd.dep.yml | 48 ++ .licenses/npm/dequal.dep.yml | 34 + .licenses/npm/destroy.dep.yml | 34 + .licenses/npm/detect-indent.dep.yml | 34 + .licenses/npm/detect-libc-1.0.3.dep.yml | 226 ++++++ .licenses/npm/detect-libc-2.0.3.dep.yml | 213 ++++++ .licenses/npm/detect-node.dep.yml | 32 + .licenses/npm/dezalgo.dep.yml | 26 + .licenses/npm/diff.dep.yml | 42 ++ .licenses/npm/dir-glob.dep.yml | 22 + .licenses/npm/dns-packet.dep.yml | 34 + .licenses/npm/dns-socket.dep.yml | 34 + .licenses/npm/dom-helpers.dep.yml | 32 + .licenses/npm/domexception.dep.yml | 32 + .licenses/npm/dompurify.dep.yml | 584 +++++++++++++++ .licenses/npm/dot-prop.dep.yml | 20 + .licenses/npm/drivelist.dep.yml | 193 +++++ .licenses/npm/dunder-proto.dep.yml | 32 + .licenses/npm/duplexer.dep.yml | 30 + .licenses/npm/duplexer2.dep.yml | 32 + .licenses/npm/eastasianwidth.dep.yml | 30 + .licenses/npm/ee-first.dep.yml | 33 + .licenses/npm/electron-app.dep.yml | 9 + .licenses/npm/electron-store.dep.yml | 21 + .licenses/npm/electron-updater.dep.yml | 34 + .licenses/npm/electron.dep.yml | 37 + .licenses/npm/emoji-regex-8.0.0.dep.yml | 33 + .licenses/npm/emoji-regex-9.2.2.dep.yml | 33 + .licenses/npm/encodeurl-1.0.2.dep.yml | 47 ++ .licenses/npm/encodeurl-2.0.0.dep.yml | 35 + .licenses/npm/encoding.dep.yml | 29 + .licenses/npm/end-of-stream.dep.yml | 34 + .licenses/npm/engine.io-client.dep.yml | 35 + .licenses/npm/engine.io-parser.dep.yml | 35 + .licenses/npm/engine.io.dep.yml | 49 ++ .licenses/npm/enquirer.dep.yml | 43 ++ .licenses/npm/entities-2.1.0.dep.yml | 22 + .licenses/npm/entities-4.5.0.dep.yml | 22 + .licenses/npm/env-paths.dep.yml | 20 + .licenses/npm/error-ex.dep.yml | 36 + .licenses/npm/es-define-property.dep.yml | 32 + .licenses/npm/es-errors.dep.yml | 32 + .licenses/npm/es-get-iterator.dep.yml | 33 + .licenses/npm/es-object-atoms.dep.yml | 32 + .licenses/npm/es-set-tostringtag.dep.yml | 32 + .licenses/npm/es6-error.dep.yml | 32 + .licenses/npm/es6-promise.dep.yml | 30 + .licenses/npm/escalade.dep.yml | 22 + .licenses/npm/escape-html.dep.yml | 37 + .../npm/escape-string-regexp-1.0.5.dep.yml | 34 + .../npm/escape-string-regexp-4.0.0.dep.yml | 20 + .../npm/escape-string-regexp-5.0.0.dep.yml | 20 + .licenses/npm/escodegen.dep.yml | 34 + .licenses/npm/esprima.dep.yml | 32 + .licenses/npm/estraverse.dep.yml | 55 ++ .licenses/npm/esutils.dep.yml | 55 ++ .licenses/npm/etag.dep.yml | 47 ++ .licenses/npm/event-stream.dep.yml | 24 + .licenses/npm/execa-0.5.1.dep.yml | 34 + .licenses/npm/execa-2.1.0.dep.yml | 20 + .licenses/npm/execa-4.1.0.dep.yml | 20 + .licenses/npm/expand-template.dep.yml | 35 + .licenses/npm/express.dep.yml | 54 ++ .licenses/npm/extend.dep.yml | 37 + .licenses/npm/extract-zip.dep.yml | 34 + .licenses/npm/fast-deep-equal.dep.yml | 34 + .../npm/fast-json-stable-stringify.dep.yml | 35 + .licenses/npm/fast-plist.dep.yml | 34 + .licenses/npm/fast-safe-stringify.dep.yml | 36 + .licenses/npm/fast-uri.dep.yml | 43 ++ .licenses/npm/fd-slicer.dep.yml | 33 + .licenses/npm/fetch-blob.dep.yml | 32 + .licenses/npm/file-icons-js.dep.yml | 35 + .licenses/npm/file-type-3.9.0.dep.yml | 34 + .licenses/npm/file-type-5.2.0.dep.yml | 34 + .licenses/npm/file-type-6.2.0.dep.yml | 22 + .licenses/npm/file-uri-to-path.dep.yml | 55 ++ .licenses/npm/filename-reserved-regex.dep.yml | 34 + .licenses/npm/filenamify.dep.yml | 20 + .licenses/npm/fill-range.dep.yml | 41 ++ .licenses/npm/filter-obj.dep.yml | 34 + .licenses/npm/finalhandler.dep.yml | 47 ++ .licenses/npm/find-root.dep.yml | 20 + .licenses/npm/find-up-3.0.0.dep.yml | 22 + .licenses/npm/find-up-4.1.0.dep.yml | 20 + .licenses/npm/fix-path.dep.yml | 20 + .licenses/npm/follow-redirects.dep.yml | 31 + .licenses/npm/font-awesome.dep.yml | 11 + .licenses/npm/for-each.dep.yml | 34 + .licenses/npm/foreground-child.dep.yml | 27 + .licenses/npm/form-data-encoder.dep.yml | 32 + .licenses/npm/form-data.dep.yml | 33 + .licenses/npm/formdata-polyfill.dep.yml | 32 + .licenses/npm/formidable.dep.yml | 86 +++ .licenses/npm/forwarded.dep.yml | 47 ++ .licenses/npm/fqbn.dep.yml | 32 + .licenses/npm/fresh.dep.yml | 48 ++ .licenses/npm/from.dep.yml | 43 ++ .licenses/npm/fs-constants.dep.yml | 34 + .licenses/npm/fs-extra-10.1.0.dep.yml | 37 + .licenses/npm/fs-extra-4.0.3.dep.yml | 37 + .licenses/npm/fs-extra-8.1.0.dep.yml | 37 + .licenses/npm/fs-minipass.dep.yml | 26 + .licenses/npm/fs.realpath.dep.yml | 55 ++ .licenses/npm/fstream.dep.yml | 26 + .licenses/npm/function-bind.dep.yml | 32 + .licenses/npm/functions-have-names.dep.yml | 32 + .licenses/npm/fuzzy.dep.yml | 37 + .licenses/npm/gauge-2.7.4.dep.yml | 24 + .licenses/npm/gauge-3.0.2.dep.yml | 24 + .licenses/npm/get-caller-file.dep.yml | 17 + .licenses/npm/get-intrinsic.dep.yml | 33 + ...et-own-enumerable-property-symbols.dep.yml | 25 + .licenses/npm/get-proto.dep.yml | 32 + .licenses/npm/get-stream-2.3.1.dep.yml | 34 + .licenses/npm/get-stream-5.2.0.dep.yml | 20 + .licenses/npm/get-stream-6.0.1.dep.yml | 20 + .licenses/npm/github-from-package.dep.yml | 31 + .licenses/npm/glob-10.4.4.dep.yml | 26 + .licenses/npm/glob-10.4.5.dep.yml | 26 + .licenses/npm/glob-7.2.3.dep.yml | 32 + .licenses/npm/global-agent.dep.yml | 35 + .licenses/npm/globals.dep.yml | 22 + .licenses/npm/globalthis.dep.yml | 32 + .licenses/npm/globby.dep.yml | 22 + .licenses/npm/google-protobuf.dep.yml | 218 ++++++ .licenses/npm/gopd.dep.yml | 32 + .licenses/npm/got-11.8.6.dep.yml | 20 + .licenses/npm/got-12.6.1.dep.yml | 20 + .licenses/npm/graceful-fs.dep.yml | 26 + .licenses/npm/grpc-tools.dep.yml | 212 ++++++ .licenses/npm/has-bigints.dep.yml | 32 + .licenses/npm/has-flag.dep.yml | 22 + .../npm/has-property-descriptors.dep.yml | 33 + .licenses/npm/has-symbols.dep.yml | 32 + .licenses/npm/has-tostringtag.dep.yml | 33 + .licenses/npm/has-unicode.dep.yml | 26 + .licenses/npm/hash.js.dep.yml | 33 + .licenses/npm/hasown.dep.yml | 32 + .licenses/npm/hast-util-whitespace.dep.yml | 96 +++ .licenses/npm/hexoid.dep.yml | 23 + .licenses/npm/hoist-non-react-statics.dep.yml | 48 ++ .licenses/npm/html-encoding-sniffer.dep.yml | 18 + .licenses/npm/http-cache-semantics.dep.yml | 21 + .licenses/npm/http-errors.dep.yml | 49 ++ .licenses/npm/http-proxy-agent-4.0.1.dep.yml | 33 + .licenses/npm/http-proxy-agent-5.0.0.dep.yml | 33 + .licenses/npm/http-status-codes.dep.yml | 31 + .licenses/npm/http2-wrapper-1.0.3.dep.yml | 34 + .licenses/npm/http2-wrapper-2.2.1.dep.yml | 34 + .licenses/npm/https-proxy-agent-5.0.1.dep.yml | 35 + .licenses/npm/https-proxy-agent-7.0.6.dep.yml | 33 + .licenses/npm/human-signals.dep.yml | 212 ++++++ .licenses/npm/iconv-lite-0.4.24.dep.yml | 33 + .licenses/npm/iconv-lite-0.6.3.dep.yml | 33 + .licenses/npm/idb.dep.yml | 17 + .licenses/npm/idtoken-verifier.dep.yml | 32 + .licenses/npm/ieee754.dep.yml | 25 + .licenses/npm/ignore.dep.yml | 30 + .licenses/npm/import-fresh.dep.yml | 20 + .licenses/npm/imurmurhash.dep.yml | 30 + .licenses/npm/indent-string-4.0.0.dep.yml | 22 + .licenses/npm/indent-string-5.0.0.dep.yml | 20 + .licenses/npm/inflight.dep.yml | 26 + .licenses/npm/inherits.dep.yml | 28 + .licenses/npm/ini.dep.yml | 26 + .licenses/npm/inline-style-parser.dep.yml | 12 + .licenses/npm/internal-slot.dep.yml | 32 + .licenses/npm/inversify.dep.yml | 47 ++ .licenses/npm/ip-address.dep.yml | 30 + .licenses/npm/ip-regex.dep.yml | 22 + .licenses/npm/ipaddr.js.dep.yml | 30 + .licenses/npm/is-arguments.dep.yml | 31 + .licenses/npm/is-array-buffer.dep.yml | 32 + .licenses/npm/is-arrayish.dep.yml | 36 + .licenses/npm/is-bigint.dep.yml | 32 + .licenses/npm/is-boolean-object.dep.yml | 35 + .licenses/npm/is-buffer.dep.yml | 34 + .licenses/npm/is-callable.dep.yml | 35 + .licenses/npm/is-core-module.dep.yml | 31 + .licenses/npm/is-date-object.dep.yml | 35 + .licenses/npm/is-docker.dep.yml | 20 + .licenses/npm/is-electron.dep.yml | 37 + .licenses/npm/is-extglob.dep.yml | 40 ++ .../npm/is-fullwidth-code-point-1.0.0.dep.yml | 34 + .../npm/is-fullwidth-code-point-3.0.0.dep.yml | 22 + .licenses/npm/is-generator-function.dep.yml | 31 + .licenses/npm/is-glob.dep.yml | 43 ++ .licenses/npm/is-ip.dep.yml | 22 + .licenses/npm/is-map.dep.yml | 33 + .licenses/npm/is-natural-number.dep.yml | 36 + .licenses/npm/is-number-object.dep.yml | 35 + .licenses/npm/is-number.dep.yml | 41 ++ .licenses/npm/is-obj-1.0.1.dep.yml | 34 + .licenses/npm/is-obj-2.0.0.dep.yml | 22 + .licenses/npm/is-online.dep.yml | 20 + .licenses/npm/is-path-inside.dep.yml | 20 + .licenses/npm/is-plain-obj-1.1.0.dep.yml | 34 + .licenses/npm/is-plain-obj-4.1.0.dep.yml | 20 + .../is-potential-custom-element-name.dep.yml | 35 + .licenses/npm/is-regex.dep.yml | 31 + .licenses/npm/is-regexp.dep.yml | 11 + .licenses/npm/is-set.dep.yml | 33 + .licenses/npm/is-shared-array-buffer.dep.yml | 32 + .licenses/npm/is-stream-1.1.0.dep.yml | 34 + .licenses/npm/is-stream-2.0.1.dep.yml | 20 + .licenses/npm/is-string.dep.yml | 35 + .licenses/npm/is-symbol.dep.yml | 34 + .licenses/npm/is-typed-array.dep.yml | 35 + .licenses/npm/is-unicode-supported.dep.yml | 20 + .licenses/npm/is-weakmap.dep.yml | 33 + .licenses/npm/is-weakset.dep.yml | 33 + .licenses/npm/is-wsl.dep.yml | 21 + .licenses/npm/isarray-1.0.0.dep.yml | 32 + .licenses/npm/isarray-2.0.5.dep.yml | 32 + .licenses/npm/isexe.dep.yml | 26 + .licenses/npm/jackspeak.dep.yml | 66 ++ .licenses/npm/js-cookie.dep.yml | 32 + .licenses/npm/js-tokens.dep.yml | 34 + .licenses/npm/js-yaml-3.14.1.dep.yml | 32 + .licenses/npm/js-yaml-4.1.0.dep.yml | 32 + .licenses/npm/jsbn.dep.yml | 32 + .licenses/npm/jschardet.dep.yml | 517 ++++++++++++++ .licenses/npm/jsdom.dep.yml | 33 + .licenses/npm/jsesc.dep.yml | 34 + .licenses/npm/json-buffer.dep.yml | 26 + .../npm/json-parse-even-better-errors.dep.yml | 36 + .../npm/json-schema-traverse-0.4.1.dep.yml | 34 + .../npm/json-schema-traverse-1.0.0.dep.yml | 34 + .licenses/npm/json-schema-typed.dep.yml | 41 ++ .licenses/npm/json-stringify-safe.dep.yml | 26 + .licenses/npm/jsonc-parser.dep.yml | 37 + .licenses/npm/jsonfile-4.0.0.dep.yml | 31 + .licenses/npm/jsonfile-6.1.0.dep.yml | 31 + .licenses/npm/just-diff.dep.yml | 33 + .licenses/npm/jwt-decode.dep.yml | 30 + .licenses/npm/keytar.dep.yml | 31 + .licenses/npm/keyv.dep.yml | 11 + .licenses/npm/kleur.dep.yml | 34 + .licenses/npm/lazy-val.dep.yml | 30 + .licenses/npm/line-height.dep.yml | 38 + .licenses/npm/lines-and-columns.dep.yml | 34 + .licenses/npm/linkify-it.dep.yml | 35 + .licenses/npm/lint-staged.dep.yml | 32 + .licenses/npm/listenercount.dep.yml | 18 + .licenses/npm/listr2.dep.yml | 33 + .licenses/npm/locate-path-3.0.0.dep.yml | 22 + .licenses/npm/locate-path-5.0.0.dep.yml | 22 + .licenses/npm/lodash.camelcase.dep.yml | 58 ++ .licenses/npm/lodash.clonedeep.dep.yml | 58 ++ .licenses/npm/lodash.debounce.dep.yml | 58 ++ .licenses/npm/lodash.dep.yml | 58 ++ .licenses/npm/lodash.escaperegexp.dep.yml | 58 ++ .licenses/npm/lodash.isequal.dep.yml | 58 ++ .licenses/npm/lodash.throttle.dep.yml | 58 ++ .licenses/npm/log-symbols.dep.yml | 20 + .licenses/npm/log-update.dep.yml | 21 + .licenses/npm/long.dep.yml | 213 ++++++ .licenses/npm/loose-envify.dep.yml | 33 + .licenses/npm/lowercase-keys-2.0.0.dep.yml | 22 + .licenses/npm/lowercase-keys-3.0.0.dep.yml | 20 + .licenses/npm/lru-cache-10.4.3.dep.yml | 26 + .licenses/npm/lru-cache-4.1.5.dep.yml | 26 + .licenses/npm/macaddress.dep.yml | 32 + .licenses/npm/make-dir-1.3.0.dep.yml | 22 + .licenses/npm/make-dir-3.1.0.dep.yml | 20 + .licenses/npm/map-stream.dep.yml | 24 + .licenses/npm/markdown-it.dep.yml | 33 + .licenses/npm/matcher.dep.yml | 20 + .licenses/npm/math-intrinsics.dep.yml | 32 + .licenses/npm/mdast-util-definitions.dep.yml | 98 +++ .../npm/mdast-util-from-markdown.dep.yml | 144 ++++ .licenses/npm/mdast-util-to-hast.dep.yml | 130 ++++ .licenses/npm/mdast-util-to-string.dep.yml | 102 +++ .licenses/npm/mdurl.dep.yml | 58 ++ .licenses/npm/media-typer.dep.yml | 47 ++ .licenses/npm/memoize-one-5.2.1.dep.yml | 32 + .licenses/npm/memoize-one-6.0.0.dep.yml | 32 + .licenses/npm/merge-descriptors.dep.yml | 46 ++ .licenses/npm/merge-stream.dep.yml | 34 + .licenses/npm/methods.dep.yml | 49 ++ .../npm/micromark-core-commonmark.dep.yml | 68 ++ .../npm/micromark-factory-destination.dep.yml | 66 ++ .licenses/npm/micromark-factory-label.dep.yml | 66 ++ .licenses/npm/micromark-factory-space.dep.yml | 68 ++ .licenses/npm/micromark-factory-title.dep.yml | 66 ++ .../npm/micromark-factory-whitespace.dep.yml | 68 ++ .../npm/micromark-util-character.dep.yml | 90 +++ .licenses/npm/micromark-util-chunked.dep.yml | 68 ++ .../micromark-util-classify-character.dep.yml | 66 ++ .../micromark-util-combine-extensions.dep.yml | 74 ++ ...decode-numeric-character-reference.dep.yml | 66 ++ .../npm/micromark-util-decode-string.dep.yml | 66 ++ .licenses/npm/micromark-util-encode.dep.yml | 66 ++ .../npm/micromark-util-html-tag-name.dep.yml | 68 ++ ...icromark-util-normalize-identifier.dep.yml | 66 ++ .../npm/micromark-util-resolve-all.dep.yml | 68 ++ .../npm/micromark-util-sanitize-uri.dep.yml | 70 ++ .../npm/micromark-util-subtokenize.dep.yml | 66 ++ .licenses/npm/micromark-util-symbol.dep.yml | 66 ++ .licenses/npm/micromark-util-types.dep.yml | 64 ++ .licenses/npm/micromark.dep.yml | 113 +++ .licenses/npm/micromatch.dep.yml | 41 ++ .licenses/npm/mime-1.6.0.dep.yml | 32 + .licenses/npm/mime-2.6.0.dep.yml | 32 + .licenses/npm/mime-db.dep.yml | 34 + .licenses/npm/mime-types.dep.yml | 47 ++ .licenses/npm/mimic-fn-2.1.0.dep.yml | 22 + .licenses/npm/mimic-fn-3.1.0.dep.yml | 20 + .licenses/npm/mimic-response-1.0.1.dep.yml | 22 + .licenses/npm/mimic-response-2.1.0.dep.yml | 20 + .licenses/npm/mimic-response-3.1.0.dep.yml | 20 + .licenses/npm/mimic-response-4.0.0.dep.yml | 20 + .licenses/npm/minimalistic-assert.dep.yml | 24 + .licenses/npm/minimatch-3.1.2.dep.yml | 26 + .licenses/npm/minimatch-5.1.6.dep.yml | 26 + .licenses/npm/minimatch-9.0.5.dep.yml | 26 + .licenses/npm/minimist.dep.yml | 44 ++ .licenses/npm/minipass-3.3.6.dep.yml | 26 + .licenses/npm/minipass-5.0.0.dep.yml | 26 + .licenses/npm/minipass-7.1.2.dep.yml | 26 + .licenses/npm/minizlib.dep.yml | 38 + .licenses/npm/mkdirp-0.5.6.dep.yml | 34 + .licenses/npm/mkdirp-1.0.4.dep.yml | 34 + .licenses/npm/mkdirp-classic.dep.yml | 34 + .licenses/npm/moment.dep.yml | 62 ++ .licenses/npm/mount-point.dep.yml | 34 + .licenses/npm/move-file.dep.yml | 20 + .licenses/npm/mri.dep.yml | 34 + .licenses/npm/ms-2.0.0.dep.yml | 32 + .licenses/npm/ms-2.1.3.dep.yml | 32 + .licenses/npm/msgpackr-extract.dep.yml | 34 + .licenses/npm/msgpackr.dep.yml | 35 + .licenses/npm/multer.dep.yml | 30 + .licenses/npm/nan.dep.yml | 20 + .licenses/npm/nano.dep.yml | 221 ++++++ .licenses/npm/napi-build-utils.dep.yml | 33 + .licenses/npm/native-keymap.dep.yml | 30 + .licenses/npm/negotiator.dep.yml | 49 ++ .licenses/npm/nice-grpc-common.dep.yml | 31 + .licenses/npm/node-abi.dep.yml | 32 + .licenses/npm/node-abort-controller.dep.yml | 32 + .licenses/npm/node-addon-api-3.2.1.dep.yml | 24 + .licenses/npm/node-addon-api-7.1.1.dep.yml | 20 + .licenses/npm/node-domexception.dep.yml | 32 + .licenses/npm/node-fetch-2.7.0.dep.yml | 56 ++ .licenses/npm/node-fetch-3.3.2.dep.yml | 45 ++ .../node-gyp-build-optional-packages.dep.yml | 38 + .licenses/npm/node-log-rotate.dep.yml | 34 + .licenses/npm/node-pty.dep.yml | 85 +++ .licenses/npm/noop-logger.dep.yml | 11 + .licenses/npm/nopt.dep.yml | 26 + .licenses/npm/normalize-path.dep.yml | 42 ++ .licenses/npm/normalize-url-6.1.0.dep.yml | 20 + .licenses/npm/normalize-url-8.0.1.dep.yml | 20 + .licenses/npm/npm-run-path-2.0.2.dep.yml | 34 + .licenses/npm/npm-run-path-3.1.0.dep.yml | 22 + .licenses/npm/npm-run-path-4.0.1.dep.yml | 20 + .licenses/npm/npmlog-4.1.2.dep.yml | 26 + .licenses/npm/npmlog-5.0.1.dep.yml | 26 + .licenses/npm/number-is-nan.dep.yml | 34 + .licenses/npm/nwsapi.dep.yml | 33 + .licenses/npm/object-assign.dep.yml | 34 + .licenses/npm/object-inspect.dep.yml | 51 ++ .licenses/npm/object-is.dep.yml | 31 + .licenses/npm/object-keys.dep.yml | 32 + .licenses/npm/object.assign.dep.yml | 32 + .licenses/npm/on-finished.dep.yml | 47 ++ .licenses/npm/once.dep.yml | 26 + .licenses/npm/onetime.dep.yml | 20 + .licenses/npm/open.dep.yml | 20 + .licenses/npm/os-homedir.dep.yml | 34 + .licenses/npm/p-any.dep.yml | 20 + .licenses/npm/p-cancelable-2.1.1.dep.yml | 20 + .licenses/npm/p-cancelable-3.0.0.dep.yml | 20 + .licenses/npm/p-debounce.dep.yml | 22 + .licenses/npm/p-finally-1.0.0.dep.yml | 35 + .licenses/npm/p-finally-2.0.1.dep.yml | 21 + .licenses/npm/p-limit.dep.yml | 20 + .licenses/npm/p-locate-3.0.0.dep.yml | 22 + .licenses/npm/p-locate-4.1.0.dep.yml | 22 + .licenses/npm/p-map.dep.yml | 20 + .licenses/npm/p-queue.dep.yml | 22 + .licenses/npm/p-some.dep.yml | 20 + .licenses/npm/p-timeout.dep.yml | 20 + .licenses/npm/p-try.dep.yml | 22 + .licenses/npm/package-json-from-dist.dep.yml | 74 ++ .licenses/npm/parent-module.dep.yml | 22 + .licenses/npm/parse-json.dep.yml | 20 + .licenses/npm/parse5.dep.yml | 30 + .licenses/npm/parseurl.dep.yml | 48 ++ .licenses/npm/path-exists-3.0.0.dep.yml | 34 + .licenses/npm/path-exists-4.0.0.dep.yml | 22 + .licenses/npm/path-is-absolute.dep.yml | 34 + .licenses/npm/path-key-2.0.1.dep.yml | 34 + .licenses/npm/path-key-3.1.1.dep.yml | 20 + .licenses/npm/path-parse.dep.yml | 34 + .licenses/npm/path-root-regex.dep.yml | 40 ++ .licenses/npm/path-root.dep.yml | 40 ++ .licenses/npm/path-scurry.dep.yml | 66 ++ .licenses/npm/path-to-regexp.dep.yml | 34 + .licenses/npm/path-type-3.0.0.dep.yml | 22 + .licenses/npm/path-type-4.0.0.dep.yml | 22 + .licenses/npm/pause-stream.dep.yml | 166 +++++ .licenses/npm/pend.dep.yml | 34 + .licenses/npm/perfect-scrollbar.dep.yml | 32 + .licenses/npm/picocolors.dep.yml | 27 + .licenses/npm/picomatch.dep.yml | 38 + .licenses/npm/pify-2.3.0.dep.yml | 34 + .licenses/npm/pify-3.0.0.dep.yml | 22 + .licenses/npm/pinkie-promise.dep.yml | 34 + .licenses/npm/pinkie.dep.yml | 34 + .licenses/npm/pkg-up.dep.yml | 22 + .licenses/npm/please-upgrade-node.dep.yml | 27 + .../npm/possible-typed-array-names.dep.yml | 32 + .licenses/npm/prebuild-install-5.3.6.dep.yml | 35 + .licenses/npm/prebuild-install-6.1.4.dep.yml | 35 + .licenses/npm/process-nextick-args.dep.yml | 30 + .licenses/npm/process.dep.yml | 33 + .licenses/npm/progress.dep.yml | 35 + .licenses/npm/prop-types.dep.yml | 34 + .licenses/npm/property-information.dep.yml | 87 +++ .licenses/npm/protobufjs.dep.yml | 50 ++ .licenses/npm/proxy-addr.dep.yml | 46 ++ .licenses/npm/proxy-from-env.dep.yml | 32 + .licenses/npm/ps-tree.dep.yml | 32 + .licenses/npm/pseudomap.dep.yml | 27 + .licenses/npm/psl.dep.yml | 43 ++ .licenses/npm/public-ip.dep.yml | 20 + .licenses/npm/pump-1.0.3.dep.yml | 34 + .licenses/npm/pump-3.0.2.dep.yml | 34 + .licenses/npm/punycode.dep.yml | 34 + .licenses/npm/qs-6.13.0.dep.yml | 40 ++ .licenses/npm/qs-6.14.0.dep.yml | 40 ++ .licenses/npm/query-string.dep.yml | 20 + .licenses/npm/querystringify.dep.yml | 36 + .licenses/npm/quick-lru.dep.yml | 20 + .licenses/npm/range-parser.dep.yml | 47 ++ .licenses/npm/raw-body.dep.yml | 47 ++ .licenses/npm/rc.dep.yml | 64 ++ .licenses/npm/react-autosize-textarea.dep.yml | 32 + .licenses/npm/react-disable.dep.yml | 32 + .licenses/npm/react-dom.dep.yml | 32 + .licenses/npm/react-is-16.13.1.dep.yml | 32 + .licenses/npm/react-is-18.3.1.dep.yml | 32 + .licenses/npm/react-markdown.dep.yml | 145 ++++ .licenses/npm/react-perfect-scrollbar.dep.yml | 34 + .licenses/npm/react-select.dep.yml | 34 + .licenses/npm/react-tabs.dep.yml | 32 + .licenses/npm/react-tooltip.dep.yml | 36 + .licenses/npm/react-transition-group.dep.yml | 41 ++ .licenses/npm/react-virtuoso.dep.yml | 34 + .licenses/npm/react-window.dep.yml | 35 + .licenses/npm/react.dep.yml | 32 + .licenses/npm/readable-stream-2.3.8.dep.yml | 58 ++ .licenses/npm/readable-stream-3.6.2.dep.yml | 58 ++ .licenses/npm/reflect-metadata.dep.yml | 126 ++++ .licenses/npm/regenerator-runtime.dep.yml | 32 + .licenses/npm/regexp.prototype.flags.dep.yml | 34 + .licenses/npm/remark-parse.dep.yml | 120 ++++ .licenses/npm/remark-rehype.dep.yml | 120 ++++ .../npm/remove-trailing-separator.dep.yml | 14 + .licenses/npm/replace-ext.dep.yml | 54 ++ .licenses/npm/require-directory.dep.yml | 36 + .licenses/npm/require-from-string.dep.yml | 34 + .licenses/npm/require-main-filename.dep.yml | 27 + .licenses/npm/requires-port.dep.yml | 36 + .licenses/npm/resolve-alpn.dep.yml | 36 + .licenses/npm/resolve-from.dep.yml | 22 + .licenses/npm/resolve-package-path.dep.yml | 30 + .licenses/npm/resolve.dep.yml | 51 ++ .licenses/npm/responselike-2.0.1.dep.yml | 32 + .licenses/npm/responselike-3.0.0.dep.yml | 21 + .licenses/npm/restore-cursor.dep.yml | 22 + .licenses/npm/rfdc.dep.yml | 26 + .licenses/npm/rimraf-2.6.3.dep.yml | 26 + .licenses/npm/rimraf-2.7.1.dep.yml | 26 + .licenses/npm/rimraf-3.0.2.dep.yml | 26 + .licenses/npm/rimraf-5.0.10.dep.yml | 26 + .licenses/npm/roarr.dep.yml | 35 + .licenses/npm/route-parser.dep.yml | 33 + .licenses/npm/rrweb-cssom.dep.yml | 31 + .licenses/npm/rxjs.dep.yml | 148 ++++ .licenses/npm/sade.dep.yml | 34 + .licenses/npm/safe-buffer-5.1.2.dep.yml | 34 + .licenses/npm/safe-buffer-5.2.1.dep.yml | 34 + .licenses/npm/safe-regex-test.dep.yml | 32 + .licenses/npm/safe-stable-stringify.dep.yml | 40 ++ .licenses/npm/safer-buffer.dep.yml | 32 + .licenses/npm/sax.dep.yml | 52 ++ .licenses/npm/saxes.dep.yml | 23 + .licenses/npm/scheduler.dep.yml | 32 + .licenses/npm/seek-bzip.dep.yml | 39 + .licenses/npm/semver-5.7.2.dep.yml | 26 + .licenses/npm/semver-6.3.1.dep.yml | 26 + .licenses/npm/semver-7.7.1.dep.yml | 26 + .licenses/npm/semver-compare.dep.yml | 31 + .licenses/npm/send.dep.yml | 49 ++ .licenses/npm/serialize-error.dep.yml | 20 + .licenses/npm/serve-static.dep.yml | 51 ++ .licenses/npm/set-blocking.dep.yml | 27 + .licenses/npm/set-function-length.dep.yml | 32 + .licenses/npm/set-function-name.dep.yml | 32 + .licenses/npm/setimmediate.dep.yml | 31 + .licenses/npm/setprototypeof.dep.yml | 24 + .licenses/npm/shebang-command.dep.yml | 20 + .licenses/npm/shebang-regex.dep.yml | 22 + .licenses/npm/shell-env.dep.yml | 34 + .licenses/npm/shell-path.dep.yml | 34 + .licenses/npm/side-channel-list.dep.yml | 32 + .licenses/npm/side-channel-map.dep.yml | 32 + .licenses/npm/side-channel-weakmap.dep.yml | 32 + .licenses/npm/side-channel.dep.yml | 32 + .licenses/npm/signal-exit-3.0.7.dep.yml | 27 + .licenses/npm/signal-exit-4.1.0.dep.yml | 27 + .licenses/npm/simple-concat.dep.yml | 33 + .licenses/npm/simple-get.dep.yml | 34 + .licenses/npm/slash.dep.yml | 11 + .licenses/npm/slice-ansi-3.0.0.dep.yml | 20 + .licenses/npm/slice-ansi-4.0.0.dep.yml | 21 + .licenses/npm/smart-buffer.dep.yml | 34 + .licenses/npm/socket.io-adapter.dep.yml | 33 + .licenses/npm/socket.io-client.dep.yml | 34 + .licenses/npm/socket.io-parser.dep.yml | 33 + .licenses/npm/socket.io.dep.yml | 35 + .licenses/npm/socks-proxy-agent.dep.yml | 33 + .licenses/npm/socks.dep.yml | 34 + .licenses/npm/sort-keys.dep.yml | 22 + .licenses/npm/source-map-0.5.7.dep.yml | 39 + .licenses/npm/source-map-0.6.1.dep.yml | 39 + .licenses/npm/space-separated-tokens.dep.yml | 72 ++ .licenses/npm/split-on-first.dep.yml | 22 + .licenses/npm/split.dep.yml | 26 + .licenses/npm/sprintf-js-1.0.3.dep.yml | 37 + .licenses/npm/sprintf-js-1.1.3.dep.yml | 37 + .licenses/npm/stat-mode.dep.yml | 35 + .licenses/npm/statuses.dep.yml | 47 ++ .licenses/npm/stop-iteration-iterator.dep.yml | 33 + .licenses/npm/stream-combiner.dep.yml | 26 + .licenses/npm/streamsearch.dep.yml | 30 + .licenses/npm/strict-uri-encode.dep.yml | 34 + .licenses/npm/string-argv-0.1.2.dep.yml | 34 + .licenses/npm/string-argv-0.3.1.dep.yml | 34 + .licenses/npm/string-natural-compare.dep.yml | 35 + .licenses/npm/string-width-1.0.2.dep.yml | 35 + .licenses/npm/string-width-4.2.3.dep.yml | 21 + .licenses/npm/string-width-5.1.2.dep.yml | 21 + .licenses/npm/string-width-cjs.dep.yml | 21 + .licenses/npm/string_decoder-1.1.1.dep.yml | 60 ++ .licenses/npm/string_decoder-1.3.0.dep.yml | 60 ++ .licenses/npm/stringify-object.dep.yml | 35 + .licenses/npm/strip-ansi-3.0.1.dep.yml | 34 + .licenses/npm/strip-ansi-6.0.1.dep.yml | 20 + .licenses/npm/strip-ansi-7.1.0.dep.yml | 20 + .licenses/npm/strip-ansi-cjs.dep.yml | 20 + .licenses/npm/strip-dirs.dep.yml | 37 + .licenses/npm/strip-eof.dep.yml | 34 + .licenses/npm/strip-final-newline.dep.yml | 22 + .licenses/npm/strip-json-comments.dep.yml | 34 + .licenses/npm/strip-outer.dep.yml | 34 + .licenses/npm/style-to-object.dep.yml | 35 + .licenses/npm/stylis.dep.yml | 34 + .licenses/npm/sumchecker.dep.yml | 213 ++++++ .licenses/npm/superagent.dep.yml | 35 + .licenses/npm/supports-color.dep.yml | 20 + .../supports-preserve-symlinks-flag.dep.yml | 33 + .licenses/npm/symbol-tree.dep.yml | 33 + .licenses/npm/tar-fs-1.16.4.dep.yml | 34 + .licenses/npm/tar-fs-2.1.2.dep.yml | 34 + .licenses/npm/tar-stream-1.6.2.dep.yml | 36 + .licenses/npm/tar-stream-2.2.0.dep.yml | 36 + .licenses/npm/tar.dep.yml | 26 + .licenses/npm/temp-dir.dep.yml | 22 + .licenses/npm/temp.dep.yml | 31 + .licenses/npm/through.dep.yml | 43 ++ .licenses/npm/tippy.js.dep.yml | 34 + .licenses/npm/to-buffer.dep.yml | 35 + .licenses/npm/to-regex-range.dep.yml | 41 ++ .licenses/npm/toidentifier.dep.yml | 44 ++ .licenses/npm/tough-cookie.dep.yml | 23 + .licenses/npm/tr46-0.0.3.dep.yml | 30 + .licenses/npm/tr46-4.1.1.dep.yml | 32 + .licenses/npm/trash.dep.yml | 20 + .licenses/npm/traverse.dep.yml | 26 + .licenses/npm/tree-kill.dep.yml | 34 + .licenses/npm/trim-lines.dep.yml | 68 ++ .licenses/npm/trim-repeated.dep.yml | 34 + .licenses/npm/trough.dep.yml | 83 +++ .licenses/npm/ts-error.dep.yml | 38 + .licenses/npm/ts-md5.dep.yml | 34 + .licenses/npm/tslib.dep.yml | 23 + .licenses/npm/tunnel-agent.dep.yml | 67 ++ .licenses/npm/type-fest-0.13.1.dep.yml | 25 + .licenses/npm/type-fest-0.21.3.dep.yml | 25 + .licenses/npm/type-fest-2.19.0.dep.yml | 15 + .licenses/npm/type-is.dep.yml | 47 ++ .licenses/npm/typedarray.dep.yml | 48 ++ .licenses/npm/uc.micro.dep.yml | 31 + .licenses/npm/unbzip2-stream.dep.yml | 35 + .licenses/npm/undici-types-6.19.8.dep.yml | 32 + .licenses/npm/undici-types-6.20.0.dep.yml | 32 + .licenses/npm/unfetch.dep.yml | 34 + .licenses/npm/unified.dep.yml | 69 ++ .licenses/npm/unist-util-generated.dep.yml | 96 +++ .licenses/npm/unist-util-is.dep.yml | 108 +++ .licenses/npm/unist-util-position.dep.yml | 102 +++ .../npm/unist-util-stringify-position.dep.yml | 93 +++ .../npm/unist-util-visit-parents.dep.yml | 120 ++++ .licenses/npm/unist-util-visit.dep.yml | 124 ++++ .licenses/npm/universalify-0.1.2.dep.yml | 33 + .licenses/npm/universalify-0.2.0.dep.yml | 33 + .licenses/npm/universalify-2.0.1.dep.yml | 33 + .licenses/npm/unpipe.dep.yml | 47 ++ .licenses/npm/unzipper.dep.yml | 36 + .licenses/npm/uri-js.dep.yml | 29 + .licenses/npm/url-join.dep.yml | 34 + .licenses/npm/url-parse.dep.yml | 37 + .../npm/use-isomorphic-layout-effect.dep.yml | 34 + .licenses/npm/user-home.dep.yml | 34 + .licenses/npm/util-deprecate.dep.yml | 61 ++ .licenses/npm/util.dep.yml | 34 + .licenses/npm/utils-merge.dep.yml | 38 + .licenses/npm/uuid-7.0.3.dep.yml | 32 + .licenses/npm/uuid-8.3.2.dep.yml | 20 + .licenses/npm/uuid-9.0.1.dep.yml | 20 + .licenses/npm/uvu.dep.yml | 35 + .licenses/npm/valid-filename.dep.yml | 34 + .licenses/npm/vary.dep.yml | 47 ++ .licenses/npm/vfile-message.dep.yml | 98 +++ .licenses/npm/vfile.dep.yml | 131 ++++ .licenses/npm/vhost.dep.yml | 48 ++ .licenses/npm/vinyl.dep.yml | 65 ++ .licenses/npm/vscode-arduino-api.dep.yml | 32 + .licenses/npm/vscode-jsonrpc.dep.yml | 24 + .../vscode-languageserver-protocol.dep.yml | 24 + ...vscode-languageserver-textdocument.dep.yml | 24 + .../npm/vscode-languageserver-types.dep.yml | 24 + .licenses/npm/vscode-oniguruma.dep.yml | 39 + .licenses/npm/vscode-textmate.dep.yml | 34 + .licenses/npm/vscode-uri.dep.yml | 20 + .licenses/npm/w3c-xmlserializer.dep.yml | 36 + .licenses/npm/web-streams-polyfill.dep.yml | 33 + .../npm/webidl-conversions-3.0.1.dep.yml | 23 + .../npm/webidl-conversions-7.0.0.dep.yml | 23 + .licenses/npm/whatwg-encoding.dep.yml | 18 + .licenses/npm/whatwg-mimetype.dep.yml | 19 + .licenses/npm/whatwg-url-12.0.1.dep.yml | 32 + .licenses/npm/whatwg-url-5.0.0.dep.yml | 32 + .licenses/npm/which-1.3.1.dep.yml | 27 + .licenses/npm/which-2.0.2.dep.yml | 27 + .licenses/npm/which-boxed-primitive.dep.yml | 32 + .licenses/npm/which-collection.dep.yml | 33 + .licenses/npm/which-module.dep.yml | 29 + .licenses/npm/which-pm-runs.dep.yml | 34 + .licenses/npm/which-typed-array.dep.yml | 35 + .licenses/npm/wide-align.dep.yml | 27 + .licenses/npm/winchan.dep.yml | 29 + .licenses/npm/wrap-ansi-6.2.0.dep.yml | 20 + .licenses/npm/wrap-ansi-7.0.0.dep.yml | 20 + .licenses/npm/wrap-ansi-8.1.0.dep.yml | 20 + .licenses/npm/wrap-ansi-cjs.dep.yml | 20 + .licenses/npm/wrappy.dep.yml | 26 + .licenses/npm/write-file-atomic.dep.yml | 18 + .licenses/npm/write-json-file.dep.yml | 22 + .licenses/npm/ws-8.17.1.dep.yml | 50 ++ .licenses/npm/ws-8.18.1.dep.yml | 50 ++ .licenses/npm/xdg-basedir.dep.yml | 22 + .licenses/npm/xdg-trashdir.dep.yml | 20 + .licenses/npm/xml-name-validator.dep.yml | 188 +++++ .licenses/npm/xmlchars.dep.yml | 30 + .licenses/npm/xmlhttprequest-ssl.dep.yml | 35 + .licenses/npm/xtend.dep.yml | 31 + .licenses/npm/xterm-4.19.0.dep.yml | 32 + .licenses/npm/xterm-5.3.0.dep.yml | 32 + .licenses/npm/xterm-addon-fit-0.5.0.dep.yml | 30 + .licenses/npm/xterm-addon-fit-0.8.0.dep.yml | 30 + .licenses/npm/xterm-addon-search.dep.yml | 30 + .licenses/npm/y18n-4.0.3.dep.yml | 36 + .licenses/npm/y18n-5.0.8.dep.yml | 32 + .licenses/npm/yallist-2.1.2.dep.yml | 26 + .licenses/npm/yallist-4.0.0.dep.yml | 26 + .licenses/npm/yaml.dep.yml | 24 + .licenses/npm/yargs-15.4.1.dep.yml | 32 + .licenses/npm/yargs-17.7.2.dep.yml | 32 + .licenses/npm/yargs-parser-18.1.3.dep.yml | 27 + .licenses/npm/yargs-parser-21.1.1.dep.yml | 27 + .licenses/npm/yauzl.dep.yml | 32 + 1032 files changed, 40356 insertions(+) create mode 100644 .licenses/npm/@babel/code-frame.dep.yml create mode 100644 .licenses/npm/@babel/generator.dep.yml create mode 100644 .licenses/npm/@babel/helper-module-imports.dep.yml create mode 100644 .licenses/npm/@babel/helper-string-parser.dep.yml create mode 100644 .licenses/npm/@babel/helper-validator-identifier.dep.yml create mode 100644 .licenses/npm/@babel/parser.dep.yml create mode 100644 .licenses/npm/@babel/runtime.dep.yml create mode 100644 .licenses/npm/@babel/template.dep.yml create mode 100644 .licenses/npm/@babel/traverse.dep.yml create mode 100644 .licenses/npm/@babel/types.dep.yml create mode 100644 .licenses/npm/@electron/get.dep.yml create mode 100644 .licenses/npm/@emotion/babel-plugin.dep.yml create mode 100644 .licenses/npm/@emotion/cache.dep.yml create mode 100644 .licenses/npm/@emotion/hash.dep.yml create mode 100644 .licenses/npm/@emotion/memoize.dep.yml create mode 100644 .licenses/npm/@emotion/react.dep.yml create mode 100644 .licenses/npm/@emotion/serialize.dep.yml create mode 100644 .licenses/npm/@emotion/sheet.dep.yml create mode 100644 .licenses/npm/@emotion/unitless.dep.yml create mode 100644 .licenses/npm/@emotion/use-insertion-effect-with-fallbacks.dep.yml create mode 100644 .licenses/npm/@emotion/utils.dep.yml create mode 100644 .licenses/npm/@emotion/weak-memoize.dep.yml create mode 100644 .licenses/npm/@floating-ui/core.dep.yml create mode 100644 .licenses/npm/@floating-ui/dom.dep.yml create mode 100644 .licenses/npm/@floating-ui/utils.dep.yml create mode 100644 .licenses/npm/@grpc/grpc-js.dep.yml create mode 100644 .licenses/npm/@grpc/proto-loader.dep.yml create mode 100644 .licenses/npm/@isaacs/cliui.dep.yml create mode 100644 .licenses/npm/@jridgewell/gen-mapping.dep.yml create mode 100644 .licenses/npm/@jridgewell/resolve-uri.dep.yml create mode 100644 .licenses/npm/@jridgewell/set-array.dep.yml create mode 100644 .licenses/npm/@jridgewell/sourcemap-codec.dep.yml create mode 100644 .licenses/npm/@jridgewell/trace-mapping.dep.yml create mode 100644 .licenses/npm/@js-sdsl/ordered-map.dep.yml create mode 100644 .licenses/npm/@leichtgewicht/ip-codec.dep.yml create mode 100644 .licenses/npm/@mapbox/node-pre-gyp.dep.yml create mode 100644 .licenses/npm/@parcel/watcher.dep.yml create mode 100644 .licenses/npm/@phosphor/algorithm.dep.yml create mode 100644 .licenses/npm/@phosphor/collections.dep.yml create mode 100644 .licenses/npm/@phosphor/commands.dep.yml create mode 100644 .licenses/npm/@phosphor/coreutils.dep.yml create mode 100644 .licenses/npm/@phosphor/disposable.dep.yml create mode 100644 .licenses/npm/@phosphor/domutils.dep.yml create mode 100644 .licenses/npm/@phosphor/dragdrop.dep.yml create mode 100644 .licenses/npm/@phosphor/keyboard.dep.yml create mode 100644 .licenses/npm/@phosphor/messaging.dep.yml create mode 100644 .licenses/npm/@phosphor/properties.dep.yml create mode 100644 .licenses/npm/@phosphor/signaling.dep.yml create mode 100644 .licenses/npm/@phosphor/virtualdom.dep.yml create mode 100644 .licenses/npm/@phosphor/widgets.dep.yml create mode 100644 .licenses/npm/@pingghost/protoc.dep.yml create mode 100644 .licenses/npm/@pkgjs/parseargs.dep.yml create mode 100644 .licenses/npm/@popperjs/core.dep.yml create mode 100644 .licenses/npm/@protobufjs/aspromise.dep.yml create mode 100644 .licenses/npm/@protobufjs/base64.dep.yml create mode 100644 .licenses/npm/@protobufjs/codegen.dep.yml create mode 100644 .licenses/npm/@protobufjs/eventemitter.dep.yml create mode 100644 .licenses/npm/@protobufjs/fetch.dep.yml create mode 100644 .licenses/npm/@protobufjs/float.dep.yml create mode 100644 .licenses/npm/@protobufjs/inquire.dep.yml create mode 100644 .licenses/npm/@protobufjs/path.dep.yml create mode 100644 .licenses/npm/@protobufjs/pool.dep.yml create mode 100644 .licenses/npm/@protobufjs/utf8.dep.yml create mode 100644 .licenses/npm/@sindresorhus/df-1.0.1.dep.yml create mode 100644 .licenses/npm/@sindresorhus/df-3.1.1.dep.yml create mode 100644 .licenses/npm/@sindresorhus/is-4.6.0.dep.yml create mode 100644 .licenses/npm/@sindresorhus/is-5.6.0.dep.yml create mode 100644 .licenses/npm/@socket.io/component-emitter.dep.yml create mode 100644 .licenses/npm/@stroncium/procfs.dep.yml create mode 100644 .licenses/npm/@szmarczak/http-timer-4.0.6.dep.yml create mode 100644 .licenses/npm/@szmarczak/http-timer-5.0.1.dep.yml create mode 100644 .licenses/npm/@theia/application-package.dep.yml create mode 100644 .licenses/npm/@theia/bulk-edit.dep.yml create mode 100644 .licenses/npm/@theia/callhierarchy.dep.yml create mode 100644 .licenses/npm/@theia/console.dep.yml create mode 100644 .licenses/npm/@theia/core.dep.yml create mode 100644 .licenses/npm/@theia/debug.dep.yml create mode 100644 .licenses/npm/@theia/editor-preview.dep.yml create mode 100644 .licenses/npm/@theia/editor.dep.yml create mode 100644 .licenses/npm/@theia/electron.dep.yml create mode 100644 .licenses/npm/@theia/file-search.dep.yml create mode 100644 .licenses/npm/@theia/filesystem.dep.yml create mode 100644 .licenses/npm/@theia/keymaps.dep.yml create mode 100644 .licenses/npm/@theia/markers.dep.yml create mode 100644 .licenses/npm/@theia/messages.dep.yml create mode 100644 .licenses/npm/@theia/monaco-editor-core.dep.yml create mode 100644 .licenses/npm/@theia/monaco.dep.yml create mode 100644 .licenses/npm/@theia/navigator.dep.yml create mode 100644 .licenses/npm/@theia/notebook.dep.yml create mode 100644 .licenses/npm/@theia/outline-view.dep.yml create mode 100644 .licenses/npm/@theia/output.dep.yml create mode 100644 .licenses/npm/@theia/plugin-ext-vscode.dep.yml create mode 100644 .licenses/npm/@theia/plugin-ext.dep.yml create mode 100644 .licenses/npm/@theia/plugin.dep.yml create mode 100644 .licenses/npm/@theia/preferences.dep.yml create mode 100644 .licenses/npm/@theia/process.dep.yml create mode 100644 .licenses/npm/@theia/request.dep.yml create mode 100644 .licenses/npm/@theia/scm.dep.yml create mode 100644 .licenses/npm/@theia/search-in-workspace.dep.yml create mode 100644 .licenses/npm/@theia/task.dep.yml create mode 100644 .licenses/npm/@theia/terminal.dep.yml create mode 100644 .licenses/npm/@theia/test.dep.yml create mode 100644 .licenses/npm/@theia/timeline.dep.yml create mode 100644 .licenses/npm/@theia/typehierarchy.dep.yml create mode 100644 .licenses/npm/@theia/userstorage.dep.yml create mode 100644 .licenses/npm/@theia/variable-resolver.dep.yml create mode 100644 .licenses/npm/@theia/workspace.dep.yml create mode 100644 .licenses/npm/@tippyjs/react.dep.yml create mode 100644 .licenses/npm/@tootallnate/once-1.1.2.dep.yml create mode 100644 .licenses/npm/@tootallnate/once-2.0.0.dep.yml create mode 100644 .licenses/npm/@types/auth0-js.dep.yml create mode 100644 .licenses/npm/@types/body-parser.dep.yml create mode 100644 .licenses/npm/@types/btoa.dep.yml create mode 100644 .licenses/npm/@types/cacheable-request.dep.yml create mode 100644 .licenses/npm/@types/connect.dep.yml create mode 100644 .licenses/npm/@types/cookie.dep.yml create mode 100644 .licenses/npm/@types/cors.dep.yml create mode 100644 .licenses/npm/@types/dateformat.dep.yml create mode 100644 .licenses/npm/@types/debug.dep.yml create mode 100644 .licenses/npm/@types/diff.dep.yml create mode 100644 .licenses/npm/@types/dompurify.dep.yml create mode 100644 .licenses/npm/@types/express-4.17.21.dep.yml create mode 100644 .licenses/npm/@types/express-5.0.0.dep.yml create mode 100644 .licenses/npm/@types/express-serve-static-core-4.19.6.dep.yml create mode 100644 .licenses/npm/@types/express-serve-static-core-5.0.6.dep.yml create mode 100644 .licenses/npm/@types/fs-extra.dep.yml create mode 100644 .licenses/npm/@types/google-protobuf.dep.yml create mode 100644 .licenses/npm/@types/hast.dep.yml create mode 100644 .licenses/npm/@types/http-cache-semantics.dep.yml create mode 100644 .licenses/npm/@types/http-errors.dep.yml create mode 100644 .licenses/npm/@types/js-yaml.dep.yml create mode 100644 .licenses/npm/@types/jsdom.dep.yml create mode 100644 .licenses/npm/@types/keyv.dep.yml create mode 100644 .licenses/npm/@types/linkify-it.dep.yml create mode 100644 .licenses/npm/@types/lodash.debounce-4.0.3.dep.yml create mode 100644 .licenses/npm/@types/lodash.debounce-4.0.9.dep.yml create mode 100644 .licenses/npm/@types/lodash.dep.yml create mode 100644 .licenses/npm/@types/lodash.throttle.dep.yml create mode 100644 .licenses/npm/@types/markdown-it.dep.yml create mode 100644 .licenses/npm/@types/mdast.dep.yml create mode 100644 .licenses/npm/@types/mdurl.dep.yml create mode 100644 .licenses/npm/@types/mime-1.3.5.dep.yml create mode 100644 .licenses/npm/@types/mime-2.0.3.dep.yml create mode 100644 .licenses/npm/@types/ms.dep.yml create mode 100644 .licenses/npm/@types/multer.dep.yml create mode 100644 .licenses/npm/@types/node-20.17.24.dep.yml create mode 100644 .licenses/npm/@types/node-22.13.10.dep.yml create mode 100644 .licenses/npm/@types/node-fetch.dep.yml create mode 100644 .licenses/npm/@types/p-queue.dep.yml create mode 100644 .licenses/npm/@types/parse-json.dep.yml create mode 100644 .licenses/npm/@types/prop-types.dep.yml create mode 100644 .licenses/npm/@types/ps-tree.dep.yml create mode 100644 .licenses/npm/@types/qs.dep.yml create mode 100644 .licenses/npm/@types/range-parser.dep.yml create mode 100644 .licenses/npm/@types/react-dom.dep.yml create mode 100644 .licenses/npm/@types/react-transition-group.dep.yml create mode 100644 .licenses/npm/@types/react.dep.yml create mode 100644 .licenses/npm/@types/responselike.dep.yml create mode 100644 .licenses/npm/@types/route-parser.dep.yml create mode 100644 .licenses/npm/@types/safer-buffer.dep.yml create mode 100644 .licenses/npm/@types/semver.dep.yml create mode 100644 .licenses/npm/@types/send.dep.yml create mode 100644 .licenses/npm/@types/serve-static.dep.yml create mode 100644 .licenses/npm/@types/tar-fs.dep.yml create mode 100644 .licenses/npm/@types/tar-stream.dep.yml create mode 100644 .licenses/npm/@types/temp.dep.yml create mode 100644 .licenses/npm/@types/tough-cookie.dep.yml create mode 100644 .licenses/npm/@types/trusted-types.dep.yml create mode 100644 .licenses/npm/@types/unist.dep.yml create mode 100644 .licenses/npm/@types/uuid.dep.yml create mode 100644 .licenses/npm/@types/vscode.dep.yml create mode 100644 .licenses/npm/@types/write-json-file.dep.yml create mode 100644 .licenses/npm/@types/ws.dep.yml create mode 100644 .licenses/npm/@types/yargs-parser.dep.yml create mode 100644 .licenses/npm/@types/yargs.dep.yml create mode 100644 .licenses/npm/@types/yauzl.dep.yml create mode 100644 .licenses/npm/@virtuoso.dev/react-urx.dep.yml create mode 100644 .licenses/npm/@virtuoso.dev/urx.dep.yml create mode 100644 .licenses/npm/@vscode/codicons.dep.yml create mode 100644 .licenses/npm/@vscode/debugprotocol.dep.yml create mode 100644 .licenses/npm/@vscode/proxy-agent.dep.yml create mode 100644 .licenses/npm/@vscode/ripgrep.dep.yml create mode 100644 .licenses/npm/abab.dep.yml create mode 100644 .licenses/npm/abbrev.dep.yml create mode 100644 .licenses/npm/accepts.dep.yml create mode 100644 .licenses/npm/acorn-globals.dep.yml create mode 100644 .licenses/npm/acorn-walk.dep.yml create mode 100644 .licenses/npm/acorn.dep.yml create mode 100644 .licenses/npm/advanced-mark.js.dep.yml create mode 100644 .licenses/npm/agent-base-6.0.2.dep.yml create mode 100644 .licenses/npm/agent-base-7.1.3.dep.yml create mode 100644 .licenses/npm/aggregate-error-3.1.0.dep.yml create mode 100644 .licenses/npm/aggregate-error-4.0.1.dep.yml create mode 100644 .licenses/npm/ajv-6.12.6.dep.yml create mode 100644 .licenses/npm/ajv-8.17.1.dep.yml create mode 100644 .licenses/npm/ajv-formats.dep.yml create mode 100644 .licenses/npm/anser.dep.yml create mode 100644 .licenses/npm/ansi-colors.dep.yml create mode 100644 .licenses/npm/ansi-escapes.dep.yml create mode 100644 .licenses/npm/ansi-regex-2.1.1.dep.yml create mode 100644 .licenses/npm/ansi-regex-5.0.1.dep.yml create mode 100644 .licenses/npm/ansi-regex-6.1.0.dep.yml create mode 100644 .licenses/npm/ansi-styles-4.3.0.dep.yml create mode 100644 .licenses/npm/ansi-styles-6.2.1.dep.yml create mode 100644 .licenses/npm/append-field.dep.yml create mode 100644 .licenses/npm/aproba-1.2.0.dep.yml create mode 100644 .licenses/npm/aproba-2.0.0.dep.yml create mode 100644 .licenses/npm/arduino-ide-extension.dep.yml create mode 100644 .licenses/npm/arduino-serial-plotter-webapp.dep.yml create mode 100644 .licenses/npm/ardunno-cli.dep.yml create mode 100644 .licenses/npm/are-we-there-yet-1.1.7.dep.yml create mode 100644 .licenses/npm/are-we-there-yet-2.0.0.dep.yml create mode 100644 .licenses/npm/argparse-1.0.10.dep.yml create mode 100644 .licenses/npm/argparse-2.0.1.dep.yml create mode 100644 .licenses/npm/array-buffer-byte-length.dep.yml create mode 100644 .licenses/npm/array-flatten.dep.yml create mode 100644 .licenses/npm/array-union.dep.yml create mode 100644 .licenses/npm/array-uniq.dep.yml create mode 100644 .licenses/npm/asap.dep.yml create mode 100644 .licenses/npm/astral-regex.dep.yml create mode 100644 .licenses/npm/async-mutex-0.3.2.dep.yml create mode 100644 .licenses/npm/async-mutex-0.4.1.dep.yml create mode 100644 .licenses/npm/asynckit.dep.yml create mode 100644 .licenses/npm/atomically.dep.yml create mode 100644 .licenses/npm/auth0-js.dep.yml create mode 100644 .licenses/npm/autosize.dep.yml create mode 100644 .licenses/npm/available-typed-arrays.dep.yml create mode 100644 .licenses/npm/axios.dep.yml create mode 100644 .licenses/npm/babel-plugin-macros.dep.yml create mode 100644 .licenses/npm/bail.dep.yml create mode 100644 .licenses/npm/balanced-match.dep.yml create mode 100644 .licenses/npm/base64-js.dep.yml create mode 100644 .licenses/npm/base64id.dep.yml create mode 100644 .licenses/npm/big-integer.dep.yml create mode 100644 .licenses/npm/binary.dep.yml create mode 100644 .licenses/npm/bindings.dep.yml create mode 100644 .licenses/npm/bl-1.2.3.dep.yml create mode 100644 .licenses/npm/bl-4.1.0.dep.yml create mode 100644 .licenses/npm/bluebird.dep.yml create mode 100644 .licenses/npm/body-parser.dep.yml create mode 100644 .licenses/npm/boolean.dep.yml create mode 100644 .licenses/npm/brace-expansion-1.1.11.dep.yml create mode 100644 .licenses/npm/brace-expansion-2.0.1.dep.yml create mode 100644 .licenses/npm/braces.dep.yml create mode 100644 .licenses/npm/btoa.dep.yml create mode 100644 .licenses/npm/buffer-alloc-unsafe.dep.yml create mode 100644 .licenses/npm/buffer-alloc.dep.yml create mode 100644 .licenses/npm/buffer-crc32.dep.yml create mode 100644 .licenses/npm/buffer-fill.dep.yml create mode 100644 .licenses/npm/buffer-from.dep.yml create mode 100644 .licenses/npm/buffer-indexof-polyfill.dep.yml create mode 100644 .licenses/npm/buffer.dep.yml create mode 100644 .licenses/npm/buffers.dep.yml create mode 100644 .licenses/npm/builder-util-runtime.dep.yml create mode 100644 .licenses/npm/busboy.dep.yml create mode 100644 .licenses/npm/bytes.dep.yml create mode 100644 .licenses/npm/cacheable-lookup-5.0.4.dep.yml create mode 100644 .licenses/npm/cacheable-lookup-7.0.0.dep.yml create mode 100644 .licenses/npm/cacheable-request-10.2.14.dep.yml create mode 100644 .licenses/npm/cacheable-request-7.0.4.dep.yml create mode 100644 .licenses/npm/call-bind-apply-helpers.dep.yml create mode 100644 .licenses/npm/call-bind.dep.yml create mode 100644 .licenses/npm/call-bound.dep.yml create mode 100644 .licenses/npm/callsites.dep.yml create mode 100644 .licenses/npm/camelcase.dep.yml create mode 100644 .licenses/npm/chainsaw.dep.yml create mode 100644 .licenses/npm/chalk.dep.yml create mode 100644 .licenses/npm/character-entities.dep.yml create mode 100644 .licenses/npm/chownr-1.1.4.dep.yml create mode 100644 .licenses/npm/chownr-2.0.0.dep.yml create mode 100644 .licenses/npm/classnames.dep.yml create mode 100644 .licenses/npm/clean-stack-2.2.0.dep.yml create mode 100644 .licenses/npm/clean-stack-4.2.0.dep.yml create mode 100644 .licenses/npm/cli-cursor.dep.yml create mode 100644 .licenses/npm/cli-truncate.dep.yml create mode 100644 .licenses/npm/cliui-6.0.0.dep.yml create mode 100644 .licenses/npm/cliui-8.0.1.dep.yml create mode 100644 .licenses/npm/clone-buffer.dep.yml create mode 100644 .licenses/npm/clone-response.dep.yml create mode 100644 .licenses/npm/clone-stats.dep.yml create mode 100644 .licenses/npm/clone.dep.yml create mode 100644 .licenses/npm/cloneable-readable.dep.yml create mode 100644 .licenses/npm/clsx.dep.yml create mode 100644 .licenses/npm/code-point-at.dep.yml create mode 100644 .licenses/npm/color-convert.dep.yml create mode 100644 .licenses/npm/color-name.dep.yml create mode 100644 .licenses/npm/color-support.dep.yml create mode 100644 .licenses/npm/colorette.dep.yml create mode 100644 .licenses/npm/combined-stream.dep.yml create mode 100644 .licenses/npm/comma-separated-tokens.dep.yml create mode 100644 .licenses/npm/commander-2.20.3.dep.yml create mode 100644 .licenses/npm/commander-6.2.1.dep.yml create mode 100644 .licenses/npm/component-emitter.dep.yml create mode 100644 .licenses/npm/computed-style.dep.yml create mode 100644 .licenses/npm/concat-map.dep.yml create mode 100644 .licenses/npm/concat-stream.dep.yml create mode 100644 .licenses/npm/conf.dep.yml create mode 100644 .licenses/npm/console-control-strings.dep.yml create mode 100644 .licenses/npm/content-disposition.dep.yml create mode 100644 .licenses/npm/content-type.dep.yml create mode 100644 .licenses/npm/convert-source-map.dep.yml create mode 100644 .licenses/npm/cookie-0.4.2.dep.yml create mode 100644 .licenses/npm/cookie-0.7.1.dep.yml create mode 100644 .licenses/npm/cookie-0.7.2.dep.yml create mode 100644 .licenses/npm/cookie-signature.dep.yml create mode 100644 .licenses/npm/cookiejar.dep.yml create mode 100644 .licenses/npm/core-util-is.dep.yml create mode 100644 .licenses/npm/cors.dep.yml create mode 100644 .licenses/npm/cosmiconfig.dep.yml create mode 100644 .licenses/npm/cross-fetch.dep.yml create mode 100644 .licenses/npm/cross-spawn-4.0.2.dep.yml create mode 100644 .licenses/npm/cross-spawn-7.0.6.dep.yml create mode 100644 .licenses/npm/crypto-js.dep.yml create mode 100644 .licenses/npm/cssstyle.dep.yml create mode 100644 .licenses/npm/csstype.dep.yml create mode 100644 .licenses/npm/data-uri-to-buffer.dep.yml create mode 100644 .licenses/npm/data-urls.dep.yml create mode 100644 .licenses/npm/dateformat.dep.yml create mode 100644 .licenses/npm/debounce-fn.dep.yml create mode 100644 .licenses/npm/debug-2.6.9.dep.yml create mode 100644 .licenses/npm/debug-3.2.7.dep.yml create mode 100644 .licenses/npm/debug-4.3.7.dep.yml create mode 100644 .licenses/npm/debug-4.4.0.dep.yml create mode 100644 .licenses/npm/decamelize.dep.yml create mode 100644 .licenses/npm/decimal.js.dep.yml create mode 100644 .licenses/npm/decode-named-character-reference.dep.yml create mode 100644 .licenses/npm/decode-uri-component.dep.yml create mode 100644 .licenses/npm/decompress-response-4.2.1.dep.yml create mode 100644 .licenses/npm/decompress-response-6.0.0.dep.yml create mode 100644 .licenses/npm/decompress-tar.dep.yml create mode 100644 .licenses/npm/decompress-tarbz2.dep.yml create mode 100644 .licenses/npm/decompress-targz.dep.yml create mode 100644 .licenses/npm/decompress-unzip.dep.yml create mode 100644 .licenses/npm/decompress.dep.yml create mode 100644 .licenses/npm/dedent.dep.yml create mode 100644 .licenses/npm/deep-equal.dep.yml create mode 100644 .licenses/npm/deep-extend.dep.yml create mode 100644 .licenses/npm/deepmerge.dep.yml create mode 100644 .licenses/npm/default-shell.dep.yml create mode 100644 .licenses/npm/defer-to-connect.dep.yml create mode 100644 .licenses/npm/define-data-property.dep.yml create mode 100644 .licenses/npm/define-lazy-prop.dep.yml create mode 100644 .licenses/npm/define-properties.dep.yml create mode 100644 .licenses/npm/delayed-stream.dep.yml create mode 100644 .licenses/npm/delegates.dep.yml create mode 100644 .licenses/npm/depd.dep.yml create mode 100644 .licenses/npm/dequal.dep.yml create mode 100644 .licenses/npm/destroy.dep.yml create mode 100644 .licenses/npm/detect-indent.dep.yml create mode 100644 .licenses/npm/detect-libc-1.0.3.dep.yml create mode 100644 .licenses/npm/detect-libc-2.0.3.dep.yml create mode 100644 .licenses/npm/detect-node.dep.yml create mode 100644 .licenses/npm/dezalgo.dep.yml create mode 100644 .licenses/npm/diff.dep.yml create mode 100644 .licenses/npm/dir-glob.dep.yml create mode 100644 .licenses/npm/dns-packet.dep.yml create mode 100644 .licenses/npm/dns-socket.dep.yml create mode 100644 .licenses/npm/dom-helpers.dep.yml create mode 100644 .licenses/npm/domexception.dep.yml create mode 100644 .licenses/npm/dompurify.dep.yml create mode 100644 .licenses/npm/dot-prop.dep.yml create mode 100644 .licenses/npm/drivelist.dep.yml create mode 100644 .licenses/npm/dunder-proto.dep.yml create mode 100644 .licenses/npm/duplexer.dep.yml create mode 100644 .licenses/npm/duplexer2.dep.yml create mode 100644 .licenses/npm/eastasianwidth.dep.yml create mode 100644 .licenses/npm/ee-first.dep.yml create mode 100644 .licenses/npm/electron-app.dep.yml create mode 100644 .licenses/npm/electron-store.dep.yml create mode 100644 .licenses/npm/electron-updater.dep.yml create mode 100644 .licenses/npm/electron.dep.yml create mode 100644 .licenses/npm/emoji-regex-8.0.0.dep.yml create mode 100644 .licenses/npm/emoji-regex-9.2.2.dep.yml create mode 100644 .licenses/npm/encodeurl-1.0.2.dep.yml create mode 100644 .licenses/npm/encodeurl-2.0.0.dep.yml create mode 100644 .licenses/npm/encoding.dep.yml create mode 100644 .licenses/npm/end-of-stream.dep.yml create mode 100644 .licenses/npm/engine.io-client.dep.yml create mode 100644 .licenses/npm/engine.io-parser.dep.yml create mode 100644 .licenses/npm/engine.io.dep.yml create mode 100644 .licenses/npm/enquirer.dep.yml create mode 100644 .licenses/npm/entities-2.1.0.dep.yml create mode 100644 .licenses/npm/entities-4.5.0.dep.yml create mode 100644 .licenses/npm/env-paths.dep.yml create mode 100644 .licenses/npm/error-ex.dep.yml create mode 100644 .licenses/npm/es-define-property.dep.yml create mode 100644 .licenses/npm/es-errors.dep.yml create mode 100644 .licenses/npm/es-get-iterator.dep.yml create mode 100644 .licenses/npm/es-object-atoms.dep.yml create mode 100644 .licenses/npm/es-set-tostringtag.dep.yml create mode 100644 .licenses/npm/es6-error.dep.yml create mode 100644 .licenses/npm/es6-promise.dep.yml create mode 100644 .licenses/npm/escalade.dep.yml create mode 100644 .licenses/npm/escape-html.dep.yml create mode 100644 .licenses/npm/escape-string-regexp-1.0.5.dep.yml create mode 100644 .licenses/npm/escape-string-regexp-4.0.0.dep.yml create mode 100644 .licenses/npm/escape-string-regexp-5.0.0.dep.yml create mode 100644 .licenses/npm/escodegen.dep.yml create mode 100644 .licenses/npm/esprima.dep.yml create mode 100644 .licenses/npm/estraverse.dep.yml create mode 100644 .licenses/npm/esutils.dep.yml create mode 100644 .licenses/npm/etag.dep.yml create mode 100644 .licenses/npm/event-stream.dep.yml create mode 100644 .licenses/npm/execa-0.5.1.dep.yml create mode 100644 .licenses/npm/execa-2.1.0.dep.yml create mode 100644 .licenses/npm/execa-4.1.0.dep.yml create mode 100644 .licenses/npm/expand-template.dep.yml create mode 100644 .licenses/npm/express.dep.yml create mode 100644 .licenses/npm/extend.dep.yml create mode 100644 .licenses/npm/extract-zip.dep.yml create mode 100644 .licenses/npm/fast-deep-equal.dep.yml create mode 100644 .licenses/npm/fast-json-stable-stringify.dep.yml create mode 100644 .licenses/npm/fast-plist.dep.yml create mode 100644 .licenses/npm/fast-safe-stringify.dep.yml create mode 100644 .licenses/npm/fast-uri.dep.yml create mode 100644 .licenses/npm/fd-slicer.dep.yml create mode 100644 .licenses/npm/fetch-blob.dep.yml create mode 100644 .licenses/npm/file-icons-js.dep.yml create mode 100644 .licenses/npm/file-type-3.9.0.dep.yml create mode 100644 .licenses/npm/file-type-5.2.0.dep.yml create mode 100644 .licenses/npm/file-type-6.2.0.dep.yml create mode 100644 .licenses/npm/file-uri-to-path.dep.yml create mode 100644 .licenses/npm/filename-reserved-regex.dep.yml create mode 100644 .licenses/npm/filenamify.dep.yml create mode 100644 .licenses/npm/fill-range.dep.yml create mode 100644 .licenses/npm/filter-obj.dep.yml create mode 100644 .licenses/npm/finalhandler.dep.yml create mode 100644 .licenses/npm/find-root.dep.yml create mode 100644 .licenses/npm/find-up-3.0.0.dep.yml create mode 100644 .licenses/npm/find-up-4.1.0.dep.yml create mode 100644 .licenses/npm/fix-path.dep.yml create mode 100644 .licenses/npm/follow-redirects.dep.yml create mode 100644 .licenses/npm/font-awesome.dep.yml create mode 100644 .licenses/npm/for-each.dep.yml create mode 100644 .licenses/npm/foreground-child.dep.yml create mode 100644 .licenses/npm/form-data-encoder.dep.yml create mode 100644 .licenses/npm/form-data.dep.yml create mode 100644 .licenses/npm/formdata-polyfill.dep.yml create mode 100644 .licenses/npm/formidable.dep.yml create mode 100644 .licenses/npm/forwarded.dep.yml create mode 100644 .licenses/npm/fqbn.dep.yml create mode 100644 .licenses/npm/fresh.dep.yml create mode 100644 .licenses/npm/from.dep.yml create mode 100644 .licenses/npm/fs-constants.dep.yml create mode 100644 .licenses/npm/fs-extra-10.1.0.dep.yml create mode 100644 .licenses/npm/fs-extra-4.0.3.dep.yml create mode 100644 .licenses/npm/fs-extra-8.1.0.dep.yml create mode 100644 .licenses/npm/fs-minipass.dep.yml create mode 100644 .licenses/npm/fs.realpath.dep.yml create mode 100644 .licenses/npm/fstream.dep.yml create mode 100644 .licenses/npm/function-bind.dep.yml create mode 100644 .licenses/npm/functions-have-names.dep.yml create mode 100644 .licenses/npm/fuzzy.dep.yml create mode 100644 .licenses/npm/gauge-2.7.4.dep.yml create mode 100644 .licenses/npm/gauge-3.0.2.dep.yml create mode 100644 .licenses/npm/get-caller-file.dep.yml create mode 100644 .licenses/npm/get-intrinsic.dep.yml create mode 100644 .licenses/npm/get-own-enumerable-property-symbols.dep.yml create mode 100644 .licenses/npm/get-proto.dep.yml create mode 100644 .licenses/npm/get-stream-2.3.1.dep.yml create mode 100644 .licenses/npm/get-stream-5.2.0.dep.yml create mode 100644 .licenses/npm/get-stream-6.0.1.dep.yml create mode 100644 .licenses/npm/github-from-package.dep.yml create mode 100644 .licenses/npm/glob-10.4.4.dep.yml create mode 100644 .licenses/npm/glob-10.4.5.dep.yml create mode 100644 .licenses/npm/glob-7.2.3.dep.yml create mode 100644 .licenses/npm/global-agent.dep.yml create mode 100644 .licenses/npm/globals.dep.yml create mode 100644 .licenses/npm/globalthis.dep.yml create mode 100644 .licenses/npm/globby.dep.yml create mode 100644 .licenses/npm/google-protobuf.dep.yml create mode 100644 .licenses/npm/gopd.dep.yml create mode 100644 .licenses/npm/got-11.8.6.dep.yml create mode 100644 .licenses/npm/got-12.6.1.dep.yml create mode 100644 .licenses/npm/graceful-fs.dep.yml create mode 100644 .licenses/npm/grpc-tools.dep.yml create mode 100644 .licenses/npm/has-bigints.dep.yml create mode 100644 .licenses/npm/has-flag.dep.yml create mode 100644 .licenses/npm/has-property-descriptors.dep.yml create mode 100644 .licenses/npm/has-symbols.dep.yml create mode 100644 .licenses/npm/has-tostringtag.dep.yml create mode 100644 .licenses/npm/has-unicode.dep.yml create mode 100644 .licenses/npm/hash.js.dep.yml create mode 100644 .licenses/npm/hasown.dep.yml create mode 100644 .licenses/npm/hast-util-whitespace.dep.yml create mode 100644 .licenses/npm/hexoid.dep.yml create mode 100644 .licenses/npm/hoist-non-react-statics.dep.yml create mode 100644 .licenses/npm/html-encoding-sniffer.dep.yml create mode 100644 .licenses/npm/http-cache-semantics.dep.yml create mode 100644 .licenses/npm/http-errors.dep.yml create mode 100644 .licenses/npm/http-proxy-agent-4.0.1.dep.yml create mode 100644 .licenses/npm/http-proxy-agent-5.0.0.dep.yml create mode 100644 .licenses/npm/http-status-codes.dep.yml create mode 100644 .licenses/npm/http2-wrapper-1.0.3.dep.yml create mode 100644 .licenses/npm/http2-wrapper-2.2.1.dep.yml create mode 100644 .licenses/npm/https-proxy-agent-5.0.1.dep.yml create mode 100644 .licenses/npm/https-proxy-agent-7.0.6.dep.yml create mode 100644 .licenses/npm/human-signals.dep.yml create mode 100644 .licenses/npm/iconv-lite-0.4.24.dep.yml create mode 100644 .licenses/npm/iconv-lite-0.6.3.dep.yml create mode 100644 .licenses/npm/idb.dep.yml create mode 100644 .licenses/npm/idtoken-verifier.dep.yml create mode 100644 .licenses/npm/ieee754.dep.yml create mode 100644 .licenses/npm/ignore.dep.yml create mode 100644 .licenses/npm/import-fresh.dep.yml create mode 100644 .licenses/npm/imurmurhash.dep.yml create mode 100644 .licenses/npm/indent-string-4.0.0.dep.yml create mode 100644 .licenses/npm/indent-string-5.0.0.dep.yml create mode 100644 .licenses/npm/inflight.dep.yml create mode 100644 .licenses/npm/inherits.dep.yml create mode 100644 .licenses/npm/ini.dep.yml create mode 100644 .licenses/npm/inline-style-parser.dep.yml create mode 100644 .licenses/npm/internal-slot.dep.yml create mode 100644 .licenses/npm/inversify.dep.yml create mode 100644 .licenses/npm/ip-address.dep.yml create mode 100644 .licenses/npm/ip-regex.dep.yml create mode 100644 .licenses/npm/ipaddr.js.dep.yml create mode 100644 .licenses/npm/is-arguments.dep.yml create mode 100644 .licenses/npm/is-array-buffer.dep.yml create mode 100644 .licenses/npm/is-arrayish.dep.yml create mode 100644 .licenses/npm/is-bigint.dep.yml create mode 100644 .licenses/npm/is-boolean-object.dep.yml create mode 100644 .licenses/npm/is-buffer.dep.yml create mode 100644 .licenses/npm/is-callable.dep.yml create mode 100644 .licenses/npm/is-core-module.dep.yml create mode 100644 .licenses/npm/is-date-object.dep.yml create mode 100644 .licenses/npm/is-docker.dep.yml create mode 100644 .licenses/npm/is-electron.dep.yml create mode 100644 .licenses/npm/is-extglob.dep.yml create mode 100644 .licenses/npm/is-fullwidth-code-point-1.0.0.dep.yml create mode 100644 .licenses/npm/is-fullwidth-code-point-3.0.0.dep.yml create mode 100644 .licenses/npm/is-generator-function.dep.yml create mode 100644 .licenses/npm/is-glob.dep.yml create mode 100644 .licenses/npm/is-ip.dep.yml create mode 100644 .licenses/npm/is-map.dep.yml create mode 100644 .licenses/npm/is-natural-number.dep.yml create mode 100644 .licenses/npm/is-number-object.dep.yml create mode 100644 .licenses/npm/is-number.dep.yml create mode 100644 .licenses/npm/is-obj-1.0.1.dep.yml create mode 100644 .licenses/npm/is-obj-2.0.0.dep.yml create mode 100644 .licenses/npm/is-online.dep.yml create mode 100644 .licenses/npm/is-path-inside.dep.yml create mode 100644 .licenses/npm/is-plain-obj-1.1.0.dep.yml create mode 100644 .licenses/npm/is-plain-obj-4.1.0.dep.yml create mode 100644 .licenses/npm/is-potential-custom-element-name.dep.yml create mode 100644 .licenses/npm/is-regex.dep.yml create mode 100644 .licenses/npm/is-regexp.dep.yml create mode 100644 .licenses/npm/is-set.dep.yml create mode 100644 .licenses/npm/is-shared-array-buffer.dep.yml create mode 100644 .licenses/npm/is-stream-1.1.0.dep.yml create mode 100644 .licenses/npm/is-stream-2.0.1.dep.yml create mode 100644 .licenses/npm/is-string.dep.yml create mode 100644 .licenses/npm/is-symbol.dep.yml create mode 100644 .licenses/npm/is-typed-array.dep.yml create mode 100644 .licenses/npm/is-unicode-supported.dep.yml create mode 100644 .licenses/npm/is-weakmap.dep.yml create mode 100644 .licenses/npm/is-weakset.dep.yml create mode 100644 .licenses/npm/is-wsl.dep.yml create mode 100644 .licenses/npm/isarray-1.0.0.dep.yml create mode 100644 .licenses/npm/isarray-2.0.5.dep.yml create mode 100644 .licenses/npm/isexe.dep.yml create mode 100644 .licenses/npm/jackspeak.dep.yml create mode 100644 .licenses/npm/js-cookie.dep.yml create mode 100644 .licenses/npm/js-tokens.dep.yml create mode 100644 .licenses/npm/js-yaml-3.14.1.dep.yml create mode 100644 .licenses/npm/js-yaml-4.1.0.dep.yml create mode 100644 .licenses/npm/jsbn.dep.yml create mode 100644 .licenses/npm/jschardet.dep.yml create mode 100644 .licenses/npm/jsdom.dep.yml create mode 100644 .licenses/npm/jsesc.dep.yml create mode 100644 .licenses/npm/json-buffer.dep.yml create mode 100644 .licenses/npm/json-parse-even-better-errors.dep.yml create mode 100644 .licenses/npm/json-schema-traverse-0.4.1.dep.yml create mode 100644 .licenses/npm/json-schema-traverse-1.0.0.dep.yml create mode 100644 .licenses/npm/json-schema-typed.dep.yml create mode 100644 .licenses/npm/json-stringify-safe.dep.yml create mode 100644 .licenses/npm/jsonc-parser.dep.yml create mode 100644 .licenses/npm/jsonfile-4.0.0.dep.yml create mode 100644 .licenses/npm/jsonfile-6.1.0.dep.yml create mode 100644 .licenses/npm/just-diff.dep.yml create mode 100644 .licenses/npm/jwt-decode.dep.yml create mode 100644 .licenses/npm/keytar.dep.yml create mode 100644 .licenses/npm/keyv.dep.yml create mode 100644 .licenses/npm/kleur.dep.yml create mode 100644 .licenses/npm/lazy-val.dep.yml create mode 100644 .licenses/npm/line-height.dep.yml create mode 100644 .licenses/npm/lines-and-columns.dep.yml create mode 100644 .licenses/npm/linkify-it.dep.yml create mode 100644 .licenses/npm/lint-staged.dep.yml create mode 100644 .licenses/npm/listenercount.dep.yml create mode 100644 .licenses/npm/listr2.dep.yml create mode 100644 .licenses/npm/locate-path-3.0.0.dep.yml create mode 100644 .licenses/npm/locate-path-5.0.0.dep.yml create mode 100644 .licenses/npm/lodash.camelcase.dep.yml create mode 100644 .licenses/npm/lodash.clonedeep.dep.yml create mode 100644 .licenses/npm/lodash.debounce.dep.yml create mode 100644 .licenses/npm/lodash.dep.yml create mode 100644 .licenses/npm/lodash.escaperegexp.dep.yml create mode 100644 .licenses/npm/lodash.isequal.dep.yml create mode 100644 .licenses/npm/lodash.throttle.dep.yml create mode 100644 .licenses/npm/log-symbols.dep.yml create mode 100644 .licenses/npm/log-update.dep.yml create mode 100644 .licenses/npm/long.dep.yml create mode 100644 .licenses/npm/loose-envify.dep.yml create mode 100644 .licenses/npm/lowercase-keys-2.0.0.dep.yml create mode 100644 .licenses/npm/lowercase-keys-3.0.0.dep.yml create mode 100644 .licenses/npm/lru-cache-10.4.3.dep.yml create mode 100644 .licenses/npm/lru-cache-4.1.5.dep.yml create mode 100644 .licenses/npm/macaddress.dep.yml create mode 100644 .licenses/npm/make-dir-1.3.0.dep.yml create mode 100644 .licenses/npm/make-dir-3.1.0.dep.yml create mode 100644 .licenses/npm/map-stream.dep.yml create mode 100644 .licenses/npm/markdown-it.dep.yml create mode 100644 .licenses/npm/matcher.dep.yml create mode 100644 .licenses/npm/math-intrinsics.dep.yml create mode 100644 .licenses/npm/mdast-util-definitions.dep.yml create mode 100644 .licenses/npm/mdast-util-from-markdown.dep.yml create mode 100644 .licenses/npm/mdast-util-to-hast.dep.yml create mode 100644 .licenses/npm/mdast-util-to-string.dep.yml create mode 100644 .licenses/npm/mdurl.dep.yml create mode 100644 .licenses/npm/media-typer.dep.yml create mode 100644 .licenses/npm/memoize-one-5.2.1.dep.yml create mode 100644 .licenses/npm/memoize-one-6.0.0.dep.yml create mode 100644 .licenses/npm/merge-descriptors.dep.yml create mode 100644 .licenses/npm/merge-stream.dep.yml create mode 100644 .licenses/npm/methods.dep.yml create mode 100644 .licenses/npm/micromark-core-commonmark.dep.yml create mode 100644 .licenses/npm/micromark-factory-destination.dep.yml create mode 100644 .licenses/npm/micromark-factory-label.dep.yml create mode 100644 .licenses/npm/micromark-factory-space.dep.yml create mode 100644 .licenses/npm/micromark-factory-title.dep.yml create mode 100644 .licenses/npm/micromark-factory-whitespace.dep.yml create mode 100644 .licenses/npm/micromark-util-character.dep.yml create mode 100644 .licenses/npm/micromark-util-chunked.dep.yml create mode 100644 .licenses/npm/micromark-util-classify-character.dep.yml create mode 100644 .licenses/npm/micromark-util-combine-extensions.dep.yml create mode 100644 .licenses/npm/micromark-util-decode-numeric-character-reference.dep.yml create mode 100644 .licenses/npm/micromark-util-decode-string.dep.yml create mode 100644 .licenses/npm/micromark-util-encode.dep.yml create mode 100644 .licenses/npm/micromark-util-html-tag-name.dep.yml create mode 100644 .licenses/npm/micromark-util-normalize-identifier.dep.yml create mode 100644 .licenses/npm/micromark-util-resolve-all.dep.yml create mode 100644 .licenses/npm/micromark-util-sanitize-uri.dep.yml create mode 100644 .licenses/npm/micromark-util-subtokenize.dep.yml create mode 100644 .licenses/npm/micromark-util-symbol.dep.yml create mode 100644 .licenses/npm/micromark-util-types.dep.yml create mode 100644 .licenses/npm/micromark.dep.yml create mode 100644 .licenses/npm/micromatch.dep.yml create mode 100644 .licenses/npm/mime-1.6.0.dep.yml create mode 100644 .licenses/npm/mime-2.6.0.dep.yml create mode 100644 .licenses/npm/mime-db.dep.yml create mode 100644 .licenses/npm/mime-types.dep.yml create mode 100644 .licenses/npm/mimic-fn-2.1.0.dep.yml create mode 100644 .licenses/npm/mimic-fn-3.1.0.dep.yml create mode 100644 .licenses/npm/mimic-response-1.0.1.dep.yml create mode 100644 .licenses/npm/mimic-response-2.1.0.dep.yml create mode 100644 .licenses/npm/mimic-response-3.1.0.dep.yml create mode 100644 .licenses/npm/mimic-response-4.0.0.dep.yml create mode 100644 .licenses/npm/minimalistic-assert.dep.yml create mode 100644 .licenses/npm/minimatch-3.1.2.dep.yml create mode 100644 .licenses/npm/minimatch-5.1.6.dep.yml create mode 100644 .licenses/npm/minimatch-9.0.5.dep.yml create mode 100644 .licenses/npm/minimist.dep.yml create mode 100644 .licenses/npm/minipass-3.3.6.dep.yml create mode 100644 .licenses/npm/minipass-5.0.0.dep.yml create mode 100644 .licenses/npm/minipass-7.1.2.dep.yml create mode 100644 .licenses/npm/minizlib.dep.yml create mode 100644 .licenses/npm/mkdirp-0.5.6.dep.yml create mode 100644 .licenses/npm/mkdirp-1.0.4.dep.yml create mode 100644 .licenses/npm/mkdirp-classic.dep.yml create mode 100644 .licenses/npm/moment.dep.yml create mode 100644 .licenses/npm/mount-point.dep.yml create mode 100644 .licenses/npm/move-file.dep.yml create mode 100644 .licenses/npm/mri.dep.yml create mode 100644 .licenses/npm/ms-2.0.0.dep.yml create mode 100644 .licenses/npm/ms-2.1.3.dep.yml create mode 100644 .licenses/npm/msgpackr-extract.dep.yml create mode 100644 .licenses/npm/msgpackr.dep.yml create mode 100644 .licenses/npm/multer.dep.yml create mode 100644 .licenses/npm/nan.dep.yml create mode 100644 .licenses/npm/nano.dep.yml create mode 100644 .licenses/npm/napi-build-utils.dep.yml create mode 100644 .licenses/npm/native-keymap.dep.yml create mode 100644 .licenses/npm/negotiator.dep.yml create mode 100644 .licenses/npm/nice-grpc-common.dep.yml create mode 100644 .licenses/npm/node-abi.dep.yml create mode 100644 .licenses/npm/node-abort-controller.dep.yml create mode 100644 .licenses/npm/node-addon-api-3.2.1.dep.yml create mode 100644 .licenses/npm/node-addon-api-7.1.1.dep.yml create mode 100644 .licenses/npm/node-domexception.dep.yml create mode 100644 .licenses/npm/node-fetch-2.7.0.dep.yml create mode 100644 .licenses/npm/node-fetch-3.3.2.dep.yml create mode 100644 .licenses/npm/node-gyp-build-optional-packages.dep.yml create mode 100644 .licenses/npm/node-log-rotate.dep.yml create mode 100644 .licenses/npm/node-pty.dep.yml create mode 100644 .licenses/npm/noop-logger.dep.yml create mode 100644 .licenses/npm/nopt.dep.yml create mode 100644 .licenses/npm/normalize-path.dep.yml create mode 100644 .licenses/npm/normalize-url-6.1.0.dep.yml create mode 100644 .licenses/npm/normalize-url-8.0.1.dep.yml create mode 100644 .licenses/npm/npm-run-path-2.0.2.dep.yml create mode 100644 .licenses/npm/npm-run-path-3.1.0.dep.yml create mode 100644 .licenses/npm/npm-run-path-4.0.1.dep.yml create mode 100644 .licenses/npm/npmlog-4.1.2.dep.yml create mode 100644 .licenses/npm/npmlog-5.0.1.dep.yml create mode 100644 .licenses/npm/number-is-nan.dep.yml create mode 100644 .licenses/npm/nwsapi.dep.yml create mode 100644 .licenses/npm/object-assign.dep.yml create mode 100644 .licenses/npm/object-inspect.dep.yml create mode 100644 .licenses/npm/object-is.dep.yml create mode 100644 .licenses/npm/object-keys.dep.yml create mode 100644 .licenses/npm/object.assign.dep.yml create mode 100644 .licenses/npm/on-finished.dep.yml create mode 100644 .licenses/npm/once.dep.yml create mode 100644 .licenses/npm/onetime.dep.yml create mode 100644 .licenses/npm/open.dep.yml create mode 100644 .licenses/npm/os-homedir.dep.yml create mode 100644 .licenses/npm/p-any.dep.yml create mode 100644 .licenses/npm/p-cancelable-2.1.1.dep.yml create mode 100644 .licenses/npm/p-cancelable-3.0.0.dep.yml create mode 100644 .licenses/npm/p-debounce.dep.yml create mode 100644 .licenses/npm/p-finally-1.0.0.dep.yml create mode 100644 .licenses/npm/p-finally-2.0.1.dep.yml create mode 100644 .licenses/npm/p-limit.dep.yml create mode 100644 .licenses/npm/p-locate-3.0.0.dep.yml create mode 100644 .licenses/npm/p-locate-4.1.0.dep.yml create mode 100644 .licenses/npm/p-map.dep.yml create mode 100644 .licenses/npm/p-queue.dep.yml create mode 100644 .licenses/npm/p-some.dep.yml create mode 100644 .licenses/npm/p-timeout.dep.yml create mode 100644 .licenses/npm/p-try.dep.yml create mode 100644 .licenses/npm/package-json-from-dist.dep.yml create mode 100644 .licenses/npm/parent-module.dep.yml create mode 100644 .licenses/npm/parse-json.dep.yml create mode 100644 .licenses/npm/parse5.dep.yml create mode 100644 .licenses/npm/parseurl.dep.yml create mode 100644 .licenses/npm/path-exists-3.0.0.dep.yml create mode 100644 .licenses/npm/path-exists-4.0.0.dep.yml create mode 100644 .licenses/npm/path-is-absolute.dep.yml create mode 100644 .licenses/npm/path-key-2.0.1.dep.yml create mode 100644 .licenses/npm/path-key-3.1.1.dep.yml create mode 100644 .licenses/npm/path-parse.dep.yml create mode 100644 .licenses/npm/path-root-regex.dep.yml create mode 100644 .licenses/npm/path-root.dep.yml create mode 100644 .licenses/npm/path-scurry.dep.yml create mode 100644 .licenses/npm/path-to-regexp.dep.yml create mode 100644 .licenses/npm/path-type-3.0.0.dep.yml create mode 100644 .licenses/npm/path-type-4.0.0.dep.yml create mode 100644 .licenses/npm/pause-stream.dep.yml create mode 100644 .licenses/npm/pend.dep.yml create mode 100644 .licenses/npm/perfect-scrollbar.dep.yml create mode 100644 .licenses/npm/picocolors.dep.yml create mode 100644 .licenses/npm/picomatch.dep.yml create mode 100644 .licenses/npm/pify-2.3.0.dep.yml create mode 100644 .licenses/npm/pify-3.0.0.dep.yml create mode 100644 .licenses/npm/pinkie-promise.dep.yml create mode 100644 .licenses/npm/pinkie.dep.yml create mode 100644 .licenses/npm/pkg-up.dep.yml create mode 100644 .licenses/npm/please-upgrade-node.dep.yml create mode 100644 .licenses/npm/possible-typed-array-names.dep.yml create mode 100644 .licenses/npm/prebuild-install-5.3.6.dep.yml create mode 100644 .licenses/npm/prebuild-install-6.1.4.dep.yml create mode 100644 .licenses/npm/process-nextick-args.dep.yml create mode 100644 .licenses/npm/process.dep.yml create mode 100644 .licenses/npm/progress.dep.yml create mode 100644 .licenses/npm/prop-types.dep.yml create mode 100644 .licenses/npm/property-information.dep.yml create mode 100644 .licenses/npm/protobufjs.dep.yml create mode 100644 .licenses/npm/proxy-addr.dep.yml create mode 100644 .licenses/npm/proxy-from-env.dep.yml create mode 100644 .licenses/npm/ps-tree.dep.yml create mode 100644 .licenses/npm/pseudomap.dep.yml create mode 100644 .licenses/npm/psl.dep.yml create mode 100644 .licenses/npm/public-ip.dep.yml create mode 100644 .licenses/npm/pump-1.0.3.dep.yml create mode 100644 .licenses/npm/pump-3.0.2.dep.yml create mode 100644 .licenses/npm/punycode.dep.yml create mode 100644 .licenses/npm/qs-6.13.0.dep.yml create mode 100644 .licenses/npm/qs-6.14.0.dep.yml create mode 100644 .licenses/npm/query-string.dep.yml create mode 100644 .licenses/npm/querystringify.dep.yml create mode 100644 .licenses/npm/quick-lru.dep.yml create mode 100644 .licenses/npm/range-parser.dep.yml create mode 100644 .licenses/npm/raw-body.dep.yml create mode 100644 .licenses/npm/rc.dep.yml create mode 100644 .licenses/npm/react-autosize-textarea.dep.yml create mode 100644 .licenses/npm/react-disable.dep.yml create mode 100644 .licenses/npm/react-dom.dep.yml create mode 100644 .licenses/npm/react-is-16.13.1.dep.yml create mode 100644 .licenses/npm/react-is-18.3.1.dep.yml create mode 100644 .licenses/npm/react-markdown.dep.yml create mode 100644 .licenses/npm/react-perfect-scrollbar.dep.yml create mode 100644 .licenses/npm/react-select.dep.yml create mode 100644 .licenses/npm/react-tabs.dep.yml create mode 100644 .licenses/npm/react-tooltip.dep.yml create mode 100644 .licenses/npm/react-transition-group.dep.yml create mode 100644 .licenses/npm/react-virtuoso.dep.yml create mode 100644 .licenses/npm/react-window.dep.yml create mode 100644 .licenses/npm/react.dep.yml create mode 100644 .licenses/npm/readable-stream-2.3.8.dep.yml create mode 100644 .licenses/npm/readable-stream-3.6.2.dep.yml create mode 100644 .licenses/npm/reflect-metadata.dep.yml create mode 100644 .licenses/npm/regenerator-runtime.dep.yml create mode 100644 .licenses/npm/regexp.prototype.flags.dep.yml create mode 100644 .licenses/npm/remark-parse.dep.yml create mode 100644 .licenses/npm/remark-rehype.dep.yml create mode 100644 .licenses/npm/remove-trailing-separator.dep.yml create mode 100644 .licenses/npm/replace-ext.dep.yml create mode 100644 .licenses/npm/require-directory.dep.yml create mode 100644 .licenses/npm/require-from-string.dep.yml create mode 100644 .licenses/npm/require-main-filename.dep.yml create mode 100644 .licenses/npm/requires-port.dep.yml create mode 100644 .licenses/npm/resolve-alpn.dep.yml create mode 100644 .licenses/npm/resolve-from.dep.yml create mode 100644 .licenses/npm/resolve-package-path.dep.yml create mode 100644 .licenses/npm/resolve.dep.yml create mode 100644 .licenses/npm/responselike-2.0.1.dep.yml create mode 100644 .licenses/npm/responselike-3.0.0.dep.yml create mode 100644 .licenses/npm/restore-cursor.dep.yml create mode 100644 .licenses/npm/rfdc.dep.yml create mode 100644 .licenses/npm/rimraf-2.6.3.dep.yml create mode 100644 .licenses/npm/rimraf-2.7.1.dep.yml create mode 100644 .licenses/npm/rimraf-3.0.2.dep.yml create mode 100644 .licenses/npm/rimraf-5.0.10.dep.yml create mode 100644 .licenses/npm/roarr.dep.yml create mode 100644 .licenses/npm/route-parser.dep.yml create mode 100644 .licenses/npm/rrweb-cssom.dep.yml create mode 100644 .licenses/npm/rxjs.dep.yml create mode 100644 .licenses/npm/sade.dep.yml create mode 100644 .licenses/npm/safe-buffer-5.1.2.dep.yml create mode 100644 .licenses/npm/safe-buffer-5.2.1.dep.yml create mode 100644 .licenses/npm/safe-regex-test.dep.yml create mode 100644 .licenses/npm/safe-stable-stringify.dep.yml create mode 100644 .licenses/npm/safer-buffer.dep.yml create mode 100644 .licenses/npm/sax.dep.yml create mode 100644 .licenses/npm/saxes.dep.yml create mode 100644 .licenses/npm/scheduler.dep.yml create mode 100644 .licenses/npm/seek-bzip.dep.yml create mode 100644 .licenses/npm/semver-5.7.2.dep.yml create mode 100644 .licenses/npm/semver-6.3.1.dep.yml create mode 100644 .licenses/npm/semver-7.7.1.dep.yml create mode 100644 .licenses/npm/semver-compare.dep.yml create mode 100644 .licenses/npm/send.dep.yml create mode 100644 .licenses/npm/serialize-error.dep.yml create mode 100644 .licenses/npm/serve-static.dep.yml create mode 100644 .licenses/npm/set-blocking.dep.yml create mode 100644 .licenses/npm/set-function-length.dep.yml create mode 100644 .licenses/npm/set-function-name.dep.yml create mode 100644 .licenses/npm/setimmediate.dep.yml create mode 100644 .licenses/npm/setprototypeof.dep.yml create mode 100644 .licenses/npm/shebang-command.dep.yml create mode 100644 .licenses/npm/shebang-regex.dep.yml create mode 100644 .licenses/npm/shell-env.dep.yml create mode 100644 .licenses/npm/shell-path.dep.yml create mode 100644 .licenses/npm/side-channel-list.dep.yml create mode 100644 .licenses/npm/side-channel-map.dep.yml create mode 100644 .licenses/npm/side-channel-weakmap.dep.yml create mode 100644 .licenses/npm/side-channel.dep.yml create mode 100644 .licenses/npm/signal-exit-3.0.7.dep.yml create mode 100644 .licenses/npm/signal-exit-4.1.0.dep.yml create mode 100644 .licenses/npm/simple-concat.dep.yml create mode 100644 .licenses/npm/simple-get.dep.yml create mode 100644 .licenses/npm/slash.dep.yml create mode 100644 .licenses/npm/slice-ansi-3.0.0.dep.yml create mode 100644 .licenses/npm/slice-ansi-4.0.0.dep.yml create mode 100644 .licenses/npm/smart-buffer.dep.yml create mode 100644 .licenses/npm/socket.io-adapter.dep.yml create mode 100644 .licenses/npm/socket.io-client.dep.yml create mode 100644 .licenses/npm/socket.io-parser.dep.yml create mode 100644 .licenses/npm/socket.io.dep.yml create mode 100644 .licenses/npm/socks-proxy-agent.dep.yml create mode 100644 .licenses/npm/socks.dep.yml create mode 100644 .licenses/npm/sort-keys.dep.yml create mode 100644 .licenses/npm/source-map-0.5.7.dep.yml create mode 100644 .licenses/npm/source-map-0.6.1.dep.yml create mode 100644 .licenses/npm/space-separated-tokens.dep.yml create mode 100644 .licenses/npm/split-on-first.dep.yml create mode 100644 .licenses/npm/split.dep.yml create mode 100644 .licenses/npm/sprintf-js-1.0.3.dep.yml create mode 100644 .licenses/npm/sprintf-js-1.1.3.dep.yml create mode 100644 .licenses/npm/stat-mode.dep.yml create mode 100644 .licenses/npm/statuses.dep.yml create mode 100644 .licenses/npm/stop-iteration-iterator.dep.yml create mode 100644 .licenses/npm/stream-combiner.dep.yml create mode 100644 .licenses/npm/streamsearch.dep.yml create mode 100644 .licenses/npm/strict-uri-encode.dep.yml create mode 100644 .licenses/npm/string-argv-0.1.2.dep.yml create mode 100644 .licenses/npm/string-argv-0.3.1.dep.yml create mode 100644 .licenses/npm/string-natural-compare.dep.yml create mode 100644 .licenses/npm/string-width-1.0.2.dep.yml create mode 100644 .licenses/npm/string-width-4.2.3.dep.yml create mode 100644 .licenses/npm/string-width-5.1.2.dep.yml create mode 100644 .licenses/npm/string-width-cjs.dep.yml create mode 100644 .licenses/npm/string_decoder-1.1.1.dep.yml create mode 100644 .licenses/npm/string_decoder-1.3.0.dep.yml create mode 100644 .licenses/npm/stringify-object.dep.yml create mode 100644 .licenses/npm/strip-ansi-3.0.1.dep.yml create mode 100644 .licenses/npm/strip-ansi-6.0.1.dep.yml create mode 100644 .licenses/npm/strip-ansi-7.1.0.dep.yml create mode 100644 .licenses/npm/strip-ansi-cjs.dep.yml create mode 100644 .licenses/npm/strip-dirs.dep.yml create mode 100644 .licenses/npm/strip-eof.dep.yml create mode 100644 .licenses/npm/strip-final-newline.dep.yml create mode 100644 .licenses/npm/strip-json-comments.dep.yml create mode 100644 .licenses/npm/strip-outer.dep.yml create mode 100644 .licenses/npm/style-to-object.dep.yml create mode 100644 .licenses/npm/stylis.dep.yml create mode 100644 .licenses/npm/sumchecker.dep.yml create mode 100644 .licenses/npm/superagent.dep.yml create mode 100644 .licenses/npm/supports-color.dep.yml create mode 100644 .licenses/npm/supports-preserve-symlinks-flag.dep.yml create mode 100644 .licenses/npm/symbol-tree.dep.yml create mode 100644 .licenses/npm/tar-fs-1.16.4.dep.yml create mode 100644 .licenses/npm/tar-fs-2.1.2.dep.yml create mode 100644 .licenses/npm/tar-stream-1.6.2.dep.yml create mode 100644 .licenses/npm/tar-stream-2.2.0.dep.yml create mode 100644 .licenses/npm/tar.dep.yml create mode 100644 .licenses/npm/temp-dir.dep.yml create mode 100644 .licenses/npm/temp.dep.yml create mode 100644 .licenses/npm/through.dep.yml create mode 100644 .licenses/npm/tippy.js.dep.yml create mode 100644 .licenses/npm/to-buffer.dep.yml create mode 100644 .licenses/npm/to-regex-range.dep.yml create mode 100644 .licenses/npm/toidentifier.dep.yml create mode 100644 .licenses/npm/tough-cookie.dep.yml create mode 100644 .licenses/npm/tr46-0.0.3.dep.yml create mode 100644 .licenses/npm/tr46-4.1.1.dep.yml create mode 100644 .licenses/npm/trash.dep.yml create mode 100644 .licenses/npm/traverse.dep.yml create mode 100644 .licenses/npm/tree-kill.dep.yml create mode 100644 .licenses/npm/trim-lines.dep.yml create mode 100644 .licenses/npm/trim-repeated.dep.yml create mode 100644 .licenses/npm/trough.dep.yml create mode 100644 .licenses/npm/ts-error.dep.yml create mode 100644 .licenses/npm/ts-md5.dep.yml create mode 100644 .licenses/npm/tslib.dep.yml create mode 100644 .licenses/npm/tunnel-agent.dep.yml create mode 100644 .licenses/npm/type-fest-0.13.1.dep.yml create mode 100644 .licenses/npm/type-fest-0.21.3.dep.yml create mode 100644 .licenses/npm/type-fest-2.19.0.dep.yml create mode 100644 .licenses/npm/type-is.dep.yml create mode 100644 .licenses/npm/typedarray.dep.yml create mode 100644 .licenses/npm/uc.micro.dep.yml create mode 100644 .licenses/npm/unbzip2-stream.dep.yml create mode 100644 .licenses/npm/undici-types-6.19.8.dep.yml create mode 100644 .licenses/npm/undici-types-6.20.0.dep.yml create mode 100644 .licenses/npm/unfetch.dep.yml create mode 100644 .licenses/npm/unified.dep.yml create mode 100644 .licenses/npm/unist-util-generated.dep.yml create mode 100644 .licenses/npm/unist-util-is.dep.yml create mode 100644 .licenses/npm/unist-util-position.dep.yml create mode 100644 .licenses/npm/unist-util-stringify-position.dep.yml create mode 100644 .licenses/npm/unist-util-visit-parents.dep.yml create mode 100644 .licenses/npm/unist-util-visit.dep.yml create mode 100644 .licenses/npm/universalify-0.1.2.dep.yml create mode 100644 .licenses/npm/universalify-0.2.0.dep.yml create mode 100644 .licenses/npm/universalify-2.0.1.dep.yml create mode 100644 .licenses/npm/unpipe.dep.yml create mode 100644 .licenses/npm/unzipper.dep.yml create mode 100644 .licenses/npm/uri-js.dep.yml create mode 100644 .licenses/npm/url-join.dep.yml create mode 100644 .licenses/npm/url-parse.dep.yml create mode 100644 .licenses/npm/use-isomorphic-layout-effect.dep.yml create mode 100644 .licenses/npm/user-home.dep.yml create mode 100644 .licenses/npm/util-deprecate.dep.yml create mode 100644 .licenses/npm/util.dep.yml create mode 100644 .licenses/npm/utils-merge.dep.yml create mode 100644 .licenses/npm/uuid-7.0.3.dep.yml create mode 100644 .licenses/npm/uuid-8.3.2.dep.yml create mode 100644 .licenses/npm/uuid-9.0.1.dep.yml create mode 100644 .licenses/npm/uvu.dep.yml create mode 100644 .licenses/npm/valid-filename.dep.yml create mode 100644 .licenses/npm/vary.dep.yml create mode 100644 .licenses/npm/vfile-message.dep.yml create mode 100644 .licenses/npm/vfile.dep.yml create mode 100644 .licenses/npm/vhost.dep.yml create mode 100644 .licenses/npm/vinyl.dep.yml create mode 100644 .licenses/npm/vscode-arduino-api.dep.yml create mode 100644 .licenses/npm/vscode-jsonrpc.dep.yml create mode 100644 .licenses/npm/vscode-languageserver-protocol.dep.yml create mode 100644 .licenses/npm/vscode-languageserver-textdocument.dep.yml create mode 100644 .licenses/npm/vscode-languageserver-types.dep.yml create mode 100644 .licenses/npm/vscode-oniguruma.dep.yml create mode 100644 .licenses/npm/vscode-textmate.dep.yml create mode 100644 .licenses/npm/vscode-uri.dep.yml create mode 100644 .licenses/npm/w3c-xmlserializer.dep.yml create mode 100644 .licenses/npm/web-streams-polyfill.dep.yml create mode 100644 .licenses/npm/webidl-conversions-3.0.1.dep.yml create mode 100644 .licenses/npm/webidl-conversions-7.0.0.dep.yml create mode 100644 .licenses/npm/whatwg-encoding.dep.yml create mode 100644 .licenses/npm/whatwg-mimetype.dep.yml create mode 100644 .licenses/npm/whatwg-url-12.0.1.dep.yml create mode 100644 .licenses/npm/whatwg-url-5.0.0.dep.yml create mode 100644 .licenses/npm/which-1.3.1.dep.yml create mode 100644 .licenses/npm/which-2.0.2.dep.yml create mode 100644 .licenses/npm/which-boxed-primitive.dep.yml create mode 100644 .licenses/npm/which-collection.dep.yml create mode 100644 .licenses/npm/which-module.dep.yml create mode 100644 .licenses/npm/which-pm-runs.dep.yml create mode 100644 .licenses/npm/which-typed-array.dep.yml create mode 100644 .licenses/npm/wide-align.dep.yml create mode 100644 .licenses/npm/winchan.dep.yml create mode 100644 .licenses/npm/wrap-ansi-6.2.0.dep.yml create mode 100644 .licenses/npm/wrap-ansi-7.0.0.dep.yml create mode 100644 .licenses/npm/wrap-ansi-8.1.0.dep.yml create mode 100644 .licenses/npm/wrap-ansi-cjs.dep.yml create mode 100644 .licenses/npm/wrappy.dep.yml create mode 100644 .licenses/npm/write-file-atomic.dep.yml create mode 100644 .licenses/npm/write-json-file.dep.yml create mode 100644 .licenses/npm/ws-8.17.1.dep.yml create mode 100644 .licenses/npm/ws-8.18.1.dep.yml create mode 100644 .licenses/npm/xdg-basedir.dep.yml create mode 100644 .licenses/npm/xdg-trashdir.dep.yml create mode 100644 .licenses/npm/xml-name-validator.dep.yml create mode 100644 .licenses/npm/xmlchars.dep.yml create mode 100644 .licenses/npm/xmlhttprequest-ssl.dep.yml create mode 100644 .licenses/npm/xtend.dep.yml create mode 100644 .licenses/npm/xterm-4.19.0.dep.yml create mode 100644 .licenses/npm/xterm-5.3.0.dep.yml create mode 100644 .licenses/npm/xterm-addon-fit-0.5.0.dep.yml create mode 100644 .licenses/npm/xterm-addon-fit-0.8.0.dep.yml create mode 100644 .licenses/npm/xterm-addon-search.dep.yml create mode 100644 .licenses/npm/y18n-4.0.3.dep.yml create mode 100644 .licenses/npm/y18n-5.0.8.dep.yml create mode 100644 .licenses/npm/yallist-2.1.2.dep.yml create mode 100644 .licenses/npm/yallist-4.0.0.dep.yml create mode 100644 .licenses/npm/yaml.dep.yml create mode 100644 .licenses/npm/yargs-15.4.1.dep.yml create mode 100644 .licenses/npm/yargs-17.7.2.dep.yml create mode 100644 .licenses/npm/yargs-parser-18.1.3.dep.yml create mode 100644 .licenses/npm/yargs-parser-21.1.1.dep.yml create mode 100644 .licenses/npm/yauzl.dep.yml diff --git a/.licenses/npm/@babel/code-frame.dep.yml b/.licenses/npm/@babel/code-frame.dep.yml new file mode 100644 index 000000000..88aa9dcbb --- /dev/null +++ b/.licenses/npm/@babel/code-frame.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/code-frame" +version: 7.26.2 +type: npm +summary: Generate errors that contain a code frame that point to source locations. +homepage: https://babel.dev/docs/en/next/babel-code-frame +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/generator.dep.yml b/.licenses/npm/@babel/generator.dep.yml new file mode 100644 index 000000000..0faa8dd39 --- /dev/null +++ b/.licenses/npm/@babel/generator.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/generator" +version: 7.26.10 +type: npm +summary: Turns an AST into code. +homepage: https://babel.dev/docs/en/next/babel-generator +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/helper-module-imports.dep.yml b/.licenses/npm/@babel/helper-module-imports.dep.yml new file mode 100644 index 000000000..373c2ea15 --- /dev/null +++ b/.licenses/npm/@babel/helper-module-imports.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/helper-module-imports" +version: 7.25.9 +type: npm +summary: Babel helper functions for inserting module loads +homepage: https://babel.dev/docs/en/next/babel-helper-module-imports +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/helper-string-parser.dep.yml b/.licenses/npm/@babel/helper-string-parser.dep.yml new file mode 100644 index 000000000..e17e5cd33 --- /dev/null +++ b/.licenses/npm/@babel/helper-string-parser.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/helper-string-parser" +version: 7.25.9 +type: npm +summary: A utility package to parse strings +homepage: https://babel.dev/docs/en/next/babel-helper-string-parser +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/helper-validator-identifier.dep.yml b/.licenses/npm/@babel/helper-validator-identifier.dep.yml new file mode 100644 index 000000000..726c741bd --- /dev/null +++ b/.licenses/npm/@babel/helper-validator-identifier.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/helper-validator-identifier" +version: 7.25.9 +type: npm +summary: Validate identifier/keywords name +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/parser.dep.yml b/.licenses/npm/@babel/parser.dep.yml new file mode 100644 index 000000000..c01933196 --- /dev/null +++ b/.licenses/npm/@babel/parser.dep.yml @@ -0,0 +1,30 @@ +--- +name: "@babel/parser" +version: 7.26.10 +type: npm +summary: A JavaScript parser +homepage: https://babel.dev/docs/en/next/babel-parser +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (C) 2012-2014 by various contributors (see AUTHORS) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/runtime.dep.yml b/.licenses/npm/@babel/runtime.dep.yml new file mode 100644 index 000000000..70c42decc --- /dev/null +++ b/.licenses/npm/@babel/runtime.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/runtime" +version: 7.26.10 +type: npm +summary: babel's modular runtime helpers +homepage: https://babel.dev/docs/en/next/babel-runtime +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/template.dep.yml b/.licenses/npm/@babel/template.dep.yml new file mode 100644 index 000000000..9b269fa32 --- /dev/null +++ b/.licenses/npm/@babel/template.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/template" +version: 7.26.9 +type: npm +summary: Generate an AST from a string template. +homepage: https://babel.dev/docs/en/next/babel-template +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/traverse.dep.yml b/.licenses/npm/@babel/traverse.dep.yml new file mode 100644 index 000000000..a76823357 --- /dev/null +++ b/.licenses/npm/@babel/traverse.dep.yml @@ -0,0 +1,34 @@ +--- +name: "@babel/traverse" +version: 7.26.10 +type: npm +summary: The Babel Traverse module maintains the overall tree state, and is responsible + for replacing, removing, and adding nodes +homepage: https://babel.dev/docs/en/next/babel-traverse +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@babel/types.dep.yml b/.licenses/npm/@babel/types.dep.yml new file mode 100644 index 000000000..6c74de855 --- /dev/null +++ b/.licenses/npm/@babel/types.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@babel/types" +version: 7.26.10 +type: npm +summary: Babel Types is a Lodash-esque utility library for AST nodes +homepage: https://babel.dev/docs/en/next/babel-types +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present Sebastian McKenzie and other contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@electron/get.dep.yml b/.licenses/npm/@electron/get.dep.yml new file mode 100644 index 000000000..dc117a0fe --- /dev/null +++ b/.licenses/npm/@electron/get.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@electron/get" +version: 2.0.3 +type: npm +summary: Utility for downloading artifacts from different versions of Electron +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Contributors to the Electron project + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/babel-plugin.dep.yml b/.licenses/npm/@emotion/babel-plugin.dep.yml new file mode 100644 index 000000000..955c9d00d --- /dev/null +++ b/.licenses/npm/@emotion/babel-plugin.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@emotion/babel-plugin" +version: 11.13.5 +type: npm +summary: A recommended babel preprocessing plugin for emotion, The Next Generation + of CSS-in-JS. +homepage: https://emotion.sh +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/cache.dep.yml b/.licenses/npm/@emotion/cache.dep.yml new file mode 100644 index 000000000..f8961287e --- /dev/null +++ b/.licenses/npm/@emotion/cache.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/cache" +version: 11.14.0 +type: npm +summary: emotion's cache +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/hash.dep.yml b/.licenses/npm/@emotion/hash.dep.yml new file mode 100644 index 000000000..2b5a3c64c --- /dev/null +++ b/.licenses/npm/@emotion/hash.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/hash" +version: 0.9.2 +type: npm +summary: A MurmurHash2 implementation +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/memoize.dep.yml b/.licenses/npm/@emotion/memoize.dep.yml new file mode 100644 index 000000000..2a73fc236 --- /dev/null +++ b/.licenses/npm/@emotion/memoize.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/memoize" +version: 0.9.0 +type: npm +summary: emotion's memoize utility +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/react.dep.yml b/.licenses/npm/@emotion/react.dep.yml new file mode 100644 index 000000000..e979b1408 --- /dev/null +++ b/.licenses/npm/@emotion/react.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/react" +version: 11.14.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/serialize.dep.yml b/.licenses/npm/@emotion/serialize.dep.yml new file mode 100644 index 000000000..74f358409 --- /dev/null +++ b/.licenses/npm/@emotion/serialize.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/serialize" +version: 1.3.3 +type: npm +summary: serialization utils for emotion +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/sheet.dep.yml b/.licenses/npm/@emotion/sheet.dep.yml new file mode 100644 index 000000000..1b1432d4c --- /dev/null +++ b/.licenses/npm/@emotion/sheet.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/sheet" +version: 1.4.0 +type: npm +summary: emotion's stylesheet +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/unitless.dep.yml b/.licenses/npm/@emotion/unitless.dep.yml new file mode 100644 index 000000000..f5b832486 --- /dev/null +++ b/.licenses/npm/@emotion/unitless.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/unitless" +version: 0.10.0 +type: npm +summary: An object of css properties that don't accept values with units +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/use-insertion-effect-with-fallbacks.dep.yml b/.licenses/npm/@emotion/use-insertion-effect-with-fallbacks.dep.yml new file mode 100644 index 000000000..a3bc81755 --- /dev/null +++ b/.licenses/npm/@emotion/use-insertion-effect-with-fallbacks.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/use-insertion-effect-with-fallbacks" +version: 1.2.0 +type: npm +summary: A wrapper package that uses `useInsertionEffect` or a fallback for it +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/utils.dep.yml b/.licenses/npm/@emotion/utils.dep.yml new file mode 100644 index 000000000..3c24ec1dc --- /dev/null +++ b/.licenses/npm/@emotion/utils.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/utils" +version: 1.4.2 +type: npm +summary: internal utils for emotion +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@emotion/weak-memoize.dep.yml b/.licenses/npm/@emotion/weak-memoize.dep.yml new file mode 100644 index 000000000..e457c23cb --- /dev/null +++ b/.licenses/npm/@emotion/weak-memoize.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@emotion/weak-memoize" +version: 0.4.0 +type: npm +summary: A memoization function that uses a WeakMap +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Emotion team and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@floating-ui/core.dep.yml b/.licenses/npm/@floating-ui/core.dep.yml new file mode 100644 index 000000000..ac136e0cb --- /dev/null +++ b/.licenses/npm/@floating-ui/core.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@floating-ui/core" +version: 1.6.9 +type: npm +summary: 'Positioning library for floating elements: tooltips, popovers, dropdowns, + and more' +homepage: https://floating-ui.com +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021-present Floating UI contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@floating-ui/dom.dep.yml b/.licenses/npm/@floating-ui/dom.dep.yml new file mode 100644 index 000000000..c5d5d99f2 --- /dev/null +++ b/.licenses/npm/@floating-ui/dom.dep.yml @@ -0,0 +1,31 @@ +--- +name: "@floating-ui/dom" +version: 1.6.13 +type: npm +summary: Floating UI for the web +homepage: https://floating-ui.com +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021-present Floating UI contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@floating-ui/utils.dep.yml b/.licenses/npm/@floating-ui/utils.dep.yml new file mode 100644 index 000000000..51006158a --- /dev/null +++ b/.licenses/npm/@floating-ui/utils.dep.yml @@ -0,0 +1,31 @@ +--- +name: "@floating-ui/utils" +version: 0.2.9 +type: npm +summary: Utilities for Floating UI +homepage: https://floating-ui.com +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021-present Floating UI contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@grpc/grpc-js.dep.yml b/.licenses/npm/@grpc/grpc-js.dep.yml new file mode 100644 index 000000000..8d672cbc8 --- /dev/null +++ b/.licenses/npm/@grpc/grpc-js.dep.yml @@ -0,0 +1,212 @@ +--- +name: "@grpc/grpc-js" +version: 1.13.0 +type: npm +summary: gRPC Library for Node - pure JS implementation +homepage: https://grpc.io/ +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/@grpc/proto-loader.dep.yml b/.licenses/npm/@grpc/proto-loader.dep.yml new file mode 100644 index 000000000..5a9b344b6 --- /dev/null +++ b/.licenses/npm/@grpc/proto-loader.dep.yml @@ -0,0 +1,212 @@ +--- +name: "@grpc/proto-loader" +version: 0.7.13 +type: npm +summary: gRPC utility library for loading .proto files +homepage: https://grpc.io/ +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/@isaacs/cliui.dep.yml b/.licenses/npm/@isaacs/cliui.dep.yml new file mode 100644 index 000000000..351375260 --- /dev/null +++ b/.licenses/npm/@isaacs/cliui.dep.yml @@ -0,0 +1,25 @@ +--- +name: "@isaacs/cliui" +version: 8.0.2 +type: npm +summary: easily create complex multi-column command-line-interfaces +homepage: +license: isc +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2015, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/@jridgewell/gen-mapping.dep.yml b/.licenses/npm/@jridgewell/gen-mapping.dep.yml new file mode 100644 index 000000000..5e49ddf74 --- /dev/null +++ b/.licenses/npm/@jridgewell/gen-mapping.dep.yml @@ -0,0 +1,30 @@ +--- +name: "@jridgewell/gen-mapping" +version: 0.3.8 +type: npm +summary: Generate source maps +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright 2022 Justin Ridgewell + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@jridgewell/resolve-uri.dep.yml b/.licenses/npm/@jridgewell/resolve-uri.dep.yml new file mode 100644 index 000000000..b58ef6041 --- /dev/null +++ b/.licenses/npm/@jridgewell/resolve-uri.dep.yml @@ -0,0 +1,30 @@ +--- +name: "@jridgewell/resolve-uri" +version: 3.1.2 +type: npm +summary: Resolve a URI relative to an optional base URI +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + Copyright 2019 Justin Ridgewell + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@jridgewell/set-array.dep.yml b/.licenses/npm/@jridgewell/set-array.dep.yml new file mode 100644 index 000000000..a801f6520 --- /dev/null +++ b/.licenses/npm/@jridgewell/set-array.dep.yml @@ -0,0 +1,30 @@ +--- +name: "@jridgewell/set-array" +version: 1.2.1 +type: npm +summary: Like a Set, but provides the index of the `key` in the backing array +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright 2022 Justin Ridgewell + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@jridgewell/sourcemap-codec.dep.yml b/.licenses/npm/@jridgewell/sourcemap-codec.dep.yml new file mode 100644 index 000000000..d090d2263 --- /dev/null +++ b/.licenses/npm/@jridgewell/sourcemap-codec.dep.yml @@ -0,0 +1,34 @@ +--- +name: "@jridgewell/sourcemap-codec" +version: 1.5.0 +type: npm +summary: Encode/decode sourcemap mappings +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License + + Copyright (c) 2015 Rich Harris + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/@jridgewell/trace-mapping.dep.yml b/.licenses/npm/@jridgewell/trace-mapping.dep.yml new file mode 100644 index 000000000..3bc076c29 --- /dev/null +++ b/.licenses/npm/@jridgewell/trace-mapping.dep.yml @@ -0,0 +1,30 @@ +--- +name: "@jridgewell/trace-mapping" +version: 0.3.25 +type: npm +summary: Trace the original position through a source map +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright 2022 Justin Ridgewell + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@js-sdsl/ordered-map.dep.yml b/.licenses/npm/@js-sdsl/ordered-map.dep.yml new file mode 100644 index 000000000..3a1a73809 --- /dev/null +++ b/.licenses/npm/@js-sdsl/ordered-map.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@js-sdsl/ordered-map" +version: 4.4.2 +type: npm +summary: javascript standard data structure library which benchmark against C++ STL +homepage: https://js-sdsl.org +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021 Zilong Yao + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@leichtgewicht/ip-codec.dep.yml b/.licenses/npm/@leichtgewicht/ip-codec.dep.yml new file mode 100644 index 000000000..56770d00b --- /dev/null +++ b/.licenses/npm/@leichtgewicht/ip-codec.dep.yml @@ -0,0 +1,34 @@ +--- +name: "@leichtgewicht/ip-codec" +version: 2.0.5 +type: npm +summary: Small package to encode or decode IP addresses from buffers to strings. +homepage: https://github.com/martinheidegger/ip-codec#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021 Martin Heidegger + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: Readme.md + text: "[MIT](./LICENSE)" +notices: [] diff --git a/.licenses/npm/@mapbox/node-pre-gyp.dep.yml b/.licenses/npm/@mapbox/node-pre-gyp.dep.yml new file mode 100644 index 000000000..22b7e78e4 --- /dev/null +++ b/.licenses/npm/@mapbox/node-pre-gyp.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@mapbox/node-pre-gyp" +version: 1.0.11 +type: npm +summary: Node.js native addon binary install tool +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c), Mapbox + + All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, + are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of node-pre-gyp nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@parcel/watcher.dep.yml b/.licenses/npm/@parcel/watcher.dep.yml new file mode 100644 index 000000000..c09801ecb --- /dev/null +++ b/.licenses/npm/@parcel/watcher.dep.yml @@ -0,0 +1,35 @@ +--- +name: "@parcel/watcher" +version: 2.5.1 +type: npm +summary: A native C++ Node module for querying and subscribing to filesystem events. + Used by Parcel 2. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017-present Devon Govett + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/@phosphor/algorithm.dep.yml b/.licenses/npm/@phosphor/algorithm.dep.yml new file mode 100644 index 000000000..45d859c36 --- /dev/null +++ b/.licenses/npm/@phosphor/algorithm.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/algorithm" +version: 1.2.0 +type: npm +summary: PhosphorJS - Algorithms and Iterators +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/collections.dep.yml b/.licenses/npm/@phosphor/collections.dep.yml new file mode 100644 index 000000000..cc1cce5f5 --- /dev/null +++ b/.licenses/npm/@phosphor/collections.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/collections" +version: 1.2.0 +type: npm +summary: PhosphorJS - Generic Collections +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/commands.dep.yml b/.licenses/npm/@phosphor/commands.dep.yml new file mode 100644 index 000000000..3c8842b2d --- /dev/null +++ b/.licenses/npm/@phosphor/commands.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/commands" +version: 1.7.2 +type: npm +summary: PhosphorJS - Commands +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/coreutils.dep.yml b/.licenses/npm/@phosphor/coreutils.dep.yml new file mode 100644 index 000000000..ae1b3a8ff --- /dev/null +++ b/.licenses/npm/@phosphor/coreutils.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@phosphor/coreutils" +version: 1.3.1 +type: npm +summary: PhosphorJS - Core Utilities +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: Auto-generated BSD-3-Clause license text + text: | + BSD 3-Clause License + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/disposable.dep.yml b/.licenses/npm/@phosphor/disposable.dep.yml new file mode 100644 index 000000000..ec93841cb --- /dev/null +++ b/.licenses/npm/@phosphor/disposable.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/disposable" +version: 1.3.1 +type: npm +summary: PhosphorJS - Disposable +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/domutils.dep.yml b/.licenses/npm/@phosphor/domutils.dep.yml new file mode 100644 index 000000000..1573c80d5 --- /dev/null +++ b/.licenses/npm/@phosphor/domutils.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/domutils" +version: 1.1.4 +type: npm +summary: PhosphorJS - DOM Utilities +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/dragdrop.dep.yml b/.licenses/npm/@phosphor/dragdrop.dep.yml new file mode 100644 index 000000000..3cfc869d2 --- /dev/null +++ b/.licenses/npm/@phosphor/dragdrop.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/dragdrop" +version: 1.4.1 +type: npm +summary: PhosphorJS - Drag and Drop +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/keyboard.dep.yml b/.licenses/npm/@phosphor/keyboard.dep.yml new file mode 100644 index 000000000..11112b29f --- /dev/null +++ b/.licenses/npm/@phosphor/keyboard.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@phosphor/keyboard" +version: 1.1.3 +type: npm +summary: PhosphorJS - Keyboard +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: Auto-generated BSD-3-Clause license text + text: | + BSD 3-Clause License + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/messaging.dep.yml b/.licenses/npm/@phosphor/messaging.dep.yml new file mode 100644 index 000000000..b30d3fc9e --- /dev/null +++ b/.licenses/npm/@phosphor/messaging.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/messaging" +version: 1.3.0 +type: npm +summary: PhosphorJS - Message Passing +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/properties.dep.yml b/.licenses/npm/@phosphor/properties.dep.yml new file mode 100644 index 000000000..7338d90d5 --- /dev/null +++ b/.licenses/npm/@phosphor/properties.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@phosphor/properties" +version: 1.1.3 +type: npm +summary: PhosphorJS - Attached Properties +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: Auto-generated BSD-3-Clause license text + text: | + BSD 3-Clause License + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/signaling.dep.yml b/.licenses/npm/@phosphor/signaling.dep.yml new file mode 100644 index 000000000..1290b61aa --- /dev/null +++ b/.licenses/npm/@phosphor/signaling.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/signaling" +version: 1.3.1 +type: npm +summary: PhosphorJS - Signals and Slots +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/virtualdom.dep.yml b/.licenses/npm/@phosphor/virtualdom.dep.yml new file mode 100644 index 000000000..0f9c37532 --- /dev/null +++ b/.licenses/npm/@phosphor/virtualdom.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/virtualdom" +version: 1.2.0 +type: npm +summary: PhosphorJS - Virtual DOM +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@phosphor/widgets.dep.yml b/.licenses/npm/@phosphor/widgets.dep.yml new file mode 100644 index 000000000..2d76e1729 --- /dev/null +++ b/.licenses/npm/@phosphor/widgets.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@phosphor/widgets" +version: 1.9.3 +type: npm +summary: PhosphorJS - Widgets +homepage: https://github.com/phosphorjs/phosphor +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014-2017, PhosphorJS Contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@pingghost/protoc.dep.yml b/.licenses/npm/@pingghost/protoc.dep.yml new file mode 100644 index 000000000..76a19d352 --- /dev/null +++ b/.licenses/npm/@pingghost/protoc.dep.yml @@ -0,0 +1,31 @@ +--- +name: "@pingghost/protoc" +version: 1.0.2 +type: npm +summary: A tool for converting proto buffers (.proto) files into javascript files + usable in Closure Compiler with Closure Library. +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@pkgjs/parseargs.dep.yml b/.licenses/npm/@pkgjs/parseargs.dep.yml new file mode 100644 index 000000000..13fa21a60 --- /dev/null +++ b/.licenses/npm/@pkgjs/parseargs.dep.yml @@ -0,0 +1,212 @@ +--- +name: "@pkgjs/parseargs" +version: 0.11.0 +type: npm +summary: Polyfill of future proposal for `util.parseArgs()` +homepage: https://github.com/pkgjs/parseargs#readme +license: other +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/@popperjs/core.dep.yml b/.licenses/npm/@popperjs/core.dep.yml new file mode 100644 index 000000000..5a147dc73 --- /dev/null +++ b/.licenses/npm/@popperjs/core.dep.yml @@ -0,0 +1,33 @@ +--- +name: "@popperjs/core" +version: 2.11.8 +type: npm +summary: Tooltip and Popover Positioning Engine +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2019 Federico Zivolo + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/@protobufjs/aspromise.dep.yml b/.licenses/npm/@protobufjs/aspromise.dep.yml new file mode 100644 index 000000000..5f44d9480 --- /dev/null +++ b/.licenses/npm/@protobufjs/aspromise.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/aspromise" +version: 1.1.2 +type: npm +summary: Returns a promise from a node-style callback function. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/base64.dep.yml b/.licenses/npm/@protobufjs/base64.dep.yml new file mode 100644 index 000000000..08ec2b217 --- /dev/null +++ b/.licenses/npm/@protobufjs/base64.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/base64" +version: 1.1.2 +type: npm +summary: A minimal base64 implementation for number arrays. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/codegen.dep.yml b/.licenses/npm/@protobufjs/codegen.dep.yml new file mode 100644 index 000000000..992cbc0d0 --- /dev/null +++ b/.licenses/npm/@protobufjs/codegen.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/codegen" +version: 2.0.4 +type: npm +summary: A minimalistic code generation utility. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/eventemitter.dep.yml b/.licenses/npm/@protobufjs/eventemitter.dep.yml new file mode 100644 index 000000000..a168a5c18 --- /dev/null +++ b/.licenses/npm/@protobufjs/eventemitter.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/eventemitter" +version: 1.1.0 +type: npm +summary: A minimal event emitter. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/fetch.dep.yml b/.licenses/npm/@protobufjs/fetch.dep.yml new file mode 100644 index 000000000..40e20fc74 --- /dev/null +++ b/.licenses/npm/@protobufjs/fetch.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/fetch" +version: 1.1.0 +type: npm +summary: Fetches the contents of a file accross node and browsers. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/float.dep.yml b/.licenses/npm/@protobufjs/float.dep.yml new file mode 100644 index 000000000..e2c1455b5 --- /dev/null +++ b/.licenses/npm/@protobufjs/float.dep.yml @@ -0,0 +1,38 @@ +--- +name: "@protobufjs/float" +version: 1.0.2 +type: npm +summary: Reads / writes floats / doubles from / to buffers in both modern and ancient + browsers. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/inquire.dep.yml b/.licenses/npm/@protobufjs/inquire.dep.yml new file mode 100644 index 000000000..b1cebaa73 --- /dev/null +++ b/.licenses/npm/@protobufjs/inquire.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/inquire" +version: 1.1.0 +type: npm +summary: Requires a module only if available and hides the require call from bundlers. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/path.dep.yml b/.licenses/npm/@protobufjs/path.dep.yml new file mode 100644 index 000000000..96b0ece66 --- /dev/null +++ b/.licenses/npm/@protobufjs/path.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/path" +version: 1.1.2 +type: npm +summary: A minimal path module to resolve Unix, Windows and URL paths alike. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/pool.dep.yml b/.licenses/npm/@protobufjs/pool.dep.yml new file mode 100644 index 000000000..482166511 --- /dev/null +++ b/.licenses/npm/@protobufjs/pool.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/pool" +version: 1.1.0 +type: npm +summary: A general purpose buffer pool. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@protobufjs/utf8.dep.yml b/.licenses/npm/@protobufjs/utf8.dep.yml new file mode 100644 index 000000000..074a84262 --- /dev/null +++ b/.licenses/npm/@protobufjs/utf8.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@protobufjs/utf8" +version: 1.1.0 +type: npm +summary: A minimal UTF8 implementation for number arrays. +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/@sindresorhus/df-1.0.1.dep.yml b/.licenses/npm/@sindresorhus/df-1.0.1.dep.yml new file mode 100644 index 000000000..d0ff4d21e --- /dev/null +++ b/.licenses/npm/@sindresorhus/df-1.0.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: "@sindresorhus/df" +version: 1.0.1 +type: npm +summary: Get free disk space info from `df -kP` +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/@sindresorhus/df-3.1.1.dep.yml b/.licenses/npm/@sindresorhus/df-3.1.1.dep.yml new file mode 100644 index 000000000..9d31e91fe --- /dev/null +++ b/.licenses/npm/@sindresorhus/df-3.1.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: "@sindresorhus/df" +version: 3.1.1 +type: npm +summary: Get free disk space info from `df -kP` +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@sindresorhus/is-4.6.0.dep.yml b/.licenses/npm/@sindresorhus/is-4.6.0.dep.yml new file mode 100644 index 000000000..ecae8a397 --- /dev/null +++ b/.licenses/npm/@sindresorhus/is-4.6.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: "@sindresorhus/is" +version: 4.6.0 +type: npm +summary: Type check values +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@sindresorhus/is-5.6.0.dep.yml b/.licenses/npm/@sindresorhus/is-5.6.0.dep.yml new file mode 100644 index 000000000..7f1dfcce0 --- /dev/null +++ b/.licenses/npm/@sindresorhus/is-5.6.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: "@sindresorhus/is" +version: 5.6.0 +type: npm +summary: Type check values +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/@socket.io/component-emitter.dep.yml b/.licenses/npm/@socket.io/component-emitter.dep.yml new file mode 100644 index 000000000..87b7fcef8 --- /dev/null +++ b/.licenses/npm/@socket.io/component-emitter.dep.yml @@ -0,0 +1,37 @@ +--- +name: "@socket.io/component-emitter" +version: 3.1.2 +type: npm +summary: Event emitter +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Component contributors + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/@stroncium/procfs.dep.yml b/.licenses/npm/@stroncium/procfs.dep.yml new file mode 100644 index 000000000..ed573315f --- /dev/null +++ b/.licenses/npm/@stroncium/procfs.dep.yml @@ -0,0 +1,128 @@ +--- +name: "@stroncium/procfs" +version: 1.2.1 +type: npm +summary: Zero dependency library for reading and parsing various files from `procfs` + for Node.js, implemented in pure JS. +homepage: https://github.com/stroncium/nodejs-procfs +license: cc0-1.0 +licenses: +- sources: LICENSE + text: | + CC0 1.0 Universal + + Statement of Purpose + + The laws of most jurisdictions throughout the world automatically confer + exclusive Copyright and Related Rights (defined below) upon the creator and + subsequent owner(s) (each and all, an "owner") of an original work of + authorship and/or a database (each, a "Work"). + + Certain owners wish to permanently relinquish those rights to a Work for the + purpose of contributing to a commons of creative, cultural and scientific + works ("Commons") that the public can reliably and without fear of later + claims of infringement build upon, modify, incorporate in other works, reuse + and redistribute as freely as possible in any form whatsoever and for any + purposes, including without limitation commercial purposes. These owners may + contribute to the Commons to promote the ideal of a free culture and the + further production of creative, cultural and scientific works, or to gain + reputation or greater distribution for their Work in part through the use and + efforts of others. + + For these and/or other purposes and motivations, and without any expectation + of additional consideration or compensation, the person associating CC0 with a + Work (the "Affirmer"), to the extent that he or she is an owner of Copyright + and Related Rights in the Work, voluntarily elects to apply CC0 to the Work + and publicly distribute the Work under its terms, with knowledge of his or her + Copyright and Related Rights in the Work and the meaning and intended legal + effect of CC0 on those rights. + + 1. Copyright and Related Rights. A Work made available under CC0 may be + protected by copyright and related or neighboring rights ("Copyright and + Related Rights"). Copyright and Related Rights include, but are not limited + to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, communicate, + and translate a Work; + + ii. moral rights retained by the original author(s) and/or performer(s); + + iii. publicity and privacy rights pertaining to a person's image or likeness + depicted in a Work; + + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + + v. rights protecting the extraction, dissemination, use and reuse of data in + a Work; + + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation thereof, + including any amended or successor version of such directive); and + + vii. other similar, equivalent or corresponding rights throughout the world + based on applicable law or treaty, and any national implementations thereof. + + 2. Waiver. To the greatest extent permitted by, but not in contravention of, + applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and + unconditionally waives, abandons, and surrenders all of Affirmer's Copyright + and Related Rights and associated claims and causes of action, whether now + known or unknown (including existing as well as future claims and causes of + action), in the Work (i) in all territories worldwide, (ii) for the maximum + duration provided by applicable law or treaty (including future time + extensions), (iii) in any current or future medium and for any number of + copies, and (iv) for any purpose whatsoever, including without limitation + commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes + the Waiver for the benefit of each member of the public at large and to the + detriment of Affirmer's heirs and successors, fully intending that such Waiver + shall not be subject to revocation, rescission, cancellation, termination, or + any other legal or equitable action to disrupt the quiet enjoyment of the Work + by the public as contemplated by Affirmer's express Statement of Purpose. + + 3. Public License Fallback. Should any part of the Waiver for any reason be + judged legally invalid or ineffective under applicable law, then the Waiver + shall be preserved to the maximum extent permitted taking into account + Affirmer's express Statement of Purpose. In addition, to the extent the Waiver + is so judged Affirmer hereby grants to each affected person a royalty-free, + non transferable, non sublicensable, non exclusive, irrevocable and + unconditional license to exercise Affirmer's Copyright and Related Rights in + the Work (i) in all territories worldwide, (ii) for the maximum duration + provided by applicable law or treaty (including future time extensions), (iii) + in any current or future medium and for any number of copies, and (iv) for any + purpose whatsoever, including without limitation commercial, advertising or + promotional purposes (the "License"). The License shall be deemed effective as + of the date CC0 was applied by Affirmer to the Work. Should any part of the + License for any reason be judged legally invalid or ineffective under + applicable law, such partial invalidity or ineffectiveness shall not + invalidate the remainder of the License, and in such case Affirmer hereby + affirms that he or she will not (i) exercise any of his or her remaining + Copyright and Related Rights in the Work or (ii) assert any associated claims + and causes of action with respect to the Work, in either case contrary to + Affirmer's express Statement of Purpose. + + 4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + + b. Affirmer offers the Work as-is and makes no representations or warranties + of any kind concerning the Work, express, implied, statutory or otherwise, + including without limitation warranties of title, merchantability, fitness + for a particular purpose, non infringement, or the absence of latent or + other defects, accuracy, or the present or absence of errors, whether or not + discoverable, all to the greatest extent permissible under applicable law. + + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without limitation + any person's Copyright and Related Rights in the Work. Further, Affirmer + disclaims responsibility for obtaining any necessary consents, permissions + or other rights required for any use of the Work. + + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to this + CC0 or use of the Work. + + For more information, please see + +notices: [] diff --git a/.licenses/npm/@szmarczak/http-timer-4.0.6.dep.yml b/.licenses/npm/@szmarczak/http-timer-4.0.6.dep.yml new file mode 100644 index 000000000..aeb6bec33 --- /dev/null +++ b/.licenses/npm/@szmarczak/http-timer-4.0.6.dep.yml @@ -0,0 +1,34 @@ +--- +name: "@szmarczak/http-timer" +version: 4.0.6 +type: npm +summary: Timings for HTTP requests +homepage: https://github.com/szmarczak/http-timer#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/@szmarczak/http-timer-5.0.1.dep.yml b/.licenses/npm/@szmarczak/http-timer-5.0.1.dep.yml new file mode 100644 index 000000000..8cde047c3 --- /dev/null +++ b/.licenses/npm/@szmarczak/http-timer-5.0.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: "@szmarczak/http-timer" +version: 5.0.1 +type: npm +summary: Timings for HTTP requests +homepage: https://github.com/szmarczak/http-timer#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/@theia/application-package.dep.yml b/.licenses/npm/@theia/application-package.dep.yml new file mode 100644 index 000000000..faaba49be --- /dev/null +++ b/.licenses/npm/@theia/application-package.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/application-package" +version: 1.57.0 +type: npm +summary: Theia application package API. +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/bulk-edit.dep.yml b/.licenses/npm/@theia/bulk-edit.dep.yml new file mode 100644 index 000000000..5a66d3165 --- /dev/null +++ b/.licenses/npm/@theia/bulk-edit.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/bulk-edit" +version: 1.57.0 +type: npm +summary: Theia - Bulk Edit Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/callhierarchy.dep.yml b/.licenses/npm/@theia/callhierarchy.dep.yml new file mode 100644 index 000000000..1d33f7a0c --- /dev/null +++ b/.licenses/npm/@theia/callhierarchy.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/callhierarchy" +version: 1.57.0 +type: npm +summary: Theia - Call Hierarchy Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/console.dep.yml b/.licenses/npm/@theia/console.dep.yml new file mode 100644 index 000000000..d027c340e --- /dev/null +++ b/.licenses/npm/@theia/console.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/console" +version: 1.57.0 +type: npm +summary: Theia - Console Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/core.dep.yml b/.licenses/npm/@theia/core.dep.yml new file mode 100644 index 000000000..f6fcac95a --- /dev/null +++ b/.licenses/npm/@theia/core.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/core" +version: 1.57.0 +type: npm +summary: Theia is a cloud & desktop IDE framework implemented in TypeScript. +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/debug.dep.yml b/.licenses/npm/@theia/debug.dep.yml new file mode 100644 index 000000000..eae6e09b2 --- /dev/null +++ b/.licenses/npm/@theia/debug.dep.yml @@ -0,0 +1,13 @@ +--- +name: "@theia/debug" +version: 1.57.0 +type: npm +summary: Theia - Debug Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: |- + * [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/) + * [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp) +notices: [] diff --git a/.licenses/npm/@theia/editor-preview.dep.yml b/.licenses/npm/@theia/editor-preview.dep.yml new file mode 100644 index 000000000..4a8dc6a06 --- /dev/null +++ b/.licenses/npm/@theia/editor-preview.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/editor-preview" +version: 1.57.0 +type: npm +summary: Theia - Editor Preview Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/editor.dep.yml b/.licenses/npm/@theia/editor.dep.yml new file mode 100644 index 000000000..d7815d83a --- /dev/null +++ b/.licenses/npm/@theia/editor.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/editor" +version: 1.57.0 +type: npm +summary: Theia - Editor Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/electron.dep.yml b/.licenses/npm/@theia/electron.dep.yml new file mode 100644 index 000000000..21aa522f4 --- /dev/null +++ b/.licenses/npm/@theia/electron.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/electron" +version: 1.57.0 +type: npm +summary: Theia - Electron utility package +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/file-search.dep.yml b/.licenses/npm/@theia/file-search.dep.yml new file mode 100644 index 000000000..49e149df6 --- /dev/null +++ b/.licenses/npm/@theia/file-search.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/file-search" +version: 1.57.0 +type: npm +summary: Theia - File Search Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/filesystem.dep.yml b/.licenses/npm/@theia/filesystem.dep.yml new file mode 100644 index 000000000..d90792821 --- /dev/null +++ b/.licenses/npm/@theia/filesystem.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/filesystem" +version: 1.57.0 +type: npm +summary: Theia - FileSystem Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/keymaps.dep.yml b/.licenses/npm/@theia/keymaps.dep.yml new file mode 100644 index 000000000..aa6f966db --- /dev/null +++ b/.licenses/npm/@theia/keymaps.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/keymaps" +version: 1.57.0 +type: npm +summary: Theia - Custom Keymaps Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/markers.dep.yml b/.licenses/npm/@theia/markers.dep.yml new file mode 100644 index 000000000..aa1c0200b --- /dev/null +++ b/.licenses/npm/@theia/markers.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/markers" +version: 1.57.0 +type: npm +summary: Theia - Markers Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/messages.dep.yml b/.licenses/npm/@theia/messages.dep.yml new file mode 100644 index 000000000..1d354e5ce --- /dev/null +++ b/.licenses/npm/@theia/messages.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/messages" +version: 1.57.0 +type: npm +summary: Theia - Messages Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/monaco-editor-core.dep.yml b/.licenses/npm/@theia/monaco-editor-core.dep.yml new file mode 100644 index 000000000..927fd84ed --- /dev/null +++ b/.licenses/npm/@theia/monaco-editor-core.dep.yml @@ -0,0 +1,34 @@ +--- +name: "@theia/monaco-editor-core" +version: 1.83.101 +type: npm +summary: A browser based code editor +homepage: +license: other +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 - present Microsoft Corporation + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/microsoft/vscode/blob/main/LICENSE.txt)" +notices: [] diff --git a/.licenses/npm/@theia/monaco.dep.yml b/.licenses/npm/@theia/monaco.dep.yml new file mode 100644 index 000000000..e64baa69d --- /dev/null +++ b/.licenses/npm/@theia/monaco.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/monaco" +version: 1.57.0 +type: npm +summary: Theia - Monaco Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/navigator.dep.yml b/.licenses/npm/@theia/navigator.dep.yml new file mode 100644 index 000000000..d3a9f7751 --- /dev/null +++ b/.licenses/npm/@theia/navigator.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/navigator" +version: 1.57.0 +type: npm +summary: Theia - Navigator Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/notebook.dep.yml b/.licenses/npm/@theia/notebook.dep.yml new file mode 100644 index 000000000..cabb06f59 --- /dev/null +++ b/.licenses/npm/@theia/notebook.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/notebook" +version: 1.57.0 +type: npm +summary: Theia - Notebook Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/outline-view.dep.yml b/.licenses/npm/@theia/outline-view.dep.yml new file mode 100644 index 000000000..73d29a7a5 --- /dev/null +++ b/.licenses/npm/@theia/outline-view.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/outline-view" +version: 1.57.0 +type: npm +summary: Theia - Outline View Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/output.dep.yml b/.licenses/npm/@theia/output.dep.yml new file mode 100644 index 000000000..38b4b9093 --- /dev/null +++ b/.licenses/npm/@theia/output.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/output" +version: 1.57.0 +type: npm +summary: Theia - Output Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/plugin-ext-vscode.dep.yml b/.licenses/npm/@theia/plugin-ext-vscode.dep.yml new file mode 100644 index 000000000..8a721290f --- /dev/null +++ b/.licenses/npm/@theia/plugin-ext-vscode.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/plugin-ext-vscode" +version: 1.57.0 +type: npm +summary: Theia - Plugin Extension for VsCode +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/plugin-ext.dep.yml b/.licenses/npm/@theia/plugin-ext.dep.yml new file mode 100644 index 000000000..e765319e2 --- /dev/null +++ b/.licenses/npm/@theia/plugin-ext.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/plugin-ext" +version: 1.57.0 +type: npm +summary: Theia - Plugin Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/plugin.dep.yml b/.licenses/npm/@theia/plugin.dep.yml new file mode 100644 index 000000000..e564a50e0 --- /dev/null +++ b/.licenses/npm/@theia/plugin.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/plugin" +version: 1.57.0 +type: npm +summary: Theia - Plugin API +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/preferences.dep.yml b/.licenses/npm/@theia/preferences.dep.yml new file mode 100644 index 000000000..1bdeaa439 --- /dev/null +++ b/.licenses/npm/@theia/preferences.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/preferences" +version: 1.57.0 +type: npm +summary: Theia - Preferences Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/process.dep.yml b/.licenses/npm/@theia/process.dep.yml new file mode 100644 index 000000000..3ac8d359e --- /dev/null +++ b/.licenses/npm/@theia/process.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/process" +version: 1.57.0 +type: npm +summary: Theia process support. +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/request.dep.yml b/.licenses/npm/@theia/request.dep.yml new file mode 100644 index 000000000..2150a7eb5 --- /dev/null +++ b/.licenses/npm/@theia/request.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/request" +version: 1.57.0 +type: npm +summary: Theia Proxy-Aware Request Service +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/scm.dep.yml b/.licenses/npm/@theia/scm.dep.yml new file mode 100644 index 000000000..179cbd6b1 --- /dev/null +++ b/.licenses/npm/@theia/scm.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/scm" +version: 1.57.0 +type: npm +summary: Theia - Source control Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/search-in-workspace.dep.yml b/.licenses/npm/@theia/search-in-workspace.dep.yml new file mode 100644 index 000000000..05b0c4ba5 --- /dev/null +++ b/.licenses/npm/@theia/search-in-workspace.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/search-in-workspace" +version: 1.57.0 +type: npm +summary: Theia - Search in workspace +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/task.dep.yml b/.licenses/npm/@theia/task.dep.yml new file mode 100644 index 000000000..19159864f --- /dev/null +++ b/.licenses/npm/@theia/task.dep.yml @@ -0,0 +1,12 @@ +--- +name: "@theia/task" +version: 1.57.0 +type: npm +summary: Theia - Task extension. This extension adds support for executing raw or + terminal processes in the backend. +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/terminal.dep.yml b/.licenses/npm/@theia/terminal.dep.yml new file mode 100644 index 000000000..832849a5c --- /dev/null +++ b/.licenses/npm/@theia/terminal.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/terminal" +version: 1.57.0 +type: npm +summary: Theia - Terminal Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/test.dep.yml b/.licenses/npm/@theia/test.dep.yml new file mode 100644 index 000000000..9413105a5 --- /dev/null +++ b/.licenses/npm/@theia/test.dep.yml @@ -0,0 +1,9 @@ +--- +name: "@theia/test" +version: 1.57.0 +type: npm +summary: Theia - Test Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: [] +notices: [] diff --git a/.licenses/npm/@theia/timeline.dep.yml b/.licenses/npm/@theia/timeline.dep.yml new file mode 100644 index 000000000..0fc5883cd --- /dev/null +++ b/.licenses/npm/@theia/timeline.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/timeline" +version: 1.57.0 +type: npm +summary: Theia - Timeline Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/typehierarchy.dep.yml b/.licenses/npm/@theia/typehierarchy.dep.yml new file mode 100644 index 000000000..e3e867a7f --- /dev/null +++ b/.licenses/npm/@theia/typehierarchy.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/typehierarchy" +version: 1.57.0 +type: npm +summary: Theia - Type Hierarchy Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/userstorage.dep.yml b/.licenses/npm/@theia/userstorage.dep.yml new file mode 100644 index 000000000..07eab0ad6 --- /dev/null +++ b/.licenses/npm/@theia/userstorage.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/userstorage" +version: 1.57.0 +type: npm +summary: Theia - User Storage Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/variable-resolver.dep.yml b/.licenses/npm/@theia/variable-resolver.dep.yml new file mode 100644 index 000000000..a42973684 --- /dev/null +++ b/.licenses/npm/@theia/variable-resolver.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/variable-resolver" +version: 1.57.0 +type: npm +summary: Theia - Variable Resolver Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@theia/workspace.dep.yml b/.licenses/npm/@theia/workspace.dep.yml new file mode 100644 index 000000000..ec86ca7a0 --- /dev/null +++ b/.licenses/npm/@theia/workspace.dep.yml @@ -0,0 +1,11 @@ +--- +name: "@theia/workspace" +version: 1.57.0 +type: npm +summary: Theia - Workspace Extension +homepage: https://github.com/eclipse-theia/theia +license: other +licenses: +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/@tippyjs/react.dep.yml b/.licenses/npm/@tippyjs/react.dep.yml new file mode 100644 index 000000000..e2199fce7 --- /dev/null +++ b/.licenses/npm/@tippyjs/react.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@tippyjs/react" +version: 4.2.6 +type: npm +summary: React component for Tippy.js +homepage: https://github.com/atomiks/tippyjs-react#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 atomiks + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@tootallnate/once-1.1.2.dep.yml b/.licenses/npm/@tootallnate/once-1.1.2.dep.yml new file mode 100644 index 000000000..85f07ef03 --- /dev/null +++ b/.licenses/npm/@tootallnate/once-1.1.2.dep.yml @@ -0,0 +1,30 @@ +--- +name: "@tootallnate/once" +version: 1.1.2 +type: npm +summary: Creates a Promise that waits for a single event +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@tootallnate/once-2.0.0.dep.yml b/.licenses/npm/@tootallnate/once-2.0.0.dep.yml new file mode 100644 index 000000000..874f28569 --- /dev/null +++ b/.licenses/npm/@tootallnate/once-2.0.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@tootallnate/once" +version: 2.0.0 +type: npm +summary: Creates a Promise that waits for a single event +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Nathan Rajlich + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@types/auth0-js.dep.yml b/.licenses/npm/@types/auth0-js.dep.yml new file mode 100644 index 000000000..9d135597e --- /dev/null +++ b/.licenses/npm/@types/auth0-js.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/auth0-js" +version: 9.21.6 +type: npm +summary: TypeScript definitions for auth0-js +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/auth0-js +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/body-parser.dep.yml b/.licenses/npm/@types/body-parser.dep.yml new file mode 100644 index 000000000..de44d976e --- /dev/null +++ b/.licenses/npm/@types/body-parser.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/body-parser" +version: 1.19.5 +type: npm +summary: TypeScript definitions for body-parser +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/btoa.dep.yml b/.licenses/npm/@types/btoa.dep.yml new file mode 100644 index 000000000..e14869872 --- /dev/null +++ b/.licenses/npm/@types/btoa.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/btoa" +version: 1.2.5 +type: npm +summary: TypeScript definitions for btoa +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/btoa +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/cacheable-request.dep.yml b/.licenses/npm/@types/cacheable-request.dep.yml new file mode 100644 index 000000000..df88584bb --- /dev/null +++ b/.licenses/npm/@types/cacheable-request.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/cacheable-request" +version: 6.0.3 +type: npm +summary: TypeScript definitions for cacheable-request +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cacheable-request +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/connect.dep.yml b/.licenses/npm/@types/connect.dep.yml new file mode 100644 index 000000000..3277dc1c6 --- /dev/null +++ b/.licenses/npm/@types/connect.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/connect" +version: 3.4.38 +type: npm +summary: TypeScript definitions for connect +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/cookie.dep.yml b/.licenses/npm/@types/cookie.dep.yml new file mode 100644 index 000000000..d79eb626a --- /dev/null +++ b/.licenses/npm/@types/cookie.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/cookie" +version: 0.3.3 +type: npm +summary: TypeScript definitions for cookie +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/cors.dep.yml b/.licenses/npm/@types/cors.dep.yml new file mode 100644 index 000000000..20ae3aced --- /dev/null +++ b/.licenses/npm/@types/cors.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/cors" +version: 2.8.17 +type: npm +summary: TypeScript definitions for cors +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/dateformat.dep.yml b/.licenses/npm/@types/dateformat.dep.yml new file mode 100644 index 000000000..3a70874cb --- /dev/null +++ b/.licenses/npm/@types/dateformat.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/dateformat" +version: 3.0.1 +type: npm +summary: TypeScript definitions for dateformat +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/debug.dep.yml b/.licenses/npm/@types/debug.dep.yml new file mode 100644 index 000000000..94d9072ac --- /dev/null +++ b/.licenses/npm/@types/debug.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/debug" +version: 4.1.12 +type: npm +summary: TypeScript definitions for debug +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/diff.dep.yml b/.licenses/npm/@types/diff.dep.yml new file mode 100644 index 000000000..78254e8a1 --- /dev/null +++ b/.licenses/npm/@types/diff.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/diff" +version: 5.2.3 +type: npm +summary: TypeScript definitions for diff +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/diff +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/dompurify.dep.yml b/.licenses/npm/@types/dompurify.dep.yml new file mode 100644 index 000000000..8829afef1 --- /dev/null +++ b/.licenses/npm/@types/dompurify.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/dompurify" +version: 2.4.0 +type: npm +summary: TypeScript definitions for DOM Purify +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/dompurify +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/express-4.17.21.dep.yml b/.licenses/npm/@types/express-4.17.21.dep.yml new file mode 100644 index 000000000..60e817c8a --- /dev/null +++ b/.licenses/npm/@types/express-4.17.21.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/express" +version: 4.17.21 +type: npm +summary: TypeScript definitions for express +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/express-5.0.0.dep.yml b/.licenses/npm/@types/express-5.0.0.dep.yml new file mode 100644 index 000000000..b3f3d53ea --- /dev/null +++ b/.licenses/npm/@types/express-5.0.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/express" +version: 5.0.0 +type: npm +summary: TypeScript definitions for express +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/express-serve-static-core-4.19.6.dep.yml b/.licenses/npm/@types/express-serve-static-core-4.19.6.dep.yml new file mode 100644 index 000000000..9dff98242 --- /dev/null +++ b/.licenses/npm/@types/express-serve-static-core-4.19.6.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/express-serve-static-core" +version: 4.19.6 +type: npm +summary: TypeScript definitions for express-serve-static-core +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-serve-static-core +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/express-serve-static-core-5.0.6.dep.yml b/.licenses/npm/@types/express-serve-static-core-5.0.6.dep.yml new file mode 100644 index 000000000..ec30c6e41 --- /dev/null +++ b/.licenses/npm/@types/express-serve-static-core-5.0.6.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/express-serve-static-core" +version: 5.0.6 +type: npm +summary: TypeScript definitions for express-serve-static-core +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-serve-static-core +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/fs-extra.dep.yml b/.licenses/npm/@types/fs-extra.dep.yml new file mode 100644 index 000000000..05cecbff7 --- /dev/null +++ b/.licenses/npm/@types/fs-extra.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/fs-extra" +version: 4.0.15 +type: npm +summary: TypeScript definitions for fs-extra +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fs-extra +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/google-protobuf.dep.yml b/.licenses/npm/@types/google-protobuf.dep.yml new file mode 100644 index 000000000..6ba43f989 --- /dev/null +++ b/.licenses/npm/@types/google-protobuf.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/google-protobuf" +version: 3.15.12 +type: npm +summary: TypeScript definitions for google-protobuf +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google-protobuf +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/hast.dep.yml b/.licenses/npm/@types/hast.dep.yml new file mode 100644 index 000000000..a4f98eef9 --- /dev/null +++ b/.licenses/npm/@types/hast.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/hast" +version: 2.3.10 +type: npm +summary: TypeScript definitions for hast +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hast +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/http-cache-semantics.dep.yml b/.licenses/npm/@types/http-cache-semantics.dep.yml new file mode 100644 index 000000000..30e29d0cb --- /dev/null +++ b/.licenses/npm/@types/http-cache-semantics.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/http-cache-semantics" +version: 4.0.4 +type: npm +summary: TypeScript definitions for http-cache-semantics +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-cache-semantics +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/http-errors.dep.yml b/.licenses/npm/@types/http-errors.dep.yml new file mode 100644 index 000000000..1a612dd86 --- /dev/null +++ b/.licenses/npm/@types/http-errors.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/http-errors" +version: 2.0.4 +type: npm +summary: TypeScript definitions for http-errors +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-errors +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/js-yaml.dep.yml b/.licenses/npm/@types/js-yaml.dep.yml new file mode 100644 index 000000000..43750c179 --- /dev/null +++ b/.licenses/npm/@types/js-yaml.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/js-yaml" +version: 3.12.10 +type: npm +summary: TypeScript definitions for js-yaml +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/js-yaml +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/jsdom.dep.yml b/.licenses/npm/@types/jsdom.dep.yml new file mode 100644 index 000000000..c04193f1d --- /dev/null +++ b/.licenses/npm/@types/jsdom.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/jsdom" +version: 21.1.7 +type: npm +summary: TypeScript definitions for jsdom +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsdom +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/keyv.dep.yml b/.licenses/npm/@types/keyv.dep.yml new file mode 100644 index 000000000..bb3324904 --- /dev/null +++ b/.licenses/npm/@types/keyv.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/keyv" +version: 3.1.4 +type: npm +summary: TypeScript definitions for keyv +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/keyv +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/linkify-it.dep.yml b/.licenses/npm/@types/linkify-it.dep.yml new file mode 100644 index 000000000..93ce854ef --- /dev/null +++ b/.licenses/npm/@types/linkify-it.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/linkify-it" +version: 5.0.0 +type: npm +summary: TypeScript definitions for linkify-it +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/linkify-it +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/lodash.debounce-4.0.3.dep.yml b/.licenses/npm/@types/lodash.debounce-4.0.3.dep.yml new file mode 100644 index 000000000..03a716c6d --- /dev/null +++ b/.licenses/npm/@types/lodash.debounce-4.0.3.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/lodash.debounce" +version: 4.0.3 +type: npm +summary: TypeScript definitions for lodash.debounce +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/lodash.debounce-4.0.9.dep.yml b/.licenses/npm/@types/lodash.debounce-4.0.9.dep.yml new file mode 100644 index 000000000..a309f87d8 --- /dev/null +++ b/.licenses/npm/@types/lodash.debounce-4.0.9.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/lodash.debounce" +version: 4.0.9 +type: npm +summary: TypeScript definitions for lodash.debounce +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash.debounce +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/lodash.dep.yml b/.licenses/npm/@types/lodash.dep.yml new file mode 100644 index 000000000..69fd43953 --- /dev/null +++ b/.licenses/npm/@types/lodash.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/lodash" +version: 4.17.16 +type: npm +summary: TypeScript definitions for lodash +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/lodash.throttle.dep.yml b/.licenses/npm/@types/lodash.throttle.dep.yml new file mode 100644 index 000000000..ab7a6dd95 --- /dev/null +++ b/.licenses/npm/@types/lodash.throttle.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/lodash.throttle" +version: 4.1.9 +type: npm +summary: TypeScript definitions for lodash.throttle +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash.throttle +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/markdown-it.dep.yml b/.licenses/npm/@types/markdown-it.dep.yml new file mode 100644 index 000000000..ae68a5f6f --- /dev/null +++ b/.licenses/npm/@types/markdown-it.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/markdown-it" +version: 12.2.3 +type: npm +summary: TypeScript definitions for markdown-it +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/markdown-it +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/mdast.dep.yml b/.licenses/npm/@types/mdast.dep.yml new file mode 100644 index 000000000..a1df671b0 --- /dev/null +++ b/.licenses/npm/@types/mdast.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/mdast" +version: 3.0.15 +type: npm +summary: TypeScript definitions for mdast +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/mdurl.dep.yml b/.licenses/npm/@types/mdurl.dep.yml new file mode 100644 index 000000000..f8b9a6390 --- /dev/null +++ b/.licenses/npm/@types/mdurl.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/mdurl" +version: 2.0.0 +type: npm +summary: TypeScript definitions for mdurl +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdurl +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/mime-1.3.5.dep.yml b/.licenses/npm/@types/mime-1.3.5.dep.yml new file mode 100644 index 000000000..86839c644 --- /dev/null +++ b/.licenses/npm/@types/mime-1.3.5.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/mime" +version: 1.3.5 +type: npm +summary: TypeScript definitions for mime +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/mime-2.0.3.dep.yml b/.licenses/npm/@types/mime-2.0.3.dep.yml new file mode 100644 index 000000000..09070db89 --- /dev/null +++ b/.licenses/npm/@types/mime-2.0.3.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/mime" +version: 2.0.3 +type: npm +summary: TypeScript definitions for mime +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/ms.dep.yml b/.licenses/npm/@types/ms.dep.yml new file mode 100644 index 000000000..6fb53d956 --- /dev/null +++ b/.licenses/npm/@types/ms.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/ms" +version: 2.1.0 +type: npm +summary: TypeScript definitions for ms +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ms +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/multer.dep.yml b/.licenses/npm/@types/multer.dep.yml new file mode 100644 index 000000000..64ce54d4c --- /dev/null +++ b/.licenses/npm/@types/multer.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/multer" +version: 1.4.12 +type: npm +summary: TypeScript definitions for multer +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/multer +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/node-20.17.24.dep.yml b/.licenses/npm/@types/node-20.17.24.dep.yml new file mode 100644 index 000000000..9c8d5aff2 --- /dev/null +++ b/.licenses/npm/@types/node-20.17.24.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/node" +version: 20.17.24 +type: npm +summary: TypeScript definitions for node +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/node-22.13.10.dep.yml b/.licenses/npm/@types/node-22.13.10.dep.yml new file mode 100644 index 000000000..9c5c65d80 --- /dev/null +++ b/.licenses/npm/@types/node-22.13.10.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/node" +version: 22.13.10 +type: npm +summary: TypeScript definitions for node +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/node-fetch.dep.yml b/.licenses/npm/@types/node-fetch.dep.yml new file mode 100644 index 000000000..45e9b72ff --- /dev/null +++ b/.licenses/npm/@types/node-fetch.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/node-fetch" +version: 2.6.12 +type: npm +summary: TypeScript definitions for node-fetch +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-fetch +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/p-queue.dep.yml b/.licenses/npm/@types/p-queue.dep.yml new file mode 100644 index 000000000..a6ffb358c --- /dev/null +++ b/.licenses/npm/@types/p-queue.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/p-queue" +version: 2.3.2 +type: npm +summary: TypeScript definitions for p-queue +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/parse-json.dep.yml b/.licenses/npm/@types/parse-json.dep.yml new file mode 100644 index 000000000..211541ab0 --- /dev/null +++ b/.licenses/npm/@types/parse-json.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/parse-json" +version: 4.0.2 +type: npm +summary: TypeScript definitions for parse-json +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse-json +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/prop-types.dep.yml b/.licenses/npm/@types/prop-types.dep.yml new file mode 100644 index 000000000..d71641c05 --- /dev/null +++ b/.licenses/npm/@types/prop-types.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/prop-types" +version: 15.7.14 +type: npm +summary: TypeScript definitions for prop-types +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/ps-tree.dep.yml b/.licenses/npm/@types/ps-tree.dep.yml new file mode 100644 index 000000000..2b8793958 --- /dev/null +++ b/.licenses/npm/@types/ps-tree.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/ps-tree" +version: 1.1.6 +type: npm +summary: TypeScript definitions for ps-tree +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ps-tree +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/qs.dep.yml b/.licenses/npm/@types/qs.dep.yml new file mode 100644 index 000000000..d180009de --- /dev/null +++ b/.licenses/npm/@types/qs.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/qs" +version: 6.9.18 +type: npm +summary: TypeScript definitions for qs +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/range-parser.dep.yml b/.licenses/npm/@types/range-parser.dep.yml new file mode 100644 index 000000000..ad6482978 --- /dev/null +++ b/.licenses/npm/@types/range-parser.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/range-parser" +version: 1.2.7 +type: npm +summary: TypeScript definitions for range-parser +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/react-dom.dep.yml b/.licenses/npm/@types/react-dom.dep.yml new file mode 100644 index 000000000..787fa5baa --- /dev/null +++ b/.licenses/npm/@types/react-dom.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/react-dom" +version: 18.3.1 +type: npm +summary: TypeScript definitions for react-dom +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/react-transition-group.dep.yml b/.licenses/npm/@types/react-transition-group.dep.yml new file mode 100644 index 000000000..b9e18af8e --- /dev/null +++ b/.licenses/npm/@types/react-transition-group.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/react-transition-group" +version: 4.4.12 +type: npm +summary: TypeScript definitions for react-transition-group +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-transition-group +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/react.dep.yml b/.licenses/npm/@types/react.dep.yml new file mode 100644 index 000000000..0922b5100 --- /dev/null +++ b/.licenses/npm/@types/react.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/react" +version: 18.3.1 +type: npm +summary: TypeScript definitions for react +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/responselike.dep.yml b/.licenses/npm/@types/responselike.dep.yml new file mode 100644 index 000000000..31a6da5ec --- /dev/null +++ b/.licenses/npm/@types/responselike.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/responselike" +version: 1.0.3 +type: npm +summary: TypeScript definitions for responselike +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/responselike +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/route-parser.dep.yml b/.licenses/npm/@types/route-parser.dep.yml new file mode 100644 index 000000000..0589c2f4c --- /dev/null +++ b/.licenses/npm/@types/route-parser.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/route-parser" +version: 0.1.7 +type: npm +summary: TypeScript definitions for route-parser +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/route-parser +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/safer-buffer.dep.yml b/.licenses/npm/@types/safer-buffer.dep.yml new file mode 100644 index 000000000..2dd19bd4f --- /dev/null +++ b/.licenses/npm/@types/safer-buffer.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/safer-buffer" +version: 2.1.3 +type: npm +summary: TypeScript definitions for safer-buffer +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/safer-buffer +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/semver.dep.yml b/.licenses/npm/@types/semver.dep.yml new file mode 100644 index 000000000..12d263a80 --- /dev/null +++ b/.licenses/npm/@types/semver.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/semver" +version: 7.5.8 +type: npm +summary: TypeScript definitions for semver +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/send.dep.yml b/.licenses/npm/@types/send.dep.yml new file mode 100644 index 000000000..cce774c2c --- /dev/null +++ b/.licenses/npm/@types/send.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/send" +version: 0.17.4 +type: npm +summary: TypeScript definitions for send +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/send +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/serve-static.dep.yml b/.licenses/npm/@types/serve-static.dep.yml new file mode 100644 index 000000000..f3cfe5e92 --- /dev/null +++ b/.licenses/npm/@types/serve-static.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/serve-static" +version: 1.15.7 +type: npm +summary: TypeScript definitions for serve-static +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-static +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/tar-fs.dep.yml b/.licenses/npm/@types/tar-fs.dep.yml new file mode 100644 index 000000000..2cb39c8f6 --- /dev/null +++ b/.licenses/npm/@types/tar-fs.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/tar-fs" +version: 1.16.3 +type: npm +summary: TypeScript definitions for tar-fs +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/tar-stream.dep.yml b/.licenses/npm/@types/tar-stream.dep.yml new file mode 100644 index 000000000..278315dac --- /dev/null +++ b/.licenses/npm/@types/tar-stream.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/tar-stream" +version: 3.1.3 +type: npm +summary: TypeScript definitions for tar-stream +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tar-stream +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/temp.dep.yml b/.licenses/npm/@types/temp.dep.yml new file mode 100644 index 000000000..fcf5eb419 --- /dev/null +++ b/.licenses/npm/@types/temp.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/temp" +version: 0.8.34 +type: npm +summary: TypeScript definitions for temp +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/tough-cookie.dep.yml b/.licenses/npm/@types/tough-cookie.dep.yml new file mode 100644 index 000000000..ea175f1a1 --- /dev/null +++ b/.licenses/npm/@types/tough-cookie.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/tough-cookie" +version: 4.0.5 +type: npm +summary: TypeScript definitions for tough-cookie +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tough-cookie +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/trusted-types.dep.yml b/.licenses/npm/@types/trusted-types.dep.yml new file mode 100644 index 000000000..c76143b8c --- /dev/null +++ b/.licenses/npm/@types/trusted-types.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/trusted-types" +version: 2.0.7 +type: npm +summary: TypeScript definitions for trusted-types +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/trusted-types +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/unist.dep.yml b/.licenses/npm/@types/unist.dep.yml new file mode 100644 index 000000000..9c7315476 --- /dev/null +++ b/.licenses/npm/@types/unist.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/unist" +version: 2.0.11 +type: npm +summary: TypeScript definitions for unist +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/uuid.dep.yml b/.licenses/npm/@types/uuid.dep.yml new file mode 100644 index 000000000..c6533c9be --- /dev/null +++ b/.licenses/npm/@types/uuid.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/uuid" +version: 9.0.8 +type: npm +summary: TypeScript definitions for uuid +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/vscode.dep.yml b/.licenses/npm/@types/vscode.dep.yml new file mode 100644 index 000000000..09c149018 --- /dev/null +++ b/.licenses/npm/@types/vscode.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/vscode" +version: 1.98.0 +type: npm +summary: TypeScript definitions for vscode +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vscode +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/write-json-file.dep.yml b/.licenses/npm/@types/write-json-file.dep.yml new file mode 100644 index 000000000..7353a65e0 --- /dev/null +++ b/.licenses/npm/@types/write-json-file.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/write-json-file" +version: 2.2.1 +type: npm +summary: TypeScript definitions for write-json-file +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/ws.dep.yml b/.licenses/npm/@types/ws.dep.yml new file mode 100644 index 000000000..f56c1d1cb --- /dev/null +++ b/.licenses/npm/@types/ws.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/ws" +version: 8.18.0 +type: npm +summary: TypeScript definitions for ws +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/yargs-parser.dep.yml b/.licenses/npm/@types/yargs-parser.dep.yml new file mode 100644 index 000000000..b9c0d7e27 --- /dev/null +++ b/.licenses/npm/@types/yargs-parser.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/yargs-parser" +version: 21.0.3 +type: npm +summary: TypeScript definitions for yargs-parser +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs-parser +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/yargs.dep.yml b/.licenses/npm/@types/yargs.dep.yml new file mode 100644 index 000000000..f9780d1cb --- /dev/null +++ b/.licenses/npm/@types/yargs.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/yargs" +version: 15.0.19 +type: npm +summary: TypeScript definitions for yargs +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yargs +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@types/yauzl.dep.yml b/.licenses/npm/@types/yauzl.dep.yml new file mode 100644 index 000000000..fc01e0f12 --- /dev/null +++ b/.licenses/npm/@types/yauzl.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@types/yauzl" +version: 2.10.3 +type: npm +summary: TypeScript definitions for yauzl +homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/yauzl +license: mit +licenses: +- sources: LICENSE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@virtuoso.dev/react-urx.dep.yml b/.licenses/npm/@virtuoso.dev/react-urx.dep.yml new file mode 100644 index 000000000..a03acea1f --- /dev/null +++ b/.licenses/npm/@virtuoso.dev/react-urx.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@virtuoso.dev/react-urx" +version: 0.2.13 +type: npm +summary: +homepage: https://urx.virtuoso.dev/ +license: mit +licenses: +- sources: LICENSE + text: |- + MIT License + + Copyright (c) 2020 Petyo Ivanov + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@virtuoso.dev/urx.dep.yml b/.licenses/npm/@virtuoso.dev/urx.dep.yml new file mode 100644 index 000000000..dfc75a68d --- /dev/null +++ b/.licenses/npm/@virtuoso.dev/urx.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@virtuoso.dev/urx" +version: 0.2.13 +type: npm +summary: +homepage: https://urx.virtuoso.dev/ +license: mit +licenses: +- sources: LICENSE + text: |- + MIT License + + Copyright (c) 2020 Petyo Ivanov + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/@vscode/codicons.dep.yml b/.licenses/npm/@vscode/codicons.dep.yml new file mode 100644 index 000000000..904e7f674 --- /dev/null +++ b/.licenses/npm/@vscode/codicons.dep.yml @@ -0,0 +1,261 @@ +--- +name: "@vscode/codicons" +version: 0.0.36 +type: npm +summary: The icon font for Visual Studio Code +homepage: +license: other +licenses: +- sources: LICENSE + text: "\uFEFFAttribution 4.0 International\n\n=======================================================================\n\nCreative + Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide + legal services or legal advice. Distribution of\nCreative Commons public licenses + does not create a lawyer-client or\nother relationship. Creative Commons makes + its licenses and related\ninformation available on an \"as-is\" basis. Creative + Commons gives no\nwarranties regarding its licenses, any material licensed under + their\nterms and conditions, or any related information. Creative Commons\ndisclaims + all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing + Creative Commons Public Licenses\n\nCreative Commons public licenses provide a + standard set of terms and\nconditions that creators and other rights holders may + use to share\noriginal works of authorship and other material subject to copyright\nand + certain other rights specified in the public license below. The\nfollowing considerations + are for informational purposes only, are not\nexhaustive, and do not form part + of our licenses.\n\n Considerations for licensors: Our public licenses are\n + \ intended for use by those authorized to give the public\n permission + to use material in ways otherwise restricted by\n copyright and certain other + rights. Our licenses are\n irrevocable. Licensors should read and understand + the terms\n and conditions of the license they choose before applying it.\n + \ Licensors should also secure all rights necessary before\n applying our + licenses so that the public can reuse the\n material as expected. Licensors + should clearly mark any\n material not subject to the license. This includes + other CC-\n licensed material, or material used under an exception or\n limitation + to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n + \ Considerations for the public: By using one of our public\n licenses, + a licensor grants the public permission to use the\n licensed material under + specified terms and conditions. If\n the licensor's permission is not necessary + for any reason--for\n example, because of any applicable exception or limitation + to\n copyright--then that use is not regulated by the license. Our\n licenses + grant only permissions under copyright and certain\n other rights that a licensor + has authority to grant. Use of\n the licensed material may still be restricted + for other\n reasons, including because others have copyright or other\n rights + in the material. A licensor may make special requests,\n such as asking that + all changes be marked or described.\n Although not required by our licenses, + you are encouraged to\n respect those requests where reasonable. More_considerations\n + \ for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative + Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed + Rights (defined below), You accept and agree\nto be bound by the terms and conditions + of this Creative Commons\nAttribution 4.0 International Public License (\"Public + License\"). To the\nextent this Public License may be interpreted as a contract, + You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese + terms and conditions, and the Licensor grants You such rights in\nconsideration + of benefits the Licensor receives from making the\nLicensed Material available + under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted + Material means material subject to Copyright and Similar\n Rights that is + derived from or based upon the Licensed Material\n and in which the Licensed + Material is translated, altered,\n arranged, transformed, or otherwise modified + in a manner requiring\n permission under the Copyright and Similar Rights + held by the\n Licensor. For purposes of this Public License, where the Licensed\n + \ Material is a musical work, performance, or sound recording,\n Adapted + Material is always produced where the Licensed Material is\n synched in timed + relation with a moving image.\n\n b. Adapter's License means the license You + apply to Your Copyright\n and Similar Rights in Your contributions to Adapted + Material in\n accordance with the terms and conditions of this Public License.\n\n + \ c. Copyright and Similar Rights means copyright and/or similar rights\n closely + related to copyright including, without limitation,\n performance, broadcast, + sound recording, and Sui Generis Database\n Rights, without regard to how + the rights are labeled or\n categorized. For purposes of this Public License, + the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n + \ Rights.\n\n d. Effective Technological Measures means those measures that, + in the\n absence of proper authority, may not be circumvented under laws\n + \ fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty + adopted on December 20, 1996, and/or similar international\n agreements.\n\n + \ e. Exceptions and Limitations means fair use, fair dealing, and/or\n any + other exception or limitation to Copyright and Similar Rights\n that applies + to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic + or literary work, database,\n or other material to which the Licensor applied + this Public\n License.\n\n g. Licensed Rights means the rights granted to + You subject to the\n terms and conditions of this Public License, which are + limited to\n all Copyright and Similar Rights that apply to Your use of the\n + \ Licensed Material and that the Licensor has authority to license.\n\n h. + Licensor means the individual(s) or entity(ies) granting rights\n under this + Public License.\n\n i. Share means to provide material to the public by any means + or\n process that requires permission under the Licensed Rights, such\n as + reproduction, public display, public performance, distribution,\n dissemination, + communication, or importation, and to make material\n available to the public + including in ways that members of the\n public may access the material from + a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database + Rights means rights other than copyright\n resulting from Directive 96/9/EC + of the European Parliament and of\n the Council of 11 March 1996 on the legal + protection of databases,\n as amended and/or succeeded, as well as other essentially\n + \ equivalent rights anywhere in the world.\n\n k. You means the individual + or entity exercising the Licensed Rights\n under this Public License. Your + has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n + \ 1. Subject to the terms and conditions of this Public License,\n the + Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, + non-exclusive, irrevocable license to\n exercise the Licensed Rights + in the Licensed Material to:\n\n a. reproduce and Share the Licensed + Material, in whole or\n in part; and\n\n b. produce, + reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. + For the avoidance of doubt, where\n Exceptions and Limitations apply + to Your use, this Public\n License does not apply, and You do not need + to comply with\n its terms and conditions.\n\n 3. Term. The term + of this Public License is specified in Section\n 6(a).\n\n 4. Media + and formats; technical modifications allowed. The\n Licensor authorizes + You to exercise the Licensed Rights in\n all media and formats whether + now known or hereafter created,\n and to make technical modifications + necessary to do so. The\n Licensor waives and/or agrees not to assert + any right or\n authority to forbid You from making technical modifications\n + \ necessary to exercise the Licensed Rights, including\n technical + modifications necessary to circumvent Effective\n Technological Measures. + For purposes of this Public License,\n simply making modifications authorized + by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. + Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. + Every\n recipient of the Licensed Material automatically\n receives + an offer from the Licensor to exercise the\n Licensed Rights under + the terms and conditions of this\n Public License.\n\n b. + No downstream restrictions. You may not offer or impose\n any additional + or different terms or conditions on, or\n apply any Effective Technological + Measures to, the\n Licensed Material if doing so restricts exercise + of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n + \ 6. No endorsement. Nothing in this Public License constitutes or\n may + be construed as permission to assert or imply that You\n are, or that + Your use of the Licensed Material is, connected\n with, or sponsored, + endorsed, or granted official status by,\n the Licensor or others designated + to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. + Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n + \ licensed under this Public License, nor are publicity,\n privacy, + and/or other similar personality rights; however, to\n the extent possible, + the Licensor waives and/or agrees not to\n assert any such rights held + by the Licensor to the limited\n extent necessary to allow You to exercise + the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark + rights are not licensed under this\n Public License.\n\n 3. To + the extent possible, the Licensor waives any right to\n collect royalties + from You for the exercise of the Licensed\n Rights, whether directly + or through a collecting society\n under any voluntary or waivable statutory + or compulsory\n licensing scheme. In all other cases the Licensor expressly\n + \ reserves any right to collect such royalties.\n\n\nSection 3 -- License + Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject + to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the + Licensed Material (including in modified\n form), You must:\n\n a. + retain the following if it is supplied by the Licensor\n with the + Licensed Material:\n\n i. identification of the creator(s) of + the Licensed\n Material and any others designated to receive\n + \ attribution, in any reasonable manner requested by\n the + Licensor (including by pseudonym if\n designated);\n\n ii. + a copyright notice;\n\n iii. a notice that refers to this Public + License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n + \ v. a URI or hyperlink to the Licensed Material to the\n extent + reasonably practicable;\n\n b. indicate if You modified the Licensed + Material and\n retain an indication of any previous modifications; + and\n\n c. indicate the Licensed Material is licensed under this\n + \ Public License, and include the text of, or the URI or\n hyperlink + to, this Public License.\n\n 2. You may satisfy the conditions in Section + 3(a)(1) in any\n reasonable manner based on the medium, means, and context + in\n which You Share the Licensed Material. For example, it may be\n + \ reasonable to satisfy the conditions by providing a URI or\n hyperlink + to a resource that includes the required\n information.\n\n 3. + If requested by the Licensor, You must remove any of the\n information + required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n + \ 4. If You Share Adapted Material You produce, the Adapter's\n License + You apply must not prevent recipients of the Adapted\n Material from + complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere + the Licensed Rights include Sui Generis Database Rights that\napply to Your use + of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) + grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n + \ portion of the contents of the database;\n\n b. if You include all or a + substantial portion of the database\n contents in a database in which You + have Sui Generis Database\n Rights, then the database in which You have Sui + Generis Database\n Rights (but not its individual contents) is Adapted Material; + and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n + \ all or a substantial portion of the contents of the database.\n\nFor the + avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations + under this Public License where the Licensed\nRights include other Copyright and + Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n + \ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT + POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, + AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED + MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, + WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A + PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n + \ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN + OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL + OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, + IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, + WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n + \ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, + EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED + MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH + LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS + NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n + \ c. The disclaimer of warranties and limitation of liability provided\n above + shall be interpreted in a manner that, to the extent\n possible, most closely + approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection + 6 -- Term and Termination.\n\n a. This Public License applies for the term of + the Copyright and\n Similar Rights licensed here. However, if You fail to + comply with\n this Public License, then Your rights under this Public License\n + \ terminate automatically.\n\n b. Where Your right to use the Licensed Material + has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically + as of the date the violation is cured, provided\n it is cured within + 30 days of Your discovery of the\n violation; or\n\n 2. upon express + reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section + 6(b) does not affect any\n right the Licensor may have to seek remedies for + Your violations\n of this Public License.\n\n c. For the avoidance of doubt, + the Licensor may also offer the\n Licensed Material under separate terms or + conditions or stop\n distributing the Licensed Material at any time; however, + doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, + 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- + Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional + or different\n terms or conditions communicated by You unless expressly agreed.\n\n + \ b. Any arrangements, understandings, or agreements regarding the\n Licensed + Material not stated herein are separate from and\n independent of the terms + and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. + For the avoidance of doubt, this Public License does not, and\n shall not + be interpreted to, reduce, limit, restrict, or impose\n conditions on any + use of the Licensed Material that could lawfully\n be made without permission + under this Public License.\n\n b. To the extent possible, if any provision of + this Public License is\n deemed unenforceable, it shall be automatically reformed + to the\n minimum extent necessary to make it enforceable. If the provision\n + \ cannot be reformed, it shall be severed from this Public License\n without + affecting the enforceability of the remaining terms and\n conditions.\n\n + \ c. No term or condition of this Public License will be waived and no\n failure + to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. + Nothing in this Public License constitutes or may be interpreted\n as a limitation + upon, or waiver of, any privileges and immunities\n that apply to the Licensor + or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative + Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons + may elect to apply one of\nits public licenses to material it publishes and in + those instances\nwill be considered the “Licensor.” The text of the Creative Commons\npublic + licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. + Except for the limited purpose of indicating that\nmaterial is shared under a + Creative Commons public license or as\notherwise permitted by the Creative Commons + policies published at\ncreativecommons.org/policies, Creative Commons does not + authorize the\nuse of the trademark \"Creative Commons\" or any other trademark + or logo\nof Creative Commons without its prior written consent including,\nwithout + limitation, in connection with any unauthorized modifications\nto any of its public + licenses or any other arrangements,\nunderstandings, or agreements concerning + use of licensed material. For\nthe avoidance of doubt, this paragraph does not + form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org." +- sources: LICENSE-CODE + text: |2 + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE +notices: [] diff --git a/.licenses/npm/@vscode/debugprotocol.dep.yml b/.licenses/npm/@vscode/debugprotocol.dep.yml new file mode 100644 index 000000000..3402dbff8 --- /dev/null +++ b/.licenses/npm/@vscode/debugprotocol.dep.yml @@ -0,0 +1,26 @@ +--- +name: "@vscode/debugprotocol" +version: 1.68.0 +type: npm +summary: Npm module with declarations for the Visual Studio Code debug protocol +homepage: +license: other +licenses: +- sources: License.txt + text: "Copyright (c) Microsoft Corporation\n\nAll rights reserved. \n\nMIT License\n\nPermission + is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the \"Software\"), to deal in the Software + without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and + to permit persons to whom the Software is furnished to do so, subject to the following + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" +- sources: README.md + text: "[MIT](https://github.com/microsoft/vscode-debugadapter-node/blob/main/License.txt)" +notices: [] diff --git a/.licenses/npm/@vscode/proxy-agent.dep.yml b/.licenses/npm/@vscode/proxy-agent.dep.yml new file mode 100644 index 000000000..cd50fd1cd --- /dev/null +++ b/.licenses/npm/@vscode/proxy-agent.dep.yml @@ -0,0 +1,27 @@ +--- +name: "@vscode/proxy-agent" +version: 0.13.2 +type: npm +summary: NodeJS http(s) agent implementation for VS Code +homepage: https://github.com/microsoft/vscode-proxy-agent +license: mit +licenses: +- sources: LICENSE.md + text: "MIT License\n\nCopyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>\nCopyright + (c) 2015 Félicien François <felicien@tweakstyle.com>\nCopyright (c) Microsoft + Corporation. \n\nPermission is hereby granted, free of charge, to any person obtaining\na + copy of this software and associated documentation files (the\n'Software'), to + deal in the Software without restriction, including\nwithout limitation the rights + to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies + of the Software, and to\npermit persons to whom the Software is furnished to do + so, subject to\nthe following conditions:\n\nThe above copyright notice and this + permission notice shall be\nincluded in all copies or substantial portions of + the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" +- sources: README.md + text: "[MIT](LICENSE.md)" +notices: [] diff --git a/.licenses/npm/@vscode/ripgrep.dep.yml b/.licenses/npm/@vscode/ripgrep.dep.yml new file mode 100644 index 000000000..27b61fb2e --- /dev/null +++ b/.licenses/npm/@vscode/ripgrep.dep.yml @@ -0,0 +1,24 @@ +--- +name: "@vscode/ripgrep" +version: 1.15.11 +type: npm +summary: A module for using ripgrep in a Node project +homepage: +license: other +licenses: +- sources: LICENSE + text: | + vscode-ripgrep + + Copyright (c) Microsoft Corporation + + All rights reserved. + + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/abab.dep.yml b/.licenses/npm/abab.dep.yml new file mode 100644 index 000000000..2d367a0d1 --- /dev/null +++ b/.licenses/npm/abab.dep.yml @@ -0,0 +1,24 @@ +--- +name: abab +version: 2.0.6 +type: npm +summary: WHATWG spec-compliant implementations of window.atob and window.btoa. +homepage: https://github.com/jsdom/abab#readme +license: other +licenses: +- sources: LICENSE.md + text: | + Copyright © 2019 W3C and Jeff Carpenter \ + + Both the original source code and new contributions in this repository are released under the [3-Clause BSD license](https://opensource.org/licenses/BSD-3-Clause). + + # The 3-Clause BSD License + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/abbrev.dep.yml b/.licenses/npm/abbrev.dep.yml new file mode 100644 index 000000000..81d12b14d --- /dev/null +++ b/.licenses/npm/abbrev.dep.yml @@ -0,0 +1,57 @@ +--- +name: abbrev +version: 1.1.1 +type: npm +summary: Like ruby's abbrev module, but in js +homepage: +license: other +licenses: +- sources: LICENSE + text: | + This software is dual-licensed under the ISC and MIT licenses. + You may use this software under EITHER of the following licenses. + + ---------- + + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ---------- + + Copyright Isaac Z. Schlueter and Contributors + All rights reserved. + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/accepts.dep.yml b/.licenses/npm/accepts.dep.yml new file mode 100644 index 000000000..7b369afd0 --- /dev/null +++ b/.licenses/npm/accepts.dep.yml @@ -0,0 +1,47 @@ +--- +name: accepts +version: 1.3.8 +type: npm +summary: Higher-level content negotiation +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/accepts/master + [coveralls-url]: https://coveralls.io/r/jshttp/accepts?branch=master + [github-actions-ci-image]: https://badgen.net/github/checks/jshttp/accepts/master?label=ci + [github-actions-ci-url]: https://github.com/jshttp/accepts/actions/workflows/ci.yml + [node-version-image]: https://badgen.net/npm/node/accepts + [node-version-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/accepts + [npm-url]: https://npmjs.org/package/accepts + [npm-version-image]: https://badgen.net/npm/v/accepts +notices: [] diff --git a/.licenses/npm/acorn-globals.dep.yml b/.licenses/npm/acorn-globals.dep.yml new file mode 100644 index 000000000..7acaf8d79 --- /dev/null +++ b/.licenses/npm/acorn-globals.dep.yml @@ -0,0 +1,32 @@ +--- +name: acorn-globals +version: 7.0.1 +type: npm +summary: Detect global variables in JavaScript using acorn +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + Copyright (c) 2014 Forbes Lindesay + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/acorn-walk.dep.yml b/.licenses/npm/acorn-walk.dep.yml new file mode 100644 index 000000000..7ca8a589e --- /dev/null +++ b/.licenses/npm/acorn-walk.dep.yml @@ -0,0 +1,32 @@ +--- +name: acorn-walk +version: 8.3.4 +type: npm +summary: ECMAScript (ESTree) AST walker +homepage: https://github.com/acornjs/acorn +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (C) 2012-2020 by various contributors (see AUTHORS) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/acorn.dep.yml b/.licenses/npm/acorn.dep.yml new file mode 100644 index 000000000..099cd3de9 --- /dev/null +++ b/.licenses/npm/acorn.dep.yml @@ -0,0 +1,32 @@ +--- +name: acorn +version: 8.14.1 +type: npm +summary: ECMAScript parser +homepage: https://github.com/acornjs/acorn +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (C) 2012-2022 by various contributors (see AUTHORS) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/advanced-mark.js.dep.yml b/.licenses/npm/advanced-mark.js.dep.yml new file mode 100644 index 000000000..ffb012187 --- /dev/null +++ b/.licenses/npm/advanced-mark.js.dep.yml @@ -0,0 +1,35 @@ +--- +name: advanced-mark.js +version: 2.6.0 +type: npm +summary: A fast JavaScript library to highlight any text on a browser page. It has + support for virtual DOMs like JSDOM. +homepage: https://github.com/angezid/advanced-mark.js +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2022 angezid + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE)" +notices: [] diff --git a/.licenses/npm/agent-base-6.0.2.dep.yml b/.licenses/npm/agent-base-6.0.2.dep.yml new file mode 100644 index 000000000..6642d6620 --- /dev/null +++ b/.licenses/npm/agent-base-6.0.2.dep.yml @@ -0,0 +1,39 @@ +--- +name: agent-base +version: 6.0.2 +type: npm +summary: Turn a function into an `http.Agent` instance +homepage: +license: mit +licenses: +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + [http-proxy-agent]: https://github.com/TooTallNate/node-http-proxy-agent + [https-proxy-agent]: https://github.com/TooTallNate/node-https-proxy-agent + [pac-proxy-agent]: https://github.com/TooTallNate/node-pac-proxy-agent + [socks-proxy-agent]: https://github.com/TooTallNate/node-socks-proxy-agent + [http.Agent]: https://nodejs.org/api/http.html#http_class_http_agent +notices: [] diff --git a/.licenses/npm/agent-base-7.1.3.dep.yml b/.licenses/npm/agent-base-7.1.3.dep.yml new file mode 100644 index 000000000..95054cd3a --- /dev/null +++ b/.licenses/npm/agent-base-7.1.3.dep.yml @@ -0,0 +1,33 @@ +--- +name: agent-base +version: 7.1.3 +type: npm +summary: Turn a function into an `http.Agent` instance +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/aggregate-error-3.1.0.dep.yml b/.licenses/npm/aggregate-error-3.1.0.dep.yml new file mode 100644 index 000000000..7f9e99412 --- /dev/null +++ b/.licenses/npm/aggregate-error-3.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: aggregate-error +version: 3.1.0 +type: npm +summary: Create an error from multiple errors +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/aggregate-error-4.0.1.dep.yml b/.licenses/npm/aggregate-error-4.0.1.dep.yml new file mode 100644 index 000000000..12802c633 --- /dev/null +++ b/.licenses/npm/aggregate-error-4.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: aggregate-error +version: 4.0.1 +type: npm +summary: Create an error from multiple errors +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ajv-6.12.6.dep.yml b/.licenses/npm/ajv-6.12.6.dep.yml new file mode 100644 index 000000000..7687002c9 --- /dev/null +++ b/.licenses/npm/ajv-6.12.6.dep.yml @@ -0,0 +1,36 @@ +--- +name: ajv +version: 6.12.6 +type: npm +summary: Another JSON Schema Validator +homepage: https://github.com/ajv-validator/ajv +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015-2017 Evgeny Poberezkin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: "[MIT](https://github.com/ajv-validator/ajv/blob/master/LICENSE)" +notices: [] +... diff --git a/.licenses/npm/ajv-8.17.1.dep.yml b/.licenses/npm/ajv-8.17.1.dep.yml new file mode 100644 index 000000000..2f68f18a5 --- /dev/null +++ b/.licenses/npm/ajv-8.17.1.dep.yml @@ -0,0 +1,36 @@ +--- +name: ajv +version: 8.17.1 +type: npm +summary: Another JSON Schema Validator +homepage: https://ajv.js.org +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015-2021 Evgeny Poberezkin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: "[MIT](./LICENSE)" +notices: [] +... diff --git a/.licenses/npm/ajv-formats.dep.yml b/.licenses/npm/ajv-formats.dep.yml new file mode 100644 index 000000000..833588fb5 --- /dev/null +++ b/.licenses/npm/ajv-formats.dep.yml @@ -0,0 +1,34 @@ +--- +name: ajv-formats +version: 2.1.1 +type: npm +summary: Format validation for Ajv v7+ +homepage: https://github.com/ajv-validator/ajv-formats#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Evgeny Poberezkin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/ajv-validator/ajv-formats/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/anser.dep.yml b/.licenses/npm/anser.dep.yml new file mode 100644 index 000000000..9552703cf --- /dev/null +++ b/.licenses/npm/anser.dep.yml @@ -0,0 +1,32 @@ +--- +name: anser +version: 2.3.2 +type: npm +summary: A low level parser for ANSI sequences. +homepage: https://github.com/IonicaBizau/anser#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2012-25 Ionică Bizău (https://ionicabizau.net) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/ansi-colors.dep.yml b/.licenses/npm/ansi-colors.dep.yml new file mode 100644 index 000000000..d67094f8e --- /dev/null +++ b/.licenses/npm/ansi-colors.dep.yml @@ -0,0 +1,42 @@ +--- +name: ansi-colors +version: 4.1.3 +type: npm +summary: Easily add ANSI colors to your text and symbols in the terminal. A faster + drop-in replacement for chalk, kleur and turbocolor (without the dependencies and + rendering bugs). +homepage: https://github.com/doowb/ansi-colors +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015-present, Brian Woodward. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2019, [Brian Woodward](https://github.com/doowb). + Released under the [MIT License](LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on July 01, 2019._ +notices: [] diff --git a/.licenses/npm/ansi-escapes.dep.yml b/.licenses/npm/ansi-escapes.dep.yml new file mode 100644 index 000000000..07f99bc1a --- /dev/null +++ b/.licenses/npm/ansi-escapes.dep.yml @@ -0,0 +1,20 @@ +--- +name: ansi-escapes +version: 4.3.2 +type: npm +summary: ANSI escape codes for manipulating the terminal +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ansi-regex-2.1.1.dep.yml b/.licenses/npm/ansi-regex-2.1.1.dep.yml new file mode 100644 index 000000000..950e11ae4 --- /dev/null +++ b/.licenses/npm/ansi-regex-2.1.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: ansi-regex +version: 2.1.1 +type: npm +summary: Regular expression for matching ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/ansi-regex-5.0.1.dep.yml b/.licenses/npm/ansi-regex-5.0.1.dep.yml new file mode 100644 index 000000000..9e6d3704a --- /dev/null +++ b/.licenses/npm/ansi-regex-5.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: ansi-regex +version: 5.0.1 +type: npm +summary: Regular expression for matching ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ansi-regex-6.1.0.dep.yml b/.licenses/npm/ansi-regex-6.1.0.dep.yml new file mode 100644 index 000000000..b711cba35 --- /dev/null +++ b/.licenses/npm/ansi-regex-6.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: ansi-regex +version: 6.1.0 +type: npm +summary: Regular expression for matching ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ansi-styles-4.3.0.dep.yml b/.licenses/npm/ansi-styles-4.3.0.dep.yml new file mode 100644 index 000000000..d73bee19e --- /dev/null +++ b/.licenses/npm/ansi-styles-4.3.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: ansi-styles +version: 4.3.0 +type: npm +summary: ANSI escape codes for styling strings in the terminal +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ansi-styles-6.2.1.dep.yml b/.licenses/npm/ansi-styles-6.2.1.dep.yml new file mode 100644 index 000000000..88000272f --- /dev/null +++ b/.licenses/npm/ansi-styles-6.2.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: ansi-styles +version: 6.2.1 +type: npm +summary: ANSI escape codes for styling strings in the terminal +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/append-field.dep.yml b/.licenses/npm/append-field.dep.yml new file mode 100644 index 000000000..4350979e9 --- /dev/null +++ b/.licenses/npm/append-field.dep.yml @@ -0,0 +1,34 @@ +--- +name: append-field +version: 1.0.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Linus Unnebäck + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/aproba-1.2.0.dep.yml b/.licenses/npm/aproba-1.2.0.dep.yml new file mode 100644 index 000000000..51f1b9659 --- /dev/null +++ b/.licenses/npm/aproba-1.2.0.dep.yml @@ -0,0 +1,26 @@ +--- +name: aproba +version: 1.2.0 +type: npm +summary: A ridiculously light-weight argument validator (now browser friendly) +homepage: https://github.com/iarna/aproba +license: isc +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2015, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/aproba-2.0.0.dep.yml b/.licenses/npm/aproba-2.0.0.dep.yml new file mode 100644 index 000000000..bfc4fb350 --- /dev/null +++ b/.licenses/npm/aproba-2.0.0.dep.yml @@ -0,0 +1,26 @@ +--- +name: aproba +version: 2.0.0 +type: npm +summary: A ridiculously light-weight argument validator (now browser friendly) +homepage: https://github.com/iarna/aproba +license: isc +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2015, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/arduino-ide-extension.dep.yml b/.licenses/npm/arduino-ide-extension.dep.yml new file mode 100644 index 000000000..78d445848 --- /dev/null +++ b/.licenses/npm/arduino-ide-extension.dep.yml @@ -0,0 +1,9 @@ +--- +name: arduino-ide-extension +version: 2.3.7 +type: npm +summary: An extension for Theia building the Arduino IDE +homepage: +license: other +licenses: [] +notices: [] diff --git a/.licenses/npm/arduino-serial-plotter-webapp.dep.yml b/.licenses/npm/arduino-serial-plotter-webapp.dep.yml new file mode 100644 index 000000000..47116c8bd --- /dev/null +++ b/.licenses/npm/arduino-serial-plotter-webapp.dep.yml @@ -0,0 +1,672 @@ +--- +name: arduino-serial-plotter-webapp +version: 0.2.0 +type: npm +summary: +homepage: +license: other +licenses: +- sources: LICENSE + text: |2 + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for + software and other kinds of works, specifically designed to ensure + cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + our General Public Licenses are intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains free + software for all its users. + + When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + them if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights + with two steps: (1) assert copyright on the software, and (2) offer + you this License which gives you legal permission to copy, distribute + and/or modify the software. + + A secondary benefit of defending all users' freedom is that + improvements made in alternate versions of the program, if they + receive widespread use, become available for other developers to + incorporate. Many developers of free software are heartened and + encouraged by the resulting cooperation. However, in the case of + software used on network servers, this result may fail to come about. + The GNU General Public License permits making a modified version and + letting the public access it on a server without ever releasing its + source code to the public. + + The GNU Affero General Public License is designed specifically to + ensure that, in such cases, the modified source code becomes available + to the community. It requires the operator of a network server to + provide the source code of the modified version running there to the + users of that server. Therefore, public use of a modified version, on + a publicly accessible server, gives the public access to the source + code of the modified version. + + An older license, called the Affero General Public License and + published by Affero, was designed to accomplish similar goals. This is + a different license, not a version of the Affero GPL, but Affero has + released a new version of the Affero GPL which permits relicensing under + this license. + + The precise terms and conditions for copying, distribution and + modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of an + exact copy. The resulting work is called a "modified version" of the + earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based + on the Program. + + To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through + a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" + to the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If + the interface presents a list of user commands or options, such as a + menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work + for making modifications to it. "Object code" means any non-source + form of a work. + + A "Standard Interface" means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that + is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A + "Major Component", in this context, means a major essential component + (kernel, window system, and so on) of the specific operating system + (if any) on which the executable work runs, or a compiler used to + produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all + the source code needed to generate, install, and (for an executable + work) run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + + The Corresponding Source need not include anything that users + can regenerate automatically from other parts of the Corresponding + Source. + + The Corresponding Source for a work in source code form is that + same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not + convey, without conditions so long as your license otherwise remains + in force. You may convey covered works to others for the sole purpose + of having them make modifications exclusively for you, or provide you + with facilities for running those works, provided that you comply with + the terms of this License in conveying all material for which you do + not control copyright. Those thus making or running the covered works + for you must do so exclusively on your behalf, under your direction + and control, on terms that prohibit them from making any copies of + your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under + the conditions stated below. Sublicensing is not allowed; section 10 + makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or + similar laws prohibiting or restricting circumvention of such + measures. + + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such circumvention + is effected by exercising rights under this License with respect to + the covered work, and you disclaim any intention to limit operation or + modification of the work as a means of enforcing, against the work's + users, your or third parties' legal rights to forbid circumvention of + technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, + and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the + terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, + in or on a volume of a storage or distribution medium, is called an + "aggregate" if the compilation and its resulting copyright are not + used to limit the access or legal rights of the compilation's users + beyond what the individual works permit. Inclusion of a covered work + in an aggregate does not cause this License to apply to the other + parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms + of sections 4 and 5, provided that you also convey the + machine-readable Corresponding Source under the terms of this License, + in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be + included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for incorporation + into a dwelling. In determining whether a product is a consumer product, + doubtful cases shall be resolved in favor of coverage. For a particular + product received by a particular user, "normally used" refers to a + typical or common use of that class of product, regardless of the status + of the particular user or of the way in which the particular user + actually uses, or expects or is expected to use, the product. A product + is a consumer product regardless of whether the product has substantial + commercial, industrial or non-consumer uses, unless such uses represent + the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to install + and execute modified versions of a covered work in that User Product from + a modified version of its Corresponding Source. The information must + suffice to ensure that the continued functioning of the modified object + code is in no case prevented or interfered with solely because + modification has been made. + + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied + by the Installation Information. But this requirement does not apply + if neither you nor any third party retains the ability to install + modified object code on the User Product (for example, the work has + been installed in ROM). + + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or updates + for a work that has been modified or installed by the recipient, or for + the User Product in which it has been modified or installed. Access to a + network may be denied when the modification itself materially and + adversely affects the operation of the network or violates the rules and + protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option + remove any additional permissions from that copy, or from any part of + it. (Additional permissions may be written to require their own + removal in certain cases when you modify the work.) You may place + additional permissions on material, added by you to a covered work, + for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders of + that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the + additional terms that apply to those files, or a notice indicating + where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; + the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly and + finally terminates your license, and (b) permanently, if the copyright + holder fails to notify you of the violation by some reasonable means + prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from that + copyright holder, and you cure the violation prior to 30 days after + your receipt of the notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or + run a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission + to receive a copy likewise does not require acceptance. However, + nothing other than this License grants you permission to propagate or + modify any covered work. These actions infringe copyright if you do + not accept this License. Therefore, by modifying or propagating a + covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that + transaction who receives a copy of the work also receives whatever + licenses to the work the party's predecessor in interest had or could + give under the previous paragraph, plus a right to possession of the + Corresponding Source of the work from the predecessor in interest, if + the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims + owned or controlled by the contributor, whether already acquired or + hereafter acquired, that would be infringed by some manner, permitted + by this License, of making, using, or selling its contributor version, + but do not include claims that would be infringed only as a + consequence of further modification of the contributor version. For + purposes of this definition, "control" includes the right to grant + patent sublicenses in a manner consistent with the requirements of + this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To "grant" such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone + to copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. "Knowingly relying" means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is "discriminatory" if it does not include within + the scope of its coverage, prohibits the exercise of, or is + conditioned on the non-exercise of one or more of the rights that are + specifically granted under this License. You may not convey a covered + work if you are a party to an arrangement with a third party that is + in the business of distributing software, under which you make payment + to the third party based on the extent of your activity of conveying + the work, and under which the third party grants, to any of the + parties who would receive the covered work from you, a discriminatory + patent license (a) in connection with copies of the covered work + conveyed by you (or copies made from those copies), or (b) primarily + for and in connection with specific products or compilations that + contain the covered work, unless you entered into that arrangement, + or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting + any implied license or other defenses to infringement that may + otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you may + not convey it at all. For example, if you agree to terms that obligate you + to collect a royalty for further conveying from those to whom you convey + the Program, the only way you could satisfy both those terms and this + License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the + Program, your modified version must prominently offer all users + interacting with it remotely through a computer network (if your version + supports such interaction) an opportunity to receive the Corresponding + Source of your version by providing access to the Corresponding Source + from a network server at no charge, through some standard or customary + means of facilitating copying of software. This Corresponding Source + shall include the Corresponding Source for any work covered by version 3 + of the GNU General Public License that is incorporated pursuant to the + following paragraph. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the work with which it is combined will remain governed by version + 3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU Affero General Public License from time to time. Such new versions + will be similar in spirit to the present version, but may differ in detail to + address new problems or concerns. + + Each version is given a distinguishing version number. If the + Program specifies that a certain numbered version of the GNU Affero General + Public License "or any later version" applies to it, you have the + option of following the terms and conditions either of that numbered + version or of any later version published by the Free Software + Foundation. If the Program does not specify a version number of the + GNU Affero General Public License, you may choose any version ever published + by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future + versions of the GNU Affero General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + + Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer + network, you should also make sure that it provides a way for users to + get its source. For example, if your program is a web application, its + interface could display a "Source" link that leads users to an archive + of the code. There are many ways you could offer source, and different + solutions will be better for different programs; see section 13 for the + specific requirements. + + You should also get your employer (if you work as a programmer) or school, + if any, to sign a "copyright disclaimer" for the program, if necessary. + For more information on this, and how to apply and follow the GNU AGPL, see + . +notices: [] diff --git a/.licenses/npm/ardunno-cli.dep.yml b/.licenses/npm/ardunno-cli.dep.yml new file mode 100644 index 000000000..2e49429b0 --- /dev/null +++ b/.licenses/npm/ardunno-cli.dep.yml @@ -0,0 +1,35 @@ +--- +name: ardunno-cli +version: 0.1.11 +type: npm +summary: nice-grpc API for the Arduino CLI +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2022 dankeboy36 + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: This project is licensed under the MIT License - see the [LICENSE](LICENSE) + file for details. +notices: [] diff --git a/.licenses/npm/are-we-there-yet-1.1.7.dep.yml b/.licenses/npm/are-we-there-yet-1.1.7.dep.yml new file mode 100644 index 000000000..9cee72a45 --- /dev/null +++ b/.licenses/npm/are-we-there-yet-1.1.7.dep.yml @@ -0,0 +1,16 @@ +--- +name: are-we-there-yet +version: 1.1.7 +type: npm +summary: Keep track of the overall completion of many disparate processes +homepage: https://github.com/iarna/are-we-there-yet +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/are-we-there-yet-2.0.0.dep.yml b/.licenses/npm/are-we-there-yet-2.0.0.dep.yml new file mode 100644 index 000000000..c230e0fd2 --- /dev/null +++ b/.licenses/npm/are-we-there-yet-2.0.0.dep.yml @@ -0,0 +1,29 @@ +--- +name: are-we-there-yet +version: 2.0.0 +type: npm +summary: Keep track of the overall completion of many disparate processes +homepage: https://github.com/npm/are-we-there-yet +license: other +licenses: +- sources: LICENSE.md + text: | + ISC License + + Copyright npm, Inc. + + Permission to use, copy, modify, and/or distribute this + software for any purpose with or without fee is hereby + granted, provided that the above copyright notice and this + permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND NPM DISCLAIMS ALL + WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO + EVENT SHALL NPM BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE + USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/argparse-1.0.10.dep.yml b/.licenses/npm/argparse-1.0.10.dep.yml new file mode 100644 index 000000000..93876415d --- /dev/null +++ b/.licenses/npm/argparse-1.0.10.dep.yml @@ -0,0 +1,38 @@ +--- +name: argparse +version: 1.0.10 +type: npm +summary: Very powerful CLI arguments parser. Native port of argparse - python's options + parsing library +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (C) 2012 by Vitaly Puzrin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2012 [Vitaly Puzrin](https://github.com/puzrin). + Released under the MIT license. See + [LICENSE](https://github.com/nodeca/argparse/blob/master/LICENSE) for details. +notices: [] diff --git a/.licenses/npm/argparse-2.0.1.dep.yml b/.licenses/npm/argparse-2.0.1.dep.yml new file mode 100644 index 000000000..0eba425d7 --- /dev/null +++ b/.licenses/npm/argparse-2.0.1.dep.yml @@ -0,0 +1,265 @@ +--- +name: argparse +version: 2.0.1 +type: npm +summary: CLI arguments parser. Native port of python's argparse. +homepage: +license: other +licenses: +- sources: LICENSE + text: | + A. HISTORY OF THE SOFTWARE + ========================== + + Python was created in the early 1990s by Guido van Rossum at Stichting + Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands + as a successor of a language called ABC. Guido remains Python's + principal author, although it includes many contributions from others. + + In 1995, Guido continued his work on Python at the Corporation for + National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) + in Reston, Virginia where he released several versions of the + software. + + In May 2000, Guido and the Python core development team moved to + BeOpen.com to form the BeOpen PythonLabs team. In October of the same + year, the PythonLabs team moved to Digital Creations, which became + Zope Corporation. In 2001, the Python Software Foundation (PSF, see + https://www.python.org/psf/) was formed, a non-profit organization + created specifically to own Python-related Intellectual Property. + Zope Corporation was a sponsoring member of the PSF. + + All Python releases are Open Source (see http://www.opensource.org for + the Open Source Definition). Historically, most, but not all, Python + releases have also been GPL-compatible; the table below summarizes + the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + + Footnotes: + + (1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + + (2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + + Thanks to the many outside volunteers who have worked under Guido's + direction to make these releases possible. + + + B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON + =============================================================== + + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + -------------------------------------------- + + 1. This LICENSE AGREEMENT is between the Python Software Foundation + ("PSF"), and the Individual or Organization ("Licensee") accessing and + otherwise using this software ("Python") in source or binary form and + its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby + grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, + analyze, test, perform and/or display publicly, prepare derivative works, + distribute, and otherwise use Python alone or in any derivative version, + provided, however, that PSF's License Agreement and PSF's notice of copyright, + i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, + 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation; + All Rights Reserved" are retained in Python alone or in any derivative version + prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on + or incorporates Python or any part thereof, and wants to make + the derivative work available to others as provided herein, then + Licensee hereby agrees to include in any such work a brief summary of + the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" + basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between PSF and + Licensee. This License Agreement does not grant permission to use PSF + trademarks or trade name in a trademark sense to endorse or promote + products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + + BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + ------------------------------------------- + + BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an + office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the + Individual or Organization ("Licensee") accessing and otherwise using + this software in source or binary form and its associated + documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License + Agreement, BeOpen hereby grants Licensee a non-exclusive, + royalty-free, world-wide license to reproduce, analyze, test, perform + and/or display publicly, prepare derivative works, distribute, and + otherwise use the Software alone or in any derivative version, + provided, however, that the BeOpen Python License is retained in the + Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" + basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE + SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS + AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY + DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all + respects by the law of the State of California, excluding conflict of + law provisions. Nothing in this License Agreement shall be deemed to + create any relationship of agency, partnership, or joint venture + between BeOpen and Licensee. This License Agreement does not grant + permission to use BeOpen trademarks or trade names in a trademark + sense to endorse or promote products or services of Licensee, or any + third party. As an exception, the "BeOpen Python" logos available at + http://www.pythonlabs.com/logos.html may be used according to the + permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + + CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 + --------------------------------------- + + 1. This LICENSE AGREEMENT is between the Corporation for National + Research Initiatives, having an office at 1895 Preston White Drive, + Reston, VA 20191 ("CNRI"), and the Individual or Organization + ("Licensee") accessing and otherwise using Python 1.6.1 software in + source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, CNRI + hereby grants Licensee a nonexclusive, royalty-free, world-wide + license to reproduce, analyze, test, perform and/or display publicly, + prepare derivative works, distribute, and otherwise use Python 1.6.1 + alone or in any derivative version, provided, however, that CNRI's + License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) + 1995-2001 Corporation for National Research Initiatives; All Rights + Reserved" are retained in Python 1.6.1 alone or in any derivative + version prepared by Licensee. Alternately, in lieu of CNRI's License + Agreement, Licensee may substitute the following text (omitting the + quotes): "Python 1.6.1 is made available subject to the terms and + conditions in CNRI's License Agreement. This Agreement together with + Python 1.6.1 may be located on the Internet using the following + unique, persistent identifier (known as a handle): 1895.22/1013. This + Agreement may also be obtained from a proxy server on the Internet + using the following URL: http://hdl.handle.net/1895.22/1013". + + 3. In the event Licensee prepares a derivative work that is based on + or incorporates Python 1.6.1 or any part thereof, and wants to make + the derivative work available to others as provided herein, then + Licensee hereby agrees to include in any such work a brief summary of + the changes made to Python 1.6.1. + + 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" + basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. This License Agreement shall be governed by the federal + intellectual property law of the United States, including without + limitation the federal copyright law, and, to the extent such + U.S. federal law does not apply, by the law of the Commonwealth of + Virginia, excluding Virginia's conflict of law provisions. + Notwithstanding the foregoing, with regard to derivative works based + on Python 1.6.1 that incorporate non-separable material that was + previously distributed under the GNU General Public License (GPL), the + law of the Commonwealth of Virginia shall govern this License + Agreement only as to issues arising under or with respect to + Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this + License Agreement shall be deemed to create any relationship of + agency, partnership, or joint venture between CNRI and Licensee. This + License Agreement does not grant permission to use CNRI trademarks or + trade name in a trademark sense to endorse or promote products or + services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, + installing or otherwise using Python 1.6.1, Licensee agrees to be + bound by the terms and conditions of this License Agreement. + + ACCEPT + + + CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + -------------------------------------------------- + + Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, + The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of Stichting Mathematisch + Centrum or CWI not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE + FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT + OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/array-buffer-byte-length.dep.yml b/.licenses/npm/array-buffer-byte-length.dep.yml new file mode 100644 index 000000000..4e35dd7e4 --- /dev/null +++ b/.licenses/npm/array-buffer-byte-length.dep.yml @@ -0,0 +1,33 @@ +--- +name: array-buffer-byte-length +version: 1.0.2 +type: npm +summary: Get the byte length of an ArrayBuffer, even in engines without a `.byteLength` + method. +homepage: https://github.com/inspect-js/array-buffer-byte-length#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2023 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/array-flatten.dep.yml b/.licenses/npm/array-flatten.dep.yml new file mode 100644 index 000000000..9b0c037db --- /dev/null +++ b/.licenses/npm/array-flatten.dep.yml @@ -0,0 +1,44 @@ +--- +name: array-flatten +version: 1.1.1 +type: npm +summary: Flatten an array of nested arrays into a single flat array +homepage: https://github.com/blakeembrey/array-flatten +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + MIT + + [npm-image]: https://img.shields.io/npm/v/array-flatten.svg?style=flat + [npm-url]: https://npmjs.org/package/array-flatten + [downloads-image]: https://img.shields.io/npm/dm/array-flatten.svg?style=flat + [downloads-url]: https://npmjs.org/package/array-flatten + [travis-image]: https://img.shields.io/travis/blakeembrey/array-flatten.svg?style=flat + [travis-url]: https://travis-ci.org/blakeembrey/array-flatten + [coveralls-image]: https://img.shields.io/coveralls/blakeembrey/array-flatten.svg?style=flat + [coveralls-url]: https://coveralls.io/r/blakeembrey/array-flatten?branch=master +notices: [] diff --git a/.licenses/npm/array-union.dep.yml b/.licenses/npm/array-union.dep.yml new file mode 100644 index 000000000..13af6d118 --- /dev/null +++ b/.licenses/npm/array-union.dep.yml @@ -0,0 +1,34 @@ +--- +name: array-union +version: 1.0.2 +type: npm +summary: Create an array of unique values, in order, from the input arrays +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/array-uniq.dep.yml b/.licenses/npm/array-uniq.dep.yml new file mode 100644 index 000000000..8ebf4e066 --- /dev/null +++ b/.licenses/npm/array-uniq.dep.yml @@ -0,0 +1,34 @@ +--- +name: array-uniq +version: 1.0.3 +type: npm +summary: Create an array without duplicates +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/asap.dep.yml b/.licenses/npm/asap.dep.yml new file mode 100644 index 000000000..ebf4f9404 --- /dev/null +++ b/.licenses/npm/asap.dep.yml @@ -0,0 +1,36 @@ +--- +name: asap +version: 2.0.6 +type: npm +summary: High-priority task queue for Node.js and browsers +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: |2+ + + Copyright 2009–2014 Contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + +- sources: README.md + text: |- + Copyright 2009-2014 by Contributors + MIT License (enclosed) +notices: [] diff --git a/.licenses/npm/astral-regex.dep.yml b/.licenses/npm/astral-regex.dep.yml new file mode 100644 index 000000000..9d5b191f6 --- /dev/null +++ b/.licenses/npm/astral-regex.dep.yml @@ -0,0 +1,22 @@ +--- +name: astral-regex +version: 2.0.0 +type: npm +summary: Regular expression for matching astral symbols +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/async-mutex-0.3.2.dep.yml b/.licenses/npm/async-mutex-0.3.2.dep.yml new file mode 100644 index 000000000..47e76fb38 --- /dev/null +++ b/.licenses/npm/async-mutex-0.3.2.dep.yml @@ -0,0 +1,34 @@ +--- +name: async-mutex +version: 0.3.2 +type: npm +summary: A mutex for guarding async workflows +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Christian Speckner + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: Feel free to use this library under the conditions of the MIT license. +notices: [] diff --git a/.licenses/npm/async-mutex-0.4.1.dep.yml b/.licenses/npm/async-mutex-0.4.1.dep.yml new file mode 100644 index 000000000..a6e67fca2 --- /dev/null +++ b/.licenses/npm/async-mutex-0.4.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: async-mutex +version: 0.4.1 +type: npm +summary: A mutex for guarding async workflows +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Christian Speckner + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: Feel free to use this library under the conditions of the MIT license. +notices: [] diff --git a/.licenses/npm/asynckit.dep.yml b/.licenses/npm/asynckit.dep.yml new file mode 100644 index 000000000..905e0aaa9 --- /dev/null +++ b/.licenses/npm/asynckit.dep.yml @@ -0,0 +1,34 @@ +--- +name: asynckit +version: 0.4.0 +type: npm +summary: Minimal async jobs utility library, with streams support +homepage: https://github.com/alexindigo/asynckit#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Alex Indigo + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: AsyncKit is licensed under the MIT license. +notices: [] diff --git a/.licenses/npm/atomically.dep.yml b/.licenses/npm/atomically.dep.yml new file mode 100644 index 000000000..394c58829 --- /dev/null +++ b/.licenses/npm/atomically.dep.yml @@ -0,0 +1,34 @@ +--- +name: atomically +version: 1.7.0 +type: npm +summary: Read and write files atomically and reliably. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2020-present Fabio Spampinato + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT © Fabio Spampinato +notices: [] diff --git a/.licenses/npm/auth0-js.dep.yml b/.licenses/npm/auth0-js.dep.yml new file mode 100644 index 000000000..0b176bb7b --- /dev/null +++ b/.licenses/npm/auth0-js.dep.yml @@ -0,0 +1,32 @@ +--- +name: auth0-js +version: 9.28.0 +type: npm +summary: Auth0 headless browser sdk +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015-current Auth0, Inc. (http://auth0.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/autosize.dep.yml b/.licenses/npm/autosize.dep.yml new file mode 100644 index 000000000..9ccf111e3 --- /dev/null +++ b/.licenses/npm/autosize.dep.yml @@ -0,0 +1,33 @@ +--- +name: autosize +version: 4.0.4 +type: npm +summary: Autosize is a small, stand-alone script to automatically adjust textarea + height to fit text. +homepage: http://www.jacklmoore.com/autosize +license: mit +licenses: +- sources: LICENSE.md + text: |- + The MIT License (MIT) + + Copyright (c) 2015 Jack Moore + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/available-typed-arrays.dep.yml b/.licenses/npm/available-typed-arrays.dep.yml new file mode 100644 index 000000000..3f3872593 --- /dev/null +++ b/.licenses/npm/available-typed-arrays.dep.yml @@ -0,0 +1,32 @@ +--- +name: available-typed-arrays +version: 1.0.7 +type: npm +summary: Returns an array of Typed Array names that are available in the current environment +homepage: https://github.com/inspect-js/available-typed-arrays#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/axios.dep.yml b/.licenses/npm/axios.dep.yml new file mode 100644 index 000000000..326a3c5da --- /dev/null +++ b/.licenses/npm/axios.dep.yml @@ -0,0 +1,20 @@ +--- +name: axios +version: 1.8.3 +type: npm +summary: Promise based HTTP client for the browser and node.js +homepage: https://axios-http.com +license: mit +licenses: +- sources: LICENSE + text: | + # Copyright (c) 2014-present Matt Zabriskie & Collaborators + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE)" +notices: [] diff --git a/.licenses/npm/babel-plugin-macros.dep.yml b/.licenses/npm/babel-plugin-macros.dep.yml new file mode 100644 index 000000000..c4ac76757 --- /dev/null +++ b/.licenses/npm/babel-plugin-macros.dep.yml @@ -0,0 +1,62 @@ +--- +name: babel-plugin-macros +version: 3.1.0 +type: npm +summary: Allows you to build compile-time libraries +homepage: https://github.com/kentcdodds/babel-plugin-macros#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + Copyright (c) 2020 Kent C. Dodds + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + MIT + + + [npm]: https://www.npmjs.com + [node]: https://nodejs.org + [build-badge]: https://img.shields.io/github/workflow/status/kentcdodds/babel-plugin-macros/validate?logo=github&style=flat-square + [build]: https://github.com/kentcdodds/babel-plugin-macros/actions?query=workflow%3Avalidate + [coverage-badge]: https://img.shields.io/codecov/c/github/kentcdodds/babel-plugin-macros.svg?style=flat-square + [coverage]: https://codecov.io/github/kentcdodds/babel-plugin-macros + [version-badge]: https://img.shields.io/npm/v/babel-plugin-macros.svg?style=flat-square + [package]: https://www.npmjs.com/package/babel-plugin-macros + [downloads-badge]: https://img.shields.io/npm/dm/babel-plugin-macros.svg?style=flat-square + [npmtrends]: http://www.npmtrends.com/babel-plugin-macros + [license-badge]: https://img.shields.io/npm/l/babel-plugin-macros.svg?style=flat-square + [license]: https://github.com/kentcdodds/babel-plugin-macros/blob/main/LICENSE + [prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square + [prs]: http://makeapullrequest.com + [coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square + [coc]: https://github.com/kentcdodds/babel-plugin-macros/blob/main/CODE_OF_CONDUCT.md + [emojis]: https://github.com/all-contributors/all-contributors#emoji-key + [all-contributors]: https://github.com/all-contributors/all-contributors + [all-contributors-badge]: https://img.shields.io/github/all-contributors/kentcdodds/babel-plugin-macros?color=orange&style=flat-square + [bugs]: https://github.com/kentcdodds/babel-plugin-macros/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Acreated-desc+label%3Abug + [requests]: https://github.com/kentcdodds/babel-plugin-macros/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement + [good-first-issue]: https://github.com/kentcdodds/babel-plugin-macros/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement+label%3A%22good+first+issue%22 + [preval]: https://github.com/kentcdodds/babel-plugin-preval + [cra]: https://github.com/facebook/create-react-app + [cra-issue]: https://github.com/facebook/create-react-app/issues/2730 + +notices: [] diff --git a/.licenses/npm/bail.dep.yml b/.licenses/npm/bail.dep.yml new file mode 100644 index 000000000..d1ef907ed --- /dev/null +++ b/.licenses/npm/bail.dep.yml @@ -0,0 +1,74 @@ +--- +name: bail +version: 2.0.2 +type: npm +summary: Throw a given error +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/wooorm/bail/workflows/main/badge.svg + + [build]: https://github.com/wooorm/bail/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/bail.svg + + [coverage]: https://codecov.io/github/wooorm/bail + + [downloads-badge]: https://img.shields.io/npm/dm/bail.svg + + [downloads]: https://www.npmjs.com/package/bail + + [size-badge]: https://img.shields.io/bundlephobia/minzip/bail.svg + + [size]: https://bundlephobia.com/result?p=bail + + [npm]: https://docs.npmjs.com/cli/install + + [skypack]: https://www.skypack.dev + + [license]: license + + [author]: https://wooorm.com + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [typescript]: https://www.typescriptlang.org + + [contribute]: https://opensource.guide/how-to-contribute/ + + [noop]: https://www.npmjs.com/package/noop + + [noop2]: https://www.npmjs.com/package/noop2 + + [noop3]: https://www.npmjs.com/package/noop3 +notices: [] diff --git a/.licenses/npm/balanced-match.dep.yml b/.licenses/npm/balanced-match.dep.yml new file mode 100644 index 000000000..36095592b --- /dev/null +++ b/.licenses/npm/balanced-match.dep.yml @@ -0,0 +1,55 @@ +--- +name: balanced-match +version: 1.0.2 +type: npm +summary: Match balanced character pairs, like "{" and "}" +homepage: https://github.com/juliangruber/balanced-match +license: mit +licenses: +- sources: LICENSE.md + text: | + (MIT) + + Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + (MIT) + + Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/base64-js.dep.yml b/.licenses/npm/base64-js.dep.yml new file mode 100644 index 000000000..6f5707cbc --- /dev/null +++ b/.licenses/npm/base64-js.dep.yml @@ -0,0 +1,34 @@ +--- +name: base64-js +version: 1.5.1 +type: npm +summary: Base64 encoding/decoding in pure JS +homepage: https://github.com/beatgammit/base64-js +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Jameson Little + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/base64id.dep.yml b/.licenses/npm/base64id.dep.yml new file mode 100644 index 000000000..d4d59b8a9 --- /dev/null +++ b/.licenses/npm/base64id.dep.yml @@ -0,0 +1,33 @@ +--- +name: base64id +version: 2.0.0 +type: npm +summary: Generates a base64 id +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012-2016 Kristian Faeldt + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/big-integer.dep.yml b/.licenses/npm/big-integer.dep.yml new file mode 100644 index 000000000..a4b96d97b --- /dev/null +++ b/.licenses/npm/big-integer.dep.yml @@ -0,0 +1,37 @@ +--- +name: big-integer +version: 1.6.52 +type: npm +summary: An arbitrary length integer library for Javascript +homepage: +license: unlicense +licenses: +- sources: LICENSE + text: | + This is free and unencumbered software released into the public domain. + + Anyone is free to copy, modify, publish, use, compile, sell, or + distribute this software, either in source code form or as a compiled + binary, for any purpose, commercial or non-commercial, and by any + means. + + In jurisdictions that recognize copyright laws, the author or authors + of this software dedicate any and all copyright interest in the + software to the public domain. We make this dedication for the benefit + of the public at large and to the detriment of our heirs and + successors. We intend this dedication to be an overt act of + relinquishment in perpetuity of all present and future rights to this + software under copyright law. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + For more information, please refer to +- sources: README.md + text: This project is public domain. For more details, read about the [Unlicense](http://unlicense.org/). +notices: [] diff --git a/.licenses/npm/binary.dep.yml b/.licenses/npm/binary.dep.yml new file mode 100644 index 000000000..00e43d5d7 --- /dev/null +++ b/.licenses/npm/binary.dep.yml @@ -0,0 +1,11 @@ +--- +name: binary +version: 0.3.0 +type: npm +summary: Unpack multibyte binary values from buffers +homepage: +license: mit +licenses: +- sources: README.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/bindings.dep.yml b/.licenses/npm/bindings.dep.yml new file mode 100644 index 000000000..c4b3046b4 --- /dev/null +++ b/.licenses/npm/bindings.dep.yml @@ -0,0 +1,57 @@ +--- +name: bindings +version: 1.5.0 +type: npm +summary: Helper module for loading your native module's .node file +homepage: https://github.com/TooTallNate/node-bindings +license: mit +licenses: +- sources: LICENSE.md + text: | + (The MIT License) + + Copyright (c) 2012 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2012 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/bl-1.2.3.dep.yml b/.licenses/npm/bl-1.2.3.dep.yml new file mode 100644 index 000000000..e71c908c4 --- /dev/null +++ b/.licenses/npm/bl-1.2.3.dep.yml @@ -0,0 +1,25 @@ +--- +name: bl +version: 1.2.3 +type: npm +summary: 'Buffer List: collect buffers and access with a standard readable Buffer + interface, streamable too!' +homepage: https://github.com/rvagg/bl +license: other +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + ===================== + + Copyright (c) 2013-2016 bl contributors + ---------------------------------- + + *bl contributors listed at * + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/bl-4.1.0.dep.yml b/.licenses/npm/bl-4.1.0.dep.yml new file mode 100644 index 000000000..096d01525 --- /dev/null +++ b/.licenses/npm/bl-4.1.0.dep.yml @@ -0,0 +1,25 @@ +--- +name: bl +version: 4.1.0 +type: npm +summary: 'Buffer List: collect buffers and access with a standard readable Buffer + interface, streamable too!' +homepage: https://github.com/rvagg/bl +license: other +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + ===================== + + Copyright (c) 2013-2019 bl contributors + ---------------------------------- + + *bl contributors listed at * + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/bluebird.dep.yml b/.licenses/npm/bluebird.dep.yml new file mode 100644 index 000000000..830f973a0 --- /dev/null +++ b/.licenses/npm/bluebird.dep.yml @@ -0,0 +1,55 @@ +--- +name: bluebird +version: 3.4.7 +type: npm +summary: Full featured Promises/A+ implementation with exceptionally good performance +homepage: https://github.com/petkaantonov/bluebird +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2013-2015 Petka Antonov + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + The MIT License (MIT) + + Copyright (c) 2013-2016 Petka Antonov + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/body-parser.dep.yml b/.licenses/npm/body-parser.dep.yml new file mode 100644 index 000000000..61b686576 --- /dev/null +++ b/.licenses/npm/body-parser.dep.yml @@ -0,0 +1,49 @@ +--- +name: body-parser +version: 1.20.3 +type: npm +summary: Node.js body parsing middleware +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2014-2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/expressjs/body-parser/master?label=ci + [ci-url]: https://github.com/expressjs/body-parser/actions/workflows/ci.yml + [coveralls-image]: https://badgen.net/coveralls/c/github/expressjs/body-parser/master + [coveralls-url]: https://coveralls.io/r/expressjs/body-parser?branch=master + [node-version-image]: https://badgen.net/npm/node/body-parser + [node-version-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/body-parser + [npm-url]: https://npmjs.org/package/body-parser + [npm-version-image]: https://badgen.net/npm/v/body-parser + [ossf-scorecard-badge]: https://api.scorecard.dev/projects/github.com/expressjs/body-parser/badge + [ossf-scorecard-visualizer]: https://ossf.github.io/scorecard-visualizer/#/projects/github.com/expressjs/body-parser +notices: [] diff --git a/.licenses/npm/boolean.dep.yml b/.licenses/npm/boolean.dep.yml new file mode 100644 index 000000000..890a9c8cd --- /dev/null +++ b/.licenses/npm/boolean.dep.yml @@ -0,0 +1,19 @@ +--- +name: boolean +version: 3.2.0 +type: npm +summary: boolean converts lots of things to boolean. +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + The MIT License (MIT) + Copyright (c) 2014-2022 the native web. + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/brace-expansion-1.1.11.dep.yml b/.licenses/npm/brace-expansion-1.1.11.dep.yml new file mode 100644 index 000000000..8fa6cfb31 --- /dev/null +++ b/.licenses/npm/brace-expansion-1.1.11.dep.yml @@ -0,0 +1,55 @@ +--- +name: brace-expansion +version: 1.1.11 +type: npm +summary: Brace expansion as known from sh/bash +homepage: https://github.com/juliangruber/brace-expansion +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2013 Julian Gruber + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + (MIT) + + Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/brace-expansion-2.0.1.dep.yml b/.licenses/npm/brace-expansion-2.0.1.dep.yml new file mode 100644 index 000000000..e0a1e518d --- /dev/null +++ b/.licenses/npm/brace-expansion-2.0.1.dep.yml @@ -0,0 +1,55 @@ +--- +name: brace-expansion +version: 2.0.1 +type: npm +summary: Brace expansion as known from sh/bash +homepage: https://github.com/juliangruber/brace-expansion +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2013 Julian Gruber + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + (MIT) + + Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/braces.dep.yml b/.licenses/npm/braces.dep.yml new file mode 100644 index 000000000..c8809dc34 --- /dev/null +++ b/.licenses/npm/braces.dep.yml @@ -0,0 +1,42 @@ +--- +name: braces +version: 3.0.3 +type: npm +summary: Bash-like brace expansion, implemented in JavaScript. Safer than other brace + expansion libs, with complete support for the Bash 4.3 braces specification, without + sacrificing speed. +homepage: https://github.com/micromatch/braces +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014-present, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + --- + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 08, 2019._ +notices: [] diff --git a/.licenses/npm/btoa.dep.yml b/.licenses/npm/btoa.dep.yml new file mode 100644 index 000000000..e697be395 --- /dev/null +++ b/.licenses/npm/btoa.dep.yml @@ -0,0 +1,523 @@ +--- +name: btoa +version: 1.2.1 +type: npm +summary: btoa for Node.JS (it's a one-liner) +homepage: https://git.coolaj86.com/coolaj86/btoa.js.git +license: other +licenses: +- sources: LICENSE + text: | + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, and + distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by the copyright + owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all other entities + that control, are controlled by, or are under common control with that entity. + For the purposes of this definition, "control" means (i) the power, direct or + indirect, to cause the direction or management of such entity, whether by + contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity exercising + permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, including + but not limited to software source code, documentation source, and configuration + files. + + "Object" form shall mean any form resulting from mechanical transformation or + translation of a Source form, including but not limited to compiled object code, + generated documentation, and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or Object form, made + available under the License, as indicated by a copyright notice that is included + in or attached to the work (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object form, that + is based on (or derived from) the Work and for which the editorial revisions, + annotations, elaborations, or other modifications represent, as a whole, an + original work of authorship. For the purposes of this License, Derivative Works + shall not include works that remain separable from, or merely link (or bind by + name) to the interfaces of, the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including the original version + of the Work and any modifications or additions to that Work or Derivative Works + thereof, that is intentionally submitted to Licensor for inclusion in the Work + by the copyright owner or by an individual or Legal Entity authorized to submit + on behalf of the copyright owner. For the purposes of this definition, + "submitted" means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, and + issue tracking systems that are managed by, or on behalf of, the Licensor for + the purpose of discussing and improving the Work, but excluding communication + that is conspicuously marked or otherwise designated in writing by the copyright + owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf + of whom a Contribution has been received by Licensor and subsequently + incorporated within the Work. + + 2. Grant of Copyright License. + + Subject to the terms and conditions of this License, each Contributor hereby + grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, + irrevocable copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the Work and such + Derivative Works in Source or Object form. + + 3. Grant of Patent License. + + Subject to the terms and conditions of this License, each Contributor hereby + grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, + irrevocable (except as stated in this section) patent license to make, have + made, use, offer to sell, sell, import, and otherwise transfer the Work, where + such license applies only to those patent claims licensable by such Contributor + that are necessarily infringed by their Contribution(s) alone or by combination + of their Contribution(s) with the Work to which such Contribution(s) was + submitted. If You institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work or a + Contribution incorporated within the Work constitutes direct or contributory + patent infringement, then any patent licenses granted to You under this License + for that Work shall terminate as of the date such litigation is filed. + + 4. Redistribution. + + You may reproduce and distribute copies of the Work or Derivative Works thereof + in any medium, with or without modifications, and in Source or Object form, + provided that You meet the following conditions: + + You must give any other recipients of the Work or Derivative Works a copy of + this License; and + You must cause any modified files to carry prominent notices stating that You + changed the files; and + You must retain, in the Source form of any Derivative Works that You distribute, + all copyright, patent, trademark, and attribution notices from the Source form + of the Work, excluding those notices that do not pertain to any part of the + Derivative Works; and + If the Work includes a "NOTICE" text file as part of its distribution, then any + Derivative Works that You distribute must include a readable copy of the + attribution notices contained within such NOTICE file, excluding those notices + that do not pertain to any part of the Derivative Works, in at least one of the + following places: within a NOTICE text file distributed as part of the + Derivative Works; within the Source form or documentation, if provided along + with the Derivative Works; or, within a display generated by the Derivative + Works, if and wherever such third-party notices normally appear. The contents of + the NOTICE file are for informational purposes only and do not modify the + License. You may add Your own attribution notices within Derivative Works that + You distribute, alongside or as an addendum to the NOTICE text from the Work, + provided that such additional attribution notices cannot be construed as + modifying the License. + You may add Your own copyright statement to Your modifications and may provide + additional or different license terms and conditions for use, reproduction, or + distribution of Your modifications, or for any such Derivative Works as a whole, + provided Your use, reproduction, and distribution of the Work otherwise complies + with the conditions stated in this License. + + 5. Submission of Contributions. + + Unless You explicitly state otherwise, any Contribution intentionally submitted + for inclusion in the Work by You to the Licensor shall be under the terms and + conditions of this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify the terms of + any separate license agreement you may have executed with Licensor regarding + such Contributions. + + 6. Trademarks. + + This License does not grant permission to use the trade names, trademarks, + service marks, or product names of the Licensor, except as required for + reasonable and customary use in describing the origin of the Work and + reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. + + Unless required by applicable law or agreed to in writing, Licensor provides the + Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, + including, without limitation, any warranties or conditions of TITLE, + NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are + solely responsible for determining the appropriateness of using or + redistributing the Work and assume any risks associated with Your exercise of + permissions under this License. + + 8. Limitation of Liability. + + In no event and under no legal theory, whether in tort (including negligence), + contract, or otherwise, unless required by applicable law (such as deliberate + and grossly negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, incidental, + or consequential damages of any character arising as a result of this License or + out of the use or inability to use the Work (including but not limited to + damages for loss of goodwill, work stoppage, computer failure or malfunction, or + any and all other commercial damages or losses), even if such Contributor has + been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. + + While redistributing the Work or Derivative Works thereof, You may choose to + offer, and charge a fee for, acceptance of support, warranty, indemnity, or + other liability obligations and/or rights consistent with this License. However, + in accepting such obligations, You may act only on Your own behalf and on Your + sole responsibility, not on behalf of any other Contributor, and only if You + agree to indemnify, defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason of your + accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work + + To apply the Apache License to your work, attach the following boilerplate + notice, with the fields enclosed by brackets "[]" replaced with your own + identifying information. (Don't include the brackets!) The text should be + enclosed in the appropriate comment syntax for the file format. We also + recommend that a file or class name and description of purpose be included on + the same "printed page" as the copyright notice for easier identification within + third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +- sources: LICENSE.DOCS + text: | + Creative Commons Legal Code + + Attribution 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + + License + + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE + COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY + COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS + AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + + BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE + TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY + BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS + CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND + CONDITIONS. + + 1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + e. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + f. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + g. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + h. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + i. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + + 2. Fair Dealing Rights. Nothing in this License is intended to reduce, + limit, or restrict any uses free from copyright or rights arising from + limitations or exceptions that are provided for in connection with the + copyright protection under copyright law or other applicable laws. + + 3. License Grant. Subject to the terms and conditions of this License, + Licensor hereby grants You a worldwide, royalty-free, non-exclusive, + perpetual (for the duration of the applicable copyright) license to + exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + + The above rights may be exercised in all media and formats whether now + known or hereafter devised. The above rights include the right to make + such modifications as are technically necessary to exercise the rights in + other media and formats. Subject to Section 8(f), all rights not expressly + granted by Licensor are hereby reserved. + + 4. Restrictions. The license granted in Section 3 above is expressly made + subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(b), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(b), as requested. + b. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and (iv) , consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4 (b) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + c. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + + 5. Representations, Warranties and Disclaimer + + UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR + OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY + KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, + INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, + FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF + LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, + WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION + OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + + 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE + LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR + ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES + ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS + BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + + 8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + + Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at http://creativecommons.org/. +notices: [] diff --git a/.licenses/npm/buffer-alloc-unsafe.dep.yml b/.licenses/npm/buffer-alloc-unsafe.dep.yml new file mode 100644 index 000000000..219da1037 --- /dev/null +++ b/.licenses/npm/buffer-alloc-unsafe.dep.yml @@ -0,0 +1,30 @@ +--- +name: buffer-alloc-unsafe +version: 1.1.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/buffer-alloc.dep.yml b/.licenses/npm/buffer-alloc.dep.yml new file mode 100644 index 000000000..b15551913 --- /dev/null +++ b/.licenses/npm/buffer-alloc.dep.yml @@ -0,0 +1,30 @@ +--- +name: buffer-alloc +version: 1.2.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/buffer-crc32.dep.yml b/.licenses/npm/buffer-crc32.dep.yml new file mode 100644 index 000000000..8594dbbee --- /dev/null +++ b/.licenses/npm/buffer-crc32.dep.yml @@ -0,0 +1,26 @@ +--- +name: buffer-crc32 +version: 0.2.13 +type: npm +summary: A pure javascript CRC32 algorithm that plays nice with binary data +homepage: https://github.com/brianloveswords/buffer-crc32 +license: mit +licenses: +- sources: LICENSE + text: "The MIT License\n\nCopyright (c) 2013 Brian J. Brennan\n\nPermission is hereby + granted, free of charge, to any person obtaining a copy \nof this software and + associated documentation files (the \"Software\"), to deal in \nthe Software without + restriction, including without limitation the rights to use, \ncopy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the \nSoftware, and to + permit persons to whom the Software is furnished to do so, \nsubject to the following + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all \ncopies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, \nINCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + \nPURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE\nFOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" +- sources: README.md + text: MIT/X11 +notices: [] diff --git a/.licenses/npm/buffer-fill.dep.yml b/.licenses/npm/buffer-fill.dep.yml new file mode 100644 index 000000000..521764ba9 --- /dev/null +++ b/.licenses/npm/buffer-fill.dep.yml @@ -0,0 +1,30 @@ +--- +name: buffer-fill +version: 1.0.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/buffer-from.dep.yml b/.licenses/npm/buffer-from.dep.yml new file mode 100644 index 000000000..b483ee96a --- /dev/null +++ b/.licenses/npm/buffer-from.dep.yml @@ -0,0 +1,32 @@ +--- +name: buffer-from +version: 1.1.2 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2016, 2018 Linus Unnebäck + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/buffer-indexof-polyfill.dep.yml b/.licenses/npm/buffer-indexof-polyfill.dep.yml new file mode 100644 index 000000000..99eaf5473 --- /dev/null +++ b/.licenses/npm/buffer-indexof-polyfill.dep.yml @@ -0,0 +1,43 @@ +--- +name: buffer-indexof-polyfill +version: 1.0.2 +type: npm +summary: This is a polyfill for Buffer#indexOf introduced in NodeJS 4.0. +homepage: https://github.com/sarosia/buffer-indexof-polyfill#readme +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Sarosia + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/buffer-indexof-polyfill.svg + [npm-url]: https://npmjs.org/package/buffer-indexof-polyfill + [downloads-image]: https://img.shields.io/npm/dm/buffer-indexof-polyfill.svg + [downloads-url]: https://npmjs.org/package/buffer-indexof-polyfill + [travis-image]: https://travis-ci.org/sarosia/buffer-indexof-polyfill.svg?branch=master + [travis-url]: https://travis-ci.org/sarosia/buffer-indexof-polyfill +notices: [] diff --git a/.licenses/npm/buffer.dep.yml b/.licenses/npm/buffer.dep.yml new file mode 100644 index 000000000..970a09422 --- /dev/null +++ b/.licenses/npm/buffer.dep.yml @@ -0,0 +1,107 @@ +--- +name: buffer +version: 5.7.1 +type: npm +summary: Node.js Buffer API, for the browser +homepage: https://github.com/feross/buffer +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Feross Aboukhadijeh, and other contributors. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org), and other contributors. + Originally forked from an MIT-licensed module by Romain Beauxis. +notices: +- sources: AUTHORS.md + text: |- + # Authors + + #### Ordered by first contribution. + + - Romain Beauxis (toots@rastageeks.org) + - Tobias Koppers (tobias.koppers@googlemail.com) + - Janus (ysangkok@gmail.com) + - Rainer Dreyer (rdrey1@gmail.com) + - Tõnis Tiigi (tonistiigi@gmail.com) + - James Halliday (mail@substack.net) + - Michael Williamson (mike@zwobble.org) + - elliottcable (github@elliottcable.name) + - rafael (rvalle@livelens.net) + - Andrew Kelley (superjoe30@gmail.com) + - Andreas Madsen (amwebdk@gmail.com) + - Mike Brevoort (mike.brevoort@pearson.com) + - Brian White (mscdex@mscdex.net) + - Feross Aboukhadijeh (feross@feross.org) + - Ruben Verborgh (ruben@verborgh.org) + - eliang (eliang.cs@gmail.com) + - Jesse Tane (jesse.tane@gmail.com) + - Alfonso Boza (alfonso@cloud.com) + - Mathias Buus (mathiasbuus@gmail.com) + - Devon Govett (devongovett@gmail.com) + - Daniel Cousens (github@dcousens.com) + - Joseph Dykstra (josephdykstra@gmail.com) + - Parsha Pourkhomami (parshap+git@gmail.com) + - Damjan Košir (damjan.kosir@gmail.com) + - daverayment (dave.rayment@gmail.com) + - kawanet (u-suke@kawa.net) + - Linus Unnebäck (linus@folkdatorn.se) + - Nolan Lawson (nolan.lawson@gmail.com) + - Calvin Metcalf (calvin.metcalf@gmail.com) + - Koki Takahashi (hakatasiloving@gmail.com) + - Guy Bedford (guybedford@gmail.com) + - Jan Schär (jscissr@gmail.com) + - RaulTsc (tomescu.raul@gmail.com) + - Matthieu Monsch (monsch@alum.mit.edu) + - Dan Ehrenberg (littledan@chromium.org) + - Kirill Fomichev (fanatid@ya.ru) + - Yusuke Kawasaki (u-suke@kawa.net) + - DC (dcposch@dcpos.ch) + - John-David Dalton (john.david.dalton@gmail.com) + - adventure-yunfei (adventure030@gmail.com) + - Emil Bay (github@tixz.dk) + - Sam Sudar (sudar.sam@gmail.com) + - Volker Mische (volker.mische@gmail.com) + - David Walton (support@geekstocks.com) + - Сковорода Никита Андреевич (chalkerx@gmail.com) + - greenkeeper[bot] (greenkeeper[bot]@users.noreply.github.com) + - ukstv (sergey.ukustov@machinomy.com) + - Renée Kooi (renee@kooi.me) + - ranbochen (ranbochen@qq.com) + - Vladimir Borovik (bobahbdb@gmail.com) + - greenkeeper[bot] (23040076+greenkeeper[bot]@users.noreply.github.com) + - kumavis (aaron@kumavis.me) + - Sergey Ukustov (sergey.ukustov@machinomy.com) + - Fei Liu (liu.feiwood@gmail.com) + - Blaine Bublitz (blaine.bublitz@gmail.com) + - clement (clement@seald.io) + - Koushik Dutta (koushd@gmail.com) + - Jordan Harband (ljharb@gmail.com) + - Niklas Mischkulnig (mischnic@users.noreply.github.com) + - Nikolai Vavilov (vvnicholas@gmail.com) + - Fedor Nezhivoi (gyzerok@users.noreply.github.com) + - Peter Newman (peternewman@users.noreply.github.com) + - mathmakgakpak (44949126+mathmakgakpak@users.noreply.github.com) + - jkkang (jkkang@smartauth.kr) + + #### Generated by bin/update-authors.sh. diff --git a/.licenses/npm/buffers.dep.yml b/.licenses/npm/buffers.dep.yml new file mode 100644 index 000000000..c9d12da9d --- /dev/null +++ b/.licenses/npm/buffers.dep.yml @@ -0,0 +1,9 @@ +--- +name: buffers +version: 0.1.1 +type: npm +summary: Treat a collection of Buffers as a single contiguous partially mutable Buffer. +homepage: +license: none +licenses: [] +notices: [] diff --git a/.licenses/npm/builder-util-runtime.dep.yml b/.licenses/npm/builder-util-runtime.dep.yml new file mode 100644 index 000000000..28253a7bb --- /dev/null +++ b/.licenses/npm/builder-util-runtime.dep.yml @@ -0,0 +1,34 @@ +--- +name: builder-util-runtime +version: 8.9.2 +type: npm +summary: +homepage: https://github.com/electron-userland/electron-builder +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Loopline Systems + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/busboy.dep.yml b/.licenses/npm/busboy.dep.yml new file mode 100644 index 000000000..7a647fc21 --- /dev/null +++ b/.licenses/npm/busboy.dep.yml @@ -0,0 +1,30 @@ +--- +name: busboy +version: 1.6.0 +type: npm +summary: A streaming parser for HTML form data for node.js +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + Copyright Brian White. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/bytes.dep.yml b/.licenses/npm/bytes.dep.yml new file mode 100644 index 000000000..17526bcf8 --- /dev/null +++ b/.licenses/npm/bytes.dep.yml @@ -0,0 +1,46 @@ +--- +name: bytes +version: 3.1.2 +type: npm +summary: Utility to parse a string bytes to bytes and vice-versa +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012-2014 TJ Holowaychuk + Copyright (c) 2015 Jed Watson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/visionmedia/bytes.js/master?label=ci + [ci-url]: https://github.com/visionmedia/bytes.js/actions?query=workflow%3Aci + [coveralls-image]: https://badgen.net/coveralls/c/github/visionmedia/bytes.js/master + [coveralls-url]: https://coveralls.io/r/visionmedia/bytes.js?branch=master + [downloads-image]: https://badgen.net/npm/dm/bytes + [downloads-url]: https://npmjs.org/package/bytes + [npm-image]: https://badgen.net/npm/v/bytes + [npm-url]: https://npmjs.org/package/bytes +notices: [] diff --git a/.licenses/npm/cacheable-lookup-5.0.4.dep.yml b/.licenses/npm/cacheable-lookup-5.0.4.dep.yml new file mode 100644 index 000000000..48d75d02d --- /dev/null +++ b/.licenses/npm/cacheable-lookup-5.0.4.dep.yml @@ -0,0 +1,34 @@ +--- +name: cacheable-lookup +version: 5.0.4 +type: npm +summary: A cacheable dns.lookup(…) that respects the TTL +homepage: https://github.com/szmarczak/cacheable-lookup#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/cacheable-lookup-7.0.0.dep.yml b/.licenses/npm/cacheable-lookup-7.0.0.dep.yml new file mode 100644 index 000000000..1207a2b94 --- /dev/null +++ b/.licenses/npm/cacheable-lookup-7.0.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: cacheable-lookup +version: 7.0.0 +type: npm +summary: A cacheable dns.lookup(…) that respects TTL +homepage: https://github.com/szmarczak/cacheable-lookup#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/cacheable-request-10.2.14.dep.yml b/.licenses/npm/cacheable-request-10.2.14.dep.yml new file mode 100644 index 000000000..679d6725c --- /dev/null +++ b/.licenses/npm/cacheable-request-10.2.14.dep.yml @@ -0,0 +1,12 @@ +--- +name: cacheable-request +version: 10.2.14 +type: npm +summary: Wrap native HTTP requests with RFC compliant cache support +homepage: +license: mit +licenses: +- sources: README.md + text: "This project is under the [MIT](LICENSE) license. \n\nMIT © Luke Childs 2017-2021 + and Jared Wray 2022+" +notices: [] diff --git a/.licenses/npm/cacheable-request-7.0.4.dep.yml b/.licenses/npm/cacheable-request-7.0.4.dep.yml new file mode 100644 index 000000000..f7b1d98d4 --- /dev/null +++ b/.licenses/npm/cacheable-request-7.0.4.dep.yml @@ -0,0 +1,34 @@ +--- +name: cacheable-request +version: 7.0.4 +type: npm +summary: Wrap native HTTP requests with RFC compliant cache support +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017 Luke Childs + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT © Luke Childs +notices: [] diff --git a/.licenses/npm/call-bind-apply-helpers.dep.yml b/.licenses/npm/call-bind-apply-helpers.dep.yml new file mode 100644 index 000000000..bfd264f37 --- /dev/null +++ b/.licenses/npm/call-bind-apply-helpers.dep.yml @@ -0,0 +1,32 @@ +--- +name: call-bind-apply-helpers +version: 1.0.2 +type: npm +summary: Helper functions around Function call/apply/bind, for use in `call-bind` +homepage: https://github.com/ljharb/call-bind-apply-helpers#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/call-bind.dep.yml b/.licenses/npm/call-bind.dep.yml new file mode 100644 index 000000000..02f35ffcb --- /dev/null +++ b/.licenses/npm/call-bind.dep.yml @@ -0,0 +1,32 @@ +--- +name: call-bind +version: 1.0.8 +type: npm +summary: Robustly `.call.bind()` a function +homepage: https://github.com/ljharb/call-bind#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/call-bound.dep.yml b/.licenses/npm/call-bound.dep.yml new file mode 100644 index 000000000..b01361686 --- /dev/null +++ b/.licenses/npm/call-bound.dep.yml @@ -0,0 +1,32 @@ +--- +name: call-bound +version: 1.0.4 +type: npm +summary: Robust call-bound JavaScript intrinsics, using `call-bind` and `get-intrinsic`. +homepage: https://github.com/ljharb/call-bound#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/callsites.dep.yml b/.licenses/npm/callsites.dep.yml new file mode 100644 index 000000000..73365f856 --- /dev/null +++ b/.licenses/npm/callsites.dep.yml @@ -0,0 +1,22 @@ +--- +name: callsites +version: 3.1.0 +type: npm +summary: Get callsites from the V8 stack trace API +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/camelcase.dep.yml b/.licenses/npm/camelcase.dep.yml new file mode 100644 index 000000000..95b2d1194 --- /dev/null +++ b/.licenses/npm/camelcase.dep.yml @@ -0,0 +1,23 @@ +--- +name: camelcase +version: 5.3.1 +type: npm +summary: 'Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: + `foo-bar` → `fooBar`' +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/chainsaw.dep.yml b/.licenses/npm/chainsaw.dep.yml new file mode 100644 index 000000000..692ef61c6 --- /dev/null +++ b/.licenses/npm/chainsaw.dep.yml @@ -0,0 +1,9 @@ +--- +name: chainsaw +version: 0.1.0 +type: npm +summary: Build chainable fluent interfaces the easy way... with a freakin' chainsaw! +homepage: +license: none +licenses: [] +notices: [] diff --git a/.licenses/npm/chalk.dep.yml b/.licenses/npm/chalk.dep.yml new file mode 100644 index 000000000..c18399525 --- /dev/null +++ b/.licenses/npm/chalk.dep.yml @@ -0,0 +1,20 @@ +--- +name: chalk +version: 4.1.2 +type: npm +summary: Terminal string styling done right +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/character-entities.dep.yml b/.licenses/npm/character-entities.dep.yml new file mode 100644 index 000000000..64e7da571 --- /dev/null +++ b/.licenses/npm/character-entities.dep.yml @@ -0,0 +1,74 @@ +--- +name: character-entities +version: 2.0.2 +type: npm +summary: Map of named character references +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/wooorm/character-entities/workflows/main/badge.svg + + [build]: https://github.com/wooorm/character-entities/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/character-entities.svg + + [coverage]: https://codecov.io/github/wooorm/character-entities + + [downloads-badge]: https://img.shields.io/npm/dm/character-entities.svg + + [downloads]: https://www.npmjs.com/package/character-entities + + [size-badge]: https://img.shields.io/bundlephobia/minzip/character-entities.svg + + [size]: https://bundlephobia.com/result?p=character-entities + + [npm]: https://docs.npmjs.com/cli/install + + [esmsh]: https://esm.sh + + [license]: license + + [author]: https://wooorm.com + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [typescript]: https://www.typescriptlang.org + + [contribute]: https://opensource.guide/how-to-contribute/ + + [parse-entities]: https://github.com/wooorm/parse-entities + + [stringify-entities]: https://github.com/wooorm/stringify-entities + + [html]: https://html.spec.whatwg.org/multipage/syntax.html#named-character-references +notices: [] diff --git a/.licenses/npm/chownr-1.1.4.dep.yml b/.licenses/npm/chownr-1.1.4.dep.yml new file mode 100644 index 000000000..c8c15ad20 --- /dev/null +++ b/.licenses/npm/chownr-1.1.4.dep.yml @@ -0,0 +1,26 @@ +--- +name: chownr +version: 1.1.4 +type: npm +summary: like `chown -R` +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/chownr-2.0.0.dep.yml b/.licenses/npm/chownr-2.0.0.dep.yml new file mode 100644 index 000000000..d9204c1cd --- /dev/null +++ b/.licenses/npm/chownr-2.0.0.dep.yml @@ -0,0 +1,26 @@ +--- +name: chownr +version: 2.0.0 +type: npm +summary: like `chown -R` +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/classnames.dep.yml b/.licenses/npm/classnames.dep.yml new file mode 100644 index 000000000..be453aa52 --- /dev/null +++ b/.licenses/npm/classnames.dep.yml @@ -0,0 +1,32 @@ +--- +name: classnames +version: 2.5.1 +type: npm +summary: A simple utility for conditionally joining classNames together +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2018 Jed Watson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/clean-stack-2.2.0.dep.yml b/.licenses/npm/clean-stack-2.2.0.dep.yml new file mode 100644 index 000000000..2d28ca983 --- /dev/null +++ b/.licenses/npm/clean-stack-2.2.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: clean-stack +version: 2.2.0 +type: npm +summary: Clean up error stack traces +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/clean-stack-4.2.0.dep.yml b/.licenses/npm/clean-stack-4.2.0.dep.yml new file mode 100644 index 000000000..d33d9e534 --- /dev/null +++ b/.licenses/npm/clean-stack-4.2.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: clean-stack +version: 4.2.0 +type: npm +summary: Clean up error stack traces +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/cli-cursor.dep.yml b/.licenses/npm/cli-cursor.dep.yml new file mode 100644 index 000000000..0c43b8664 --- /dev/null +++ b/.licenses/npm/cli-cursor.dep.yml @@ -0,0 +1,20 @@ +--- +name: cli-cursor +version: 3.1.0 +type: npm +summary: Toggle the CLI cursor +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/cli-truncate.dep.yml b/.licenses/npm/cli-truncate.dep.yml new file mode 100644 index 000000000..19417e59d --- /dev/null +++ b/.licenses/npm/cli-truncate.dep.yml @@ -0,0 +1,20 @@ +--- +name: cli-truncate +version: 2.1.0 +type: npm +summary: Truncate a string to a specific width in the terminal +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/cliui-6.0.0.dep.yml b/.licenses/npm/cliui-6.0.0.dep.yml new file mode 100644 index 000000000..e564c713b --- /dev/null +++ b/.licenses/npm/cliui-6.0.0.dep.yml @@ -0,0 +1,25 @@ +--- +name: cliui +version: 6.0.0 +type: npm +summary: easily create complex multi-column command-line-interfaces +homepage: +license: isc +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2015, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/cliui-8.0.1.dep.yml b/.licenses/npm/cliui-8.0.1.dep.yml new file mode 100644 index 000000000..63bfeb61f --- /dev/null +++ b/.licenses/npm/cliui-8.0.1.dep.yml @@ -0,0 +1,25 @@ +--- +name: cliui +version: 8.0.1 +type: npm +summary: easily create complex multi-column command-line-interfaces +homepage: +license: isc +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2015, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/clone-buffer.dep.yml b/.licenses/npm/clone-buffer.dep.yml new file mode 100644 index 000000000..85f1a54ae --- /dev/null +++ b/.licenses/npm/clone-buffer.dep.yml @@ -0,0 +1,51 @@ +--- +name: clone-buffer +version: 1.0.0 +type: npm +summary: Easier Buffer cloning in node. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Blaine Bublitz , Eric Schoffstall and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + MIT + + [downloads-image]: http://img.shields.io/npm/dm/clone-buffer.svg + [npm-url]: https://npmjs.org/package/clone-buffer + [npm-image]: http://img.shields.io/npm/v/clone-buffer.svg + + [travis-url]: https://travis-ci.org/gulpjs/clone-buffer + [travis-image]: http://img.shields.io/travis/gulpjs/clone-buffer.svg?label=travis-ci + + [appveyor-url]: https://ci.appveyor.com/project/gulpjs/clone-buffer + [appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/clone-buffer.svg?label=appveyor + + [coveralls-url]: https://coveralls.io/r/gulpjs/clone-buffer + [coveralls-image]: http://img.shields.io/coveralls/gulpjs/clone-buffer/master.svg + + [gitter-url]: https://gitter.im/gulpjs/gulp + [gitter-image]: https://badges.gitter.im/gulpjs/gulp.png +notices: [] diff --git a/.licenses/npm/clone-response.dep.yml b/.licenses/npm/clone-response.dep.yml new file mode 100644 index 000000000..6cbbc5086 --- /dev/null +++ b/.licenses/npm/clone-response.dep.yml @@ -0,0 +1,34 @@ +--- +name: clone-response +version: 1.0.3 +type: npm +summary: Clone a Node.js HTTP response stream +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017 Luke Childs + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT © Luke Childs +notices: [] diff --git a/.licenses/npm/clone-stats.dep.yml b/.licenses/npm/clone-stats.dep.yml new file mode 100644 index 000000000..4cf1e8c47 --- /dev/null +++ b/.licenses/npm/clone-stats.dep.yml @@ -0,0 +1,35 @@ +--- +name: clone-stats +version: 1.0.0 +type: npm +summary: Safely clone node's fs.Stats instances without losing their class methods +homepage: https://github.com/hughsk/clone-stats +license: mit +licenses: +- sources: LICENSE.md + text: | + ## The MIT License (MIT) ## + + Copyright (c) 2014 Hugh Kennedy + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT. See [LICENSE.md](http://github.com/hughsk/clone-stats/blob/master/LICENSE.md) + for details. +notices: [] diff --git a/.licenses/npm/clone.dep.yml b/.licenses/npm/clone.dep.yml new file mode 100644 index 000000000..f0d4b2bc8 --- /dev/null +++ b/.licenses/npm/clone.dep.yml @@ -0,0 +1,50 @@ +--- +name: clone +version: 2.1.2 +type: npm +summary: deep cloning of objects and arrays +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright © 2011-2015 Paul Vorbach + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the “Software”), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2011-2016 [Paul Vorbach](https://paul.vorba.ch/) and + [contributors](https://github.com/pvorb/clone/graphs/contributors). + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the “Software”), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/cloneable-readable.dep.yml b/.licenses/npm/cloneable-readable.dep.yml new file mode 100644 index 000000000..11387b0bb --- /dev/null +++ b/.licenses/npm/cloneable-readable.dep.yml @@ -0,0 +1,34 @@ +--- +name: cloneable-readable +version: 1.1.3 +type: npm +summary: Clone a Readable stream, safely +homepage: https://github.com/mcollina/cloneable-readable#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Matteo Collina + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/clsx.dep.yml b/.licenses/npm/clsx.dep.yml new file mode 100644 index 000000000..f2579d523 --- /dev/null +++ b/.licenses/npm/clsx.dep.yml @@ -0,0 +1,22 @@ +--- +name: clsx +version: 2.1.1 +type: npm +summary: A tiny (239B) utility for constructing className strings conditionally. +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Luke Edwards (lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/code-point-at.dep.yml b/.licenses/npm/code-point-at.dep.yml new file mode 100644 index 000000000..ff9fbbe42 --- /dev/null +++ b/.licenses/npm/code-point-at.dep.yml @@ -0,0 +1,34 @@ +--- +name: code-point-at +version: 1.1.0 +type: npm +summary: ES2015 `String#codePointAt()` ponyfill +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/color-convert.dep.yml b/.licenses/npm/color-convert.dep.yml new file mode 100644 index 000000000..5a7944b2b --- /dev/null +++ b/.licenses/npm/color-convert.dep.yml @@ -0,0 +1,36 @@ +--- +name: color-convert +version: 2.0.1 +type: npm +summary: Plain color conversion functions +homepage: +license: other +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2011-2016 Heather Arthur + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: Copyright © 2011-2016, Heather Arthur and Josh Junon. Licensed under + the [MIT License](LICENSE). +notices: [] +... diff --git a/.licenses/npm/color-name.dep.yml b/.licenses/npm/color-name.dep.yml new file mode 100644 index 000000000..180104bf9 --- /dev/null +++ b/.licenses/npm/color-name.dep.yml @@ -0,0 +1,19 @@ +--- +name: color-name +version: 1.1.4 +type: npm +summary: A list of color names and its values +homepage: https://github.com/colorjs/color-name +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + Copyright (c) 2015 Dmitry Ivanov + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/color-support.dep.yml b/.licenses/npm/color-support.dep.yml new file mode 100644 index 000000000..4ee6df786 --- /dev/null +++ b/.licenses/npm/color-support.dep.yml @@ -0,0 +1,26 @@ +--- +name: color-support +version: 1.1.3 +type: npm +summary: A module which will endeavor to guess your terminal's level of color support. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/colorette.dep.yml b/.licenses/npm/colorette.dep.yml new file mode 100644 index 000000000..f3fcfb009 --- /dev/null +++ b/.licenses/npm/colorette.dep.yml @@ -0,0 +1,20 @@ +--- +name: colorette +version: 2.0.20 +type: npm +summary: "\U0001F308Easily set your terminal text color & styles." +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + Copyright © Jorge Bucaran <> + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE.md)" +notices: [] diff --git a/.licenses/npm/combined-stream.dep.yml b/.licenses/npm/combined-stream.dep.yml new file mode 100644 index 000000000..2b392155d --- /dev/null +++ b/.licenses/npm/combined-stream.dep.yml @@ -0,0 +1,32 @@ +--- +name: combined-stream +version: 1.0.8 +type: npm +summary: A stream that emits multiple other streams one after another. +homepage: https://github.com/felixge/node-combined-stream +license: mit +licenses: +- sources: License + text: | + Copyright (c) 2011 Debuggable Limited + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: Readme.md + text: combined-stream is licensed under the MIT license. +notices: [] diff --git a/.licenses/npm/comma-separated-tokens.dep.yml b/.licenses/npm/comma-separated-tokens.dep.yml new file mode 100644 index 000000000..c2f192c2a --- /dev/null +++ b/.licenses/npm/comma-separated-tokens.dep.yml @@ -0,0 +1,72 @@ +--- +name: comma-separated-tokens +version: 2.0.3 +type: npm +summary: Parse and stringify comma-separated tokens +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/wooorm/comma-separated-tokens/workflows/main/badge.svg + + [build]: https://github.com/wooorm/comma-separated-tokens/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/comma-separated-tokens.svg + + [coverage]: https://codecov.io/github/wooorm/comma-separated-tokens + + [downloads-badge]: https://img.shields.io/npm/dm/comma-separated-tokens.svg + + [downloads]: https://www.npmjs.com/package/comma-separated-tokens + + [size-badge]: https://img.shields.io/bundlephobia/minzip/comma-separated-tokens.svg + + [size]: https://bundlephobia.com/result?p=comma-separated-tokens + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [contribute]: https://opensource.guide/how-to-contribute/ + + [license]: license + + [author]: https://wooorm.com + + [spec]: https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#comma-separated-tokens + + [hast]: https://github.com/syntax-tree/hast +notices: [] diff --git a/.licenses/npm/commander-2.20.3.dep.yml b/.licenses/npm/commander-2.20.3.dep.yml new file mode 100644 index 000000000..39d21b821 --- /dev/null +++ b/.licenses/npm/commander-2.20.3.dep.yml @@ -0,0 +1,35 @@ +--- +name: commander +version: 2.20.3 +type: npm +summary: the complete solution for node.js command-line programs +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2011 TJ Holowaychuk + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: "[MIT](https://github.com/tj/commander.js/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/commander-6.2.1.dep.yml b/.licenses/npm/commander-6.2.1.dep.yml new file mode 100644 index 000000000..7af8a2c32 --- /dev/null +++ b/.licenses/npm/commander-6.2.1.dep.yml @@ -0,0 +1,33 @@ +--- +name: commander +version: 6.2.1 +type: npm +summary: the complete solution for node.js command-line programs +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2011 TJ Holowaychuk + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/component-emitter.dep.yml b/.licenses/npm/component-emitter.dep.yml new file mode 100644 index 000000000..905893335 --- /dev/null +++ b/.licenses/npm/component-emitter.dep.yml @@ -0,0 +1,37 @@ +--- +name: component-emitter +version: 1.3.1 +type: npm +summary: Event emitter +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Component contributors + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/computed-style.dep.yml b/.licenses/npm/computed-style.dep.yml new file mode 100644 index 000000000..a1d639bab --- /dev/null +++ b/.licenses/npm/computed-style.dep.yml @@ -0,0 +1,38 @@ +--- +name: computed-style +version: 0.1.4 +type: npm +summary: Cross-browser currentStyle/getComputedStyle implementation +homepage: https://github.com/twolfson/computedStyle +license: mit +licenses: +- sources: LICENSE-MIT + text: | + Copyright (c) 2013 Todd Wolfson + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2013 Todd Wolfson + + Licensed under the MIT license. +notices: [] diff --git a/.licenses/npm/concat-map.dep.yml b/.licenses/npm/concat-map.dep.yml new file mode 100644 index 000000000..3b736f5b3 --- /dev/null +++ b/.licenses/npm/concat-map.dep.yml @@ -0,0 +1,31 @@ +--- +name: concat-map +version: 0.0.1 +type: npm +summary: concatenative mapdashery +homepage: +license: other +licenses: +- sources: LICENSE + text: | + This software is released under the MIT license: + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/concat-stream.dep.yml b/.licenses/npm/concat-stream.dep.yml new file mode 100644 index 000000000..3ab8a0fd7 --- /dev/null +++ b/.licenses/npm/concat-stream.dep.yml @@ -0,0 +1,27 @@ +--- +name: concat-stream +version: 1.6.2 +type: npm +summary: writable stream that concatenates strings or binary data and calls a callback + with the result +homepage: +license: mit +licenses: +- sources: LICENSE + text: "The MIT License\n\nCopyright (c) 2013 Max Ogden\n\nPermission is hereby granted, + free of charge, \nto any person obtaining a copy of this software and \nassociated + documentation files (the \"Software\"), to \ndeal in the Software without restriction, + including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, + distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons + to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe + above copyright notice and this permission notice \nshall be included in all copies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE." +- sources: readme.md + text: MIT LICENSE +notices: [] diff --git a/.licenses/npm/conf.dep.yml b/.licenses/npm/conf.dep.yml new file mode 100644 index 000000000..e90261890 --- /dev/null +++ b/.licenses/npm/conf.dep.yml @@ -0,0 +1,20 @@ +--- +name: conf +version: 10.2.0 +type: npm +summary: Simple config handling for your app or module +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/console-control-strings.dep.yml b/.licenses/npm/console-control-strings.dep.yml new file mode 100644 index 000000000..af82d79fc --- /dev/null +++ b/.licenses/npm/console-control-strings.dep.yml @@ -0,0 +1,26 @@ +--- +name: console-control-strings +version: 1.1.0 +type: npm +summary: A library of cross-platform tested terminal/console command strings for doing + things like color and cursor positioning. This is a subset of both ansi and vt100. All + control codes included work on both Windows & Unix-like OSes, except where noted. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/content-disposition.dep.yml b/.licenses/npm/content-disposition.dep.yml new file mode 100644 index 000000000..023290c5a --- /dev/null +++ b/.licenses/npm/content-disposition.dep.yml @@ -0,0 +1,47 @@ +--- +name: content-disposition +version: 0.5.4 +type: npm +summary: Create and parse Content-Disposition header +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2017 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/content-disposition.svg + [npm-url]: https://npmjs.org/package/content-disposition + [node-version-image]: https://img.shields.io/node/v/content-disposition.svg + [node-version-url]: https://nodejs.org/en/download + [coveralls-image]: https://img.shields.io/coveralls/jshttp/content-disposition.svg + [coveralls-url]: https://coveralls.io/r/jshttp/content-disposition?branch=master + [downloads-image]: https://img.shields.io/npm/dm/content-disposition.svg + [downloads-url]: https://npmjs.org/package/content-disposition + [github-actions-ci-image]: https://img.shields.io/github/workflow/status/jshttp/content-disposition/ci/master?label=ci + [github-actions-ci-url]: https://github.com/jshttp/content-disposition?query=workflow%3Aci +notices: [] diff --git a/.licenses/npm/content-type.dep.yml b/.licenses/npm/content-type.dep.yml new file mode 100644 index 000000000..f42a7a670 --- /dev/null +++ b/.licenses/npm/content-type.dep.yml @@ -0,0 +1,46 @@ +--- +name: content-type +version: 1.0.5 +type: npm +summary: Create and parse HTTP Content-Type header +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/content-type/master?label=ci + [ci-url]: https://github.com/jshttp/content-type/actions/workflows/ci.yml + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/content-type/master + [coveralls-url]: https://coveralls.io/r/jshttp/content-type?branch=master + [node-image]: https://badgen.net/npm/node/content-type + [node-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/content-type + [npm-url]: https://npmjs.org/package/content-type + [npm-version-image]: https://badgen.net/npm/v/content-type +notices: [] diff --git a/.licenses/npm/convert-source-map.dep.yml b/.licenses/npm/convert-source-map.dep.yml new file mode 100644 index 000000000..6d7daf515 --- /dev/null +++ b/.licenses/npm/convert-source-map.dep.yml @@ -0,0 +1,25 @@ +--- +name: convert-source-map +version: 1.9.0 +type: npm +summary: Converts a source-map from/to different formats and allows adding/changing + properties. +homepage: https://github.com/thlorenz/convert-source-map +license: mit +licenses: +- sources: LICENSE + text: "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby + granted, free of charge, to any person\nobtaining a copy of this software and + associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, + including without limitation the rights to use,\ncopy, modify, merge, publish, + distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons + to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe + above copyright notice and this permission notice shall be\nincluded in all copies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO + THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES + OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE + SOFTWARE.\n" +notices: [] diff --git a/.licenses/npm/cookie-0.4.2.dep.yml b/.licenses/npm/cookie-0.4.2.dep.yml new file mode 100644 index 000000000..e477f1347 --- /dev/null +++ b/.licenses/npm/cookie-0.4.2.dep.yml @@ -0,0 +1,48 @@ +--- +name: cookie +version: 0.4.2 +type: npm +summary: HTTP server cookie parsing and serialization +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + (The MIT License) + + Copyright (c) 2012-2014 Roman Shtylman + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: |- + [MIT](LICENSE) + + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/cookie/master + [coveralls-url]: https://coveralls.io/r/jshttp/cookie?branch=master + [github-actions-ci-image]: https://img.shields.io/github/workflow/status/jshttp/cookie/ci/master?label=ci + [github-actions-ci-url]: https://github.com/jshttp/cookie/actions/workflows/ci.yml + [node-version-image]: https://badgen.net/npm/node/cookie + [node-version-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/cookie + [npm-url]: https://npmjs.org/package/cookie + [npm-version-image]: https://badgen.net/npm/v/cookie +notices: [] diff --git a/.licenses/npm/cookie-0.7.1.dep.yml b/.licenses/npm/cookie-0.7.1.dep.yml new file mode 100644 index 000000000..7bfcf459c --- /dev/null +++ b/.licenses/npm/cookie-0.7.1.dep.yml @@ -0,0 +1,48 @@ +--- +name: cookie +version: 0.7.1 +type: npm +summary: HTTP server cookie parsing and serialization +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + (The MIT License) + + Copyright (c) 2012-2014 Roman Shtylman + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/cookie/master?label=ci + [ci-url]: https://github.com/jshttp/cookie/actions/workflows/ci.yml + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/cookie/master + [coveralls-url]: https://coveralls.io/r/jshttp/cookie?branch=master + [node-image]: https://badgen.net/npm/node/cookie + [node-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/cookie + [npm-url]: https://npmjs.org/package/cookie + [npm-version-image]: https://badgen.net/npm/v/cookie +notices: [] diff --git a/.licenses/npm/cookie-0.7.2.dep.yml b/.licenses/npm/cookie-0.7.2.dep.yml new file mode 100644 index 000000000..a4f90fe65 --- /dev/null +++ b/.licenses/npm/cookie-0.7.2.dep.yml @@ -0,0 +1,48 @@ +--- +name: cookie +version: 0.7.2 +type: npm +summary: HTTP server cookie parsing and serialization +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + (The MIT License) + + Copyright (c) 2012-2014 Roman Shtylman + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/cookie/master?label=ci + [ci-url]: https://github.com/jshttp/cookie/actions/workflows/ci.yml + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/cookie/master + [coveralls-url]: https://coveralls.io/r/jshttp/cookie?branch=master + [node-image]: https://badgen.net/npm/node/cookie + [node-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/cookie + [npm-url]: https://npmjs.org/package/cookie + [npm-version-image]: https://badgen.net/npm/v/cookie +notices: [] diff --git a/.licenses/npm/cookie-signature.dep.yml b/.licenses/npm/cookie-signature.dep.yml new file mode 100644 index 000000000..7e176c643 --- /dev/null +++ b/.licenses/npm/cookie-signature.dep.yml @@ -0,0 +1,33 @@ +--- +name: cookie-signature +version: 1.0.6 +type: npm +summary: Sign and unsign cookies +homepage: +license: mit +licenses: +- sources: Readme.md + text: |- + (The MIT License) + + Copyright (c) 2012 LearnBoost <tj@learnboost.com> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/cookiejar.dep.yml b/.licenses/npm/cookiejar.dep.yml new file mode 100644 index 000000000..189f96e42 --- /dev/null +++ b/.licenses/npm/cookiejar.dep.yml @@ -0,0 +1,24 @@ +--- +name: cookiejar +version: 2.1.4 +type: npm +summary: simple persistent cookiejar system +homepage: +license: mit +licenses: +- sources: LICENSE + text: "The MIT License (MIT)\nCopyright (c) 2013 Bradley Meck \n\nPermission is + hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the \"Software\"), to deal in the Software + without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and + to permit persons to whom the Software is furnished to do so, subject to the following + conditions:\n\nThe above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" +notices: [] diff --git a/.licenses/npm/core-util-is.dep.yml b/.licenses/npm/core-util-is.dep.yml new file mode 100644 index 000000000..3cb4b4d7a --- /dev/null +++ b/.licenses/npm/core-util-is.dep.yml @@ -0,0 +1,30 @@ +--- +name: core-util-is +version: 1.0.3 +type: npm +summary: The `util.is*` functions introduced in Node v0.12. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright Node.js contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/cors.dep.yml b/.licenses/npm/cors.dep.yml new file mode 100644 index 000000000..129abdd85 --- /dev/null +++ b/.licenses/npm/cors.dep.yml @@ -0,0 +1,35 @@ +--- +name: cors +version: 2.8.5 +type: npm +summary: Node.js CORS middleware +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2013 Troy Goode + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT License](http://www.opensource.org/licenses/mit-license.php)" +notices: [] diff --git a/.licenses/npm/cosmiconfig.dep.yml b/.licenses/npm/cosmiconfig.dep.yml new file mode 100644 index 000000000..c2b7e30a0 --- /dev/null +++ b/.licenses/npm/cosmiconfig.dep.yml @@ -0,0 +1,35 @@ +--- +name: cosmiconfig +version: 7.1.0 +type: npm +summary: Find and load configuration from a package.json property, rc file, or CommonJS + module +homepage: https://github.com/davidtheclark/cosmiconfig#readme +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 David Clark + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/cross-fetch.dep.yml b/.licenses/npm/cross-fetch.dep.yml new file mode 100644 index 000000000..65b4cfe90 --- /dev/null +++ b/.licenses/npm/cross-fetch.dep.yml @@ -0,0 +1,35 @@ +--- +name: cross-fetch +version: 3.2.0 +type: npm +summary: Universal WHATWG Fetch API for Node, Browsers and React Native +homepage: https://github.com/lquixada/cross-fetch +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2017 Leonardo Quixadá + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: cross-fetch is licensed under the [MIT license](https://github.com/lquixada/cross-fetch/blob/main/LICENSE) + © [Leonardo Quixadá](https://twitter.com/lquixada/) +notices: [] diff --git a/.licenses/npm/cross-spawn-4.0.2.dep.yml b/.licenses/npm/cross-spawn-4.0.2.dep.yml new file mode 100644 index 000000000..af967b746 --- /dev/null +++ b/.licenses/npm/cross-spawn-4.0.2.dep.yml @@ -0,0 +1,32 @@ +--- +name: cross-spawn +version: 4.0.2 +type: npm +summary: Cross platform child_process#spawn and child_process#spawnSync +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014 IndigoUnited + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is furnished + to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: Released under the [MIT License](http://www.opensource.org/licenses/mit-license.php). +notices: [] diff --git a/.licenses/npm/cross-spawn-7.0.6.dep.yml b/.licenses/npm/cross-spawn-7.0.6.dep.yml new file mode 100644 index 000000000..88c20a1af --- /dev/null +++ b/.licenses/npm/cross-spawn-7.0.6.dep.yml @@ -0,0 +1,34 @@ +--- +name: cross-spawn +version: 7.0.6 +type: npm +summary: Cross platform child_process#spawn and child_process#spawnSync +homepage: https://github.com/moxystudio/node-cross-spawn +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2018 Made With MOXY Lda + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: Released under the [MIT License](https://www.opensource.org/licenses/mit-license.php). +notices: [] diff --git a/.licenses/npm/crypto-js.dep.yml b/.licenses/npm/crypto-js.dep.yml new file mode 100644 index 000000000..dcb75bc31 --- /dev/null +++ b/.licenses/npm/crypto-js.dep.yml @@ -0,0 +1,25 @@ +--- +name: crypto-js +version: 4.2.0 +type: npm +summary: JavaScript library of crypto standards. +homepage: http://github.com/brix/crypto-js +license: other +licenses: +- sources: LICENSE + text: "# License\n\n[The MIT License (MIT)](http://opensource.org/licenses/MIT)\n\nCopyright + (c) 2009-2013 Jeff Mott \nCopyright (c) 2013-2016 Evan Vosberg\n\nPermission + is hereby granted, free of charge, to any person obtaining a copy\nof this software + and associated documentation files (the \"Software\"), to deal\nin the Software + without restriction, including without limitation the rights\nto use, copy, modify, + merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and + to permit persons to whom the Software is\nfurnished to do so, subject to the + following conditions:\n\nThe above copyright notice and this permission notice + shall be included in\nall copies or substantial portions of the Software.\n\nTHE + SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" +notices: [] diff --git a/.licenses/npm/cssstyle.dep.yml b/.licenses/npm/cssstyle.dep.yml new file mode 100644 index 000000000..9d8fc3c1b --- /dev/null +++ b/.licenses/npm/cssstyle.dep.yml @@ -0,0 +1,31 @@ +--- +name: cssstyle +version: 3.0.0 +type: npm +summary: CSSStyleDeclaration Object Model implementation +homepage: https://github.com/jsdom/cssstyle +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Chad Walker + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/csstype.dep.yml b/.licenses/npm/csstype.dep.yml new file mode 100644 index 000000000..007ff0041 --- /dev/null +++ b/.licenses/npm/csstype.dep.yml @@ -0,0 +1,30 @@ +--- +name: csstype +version: 3.1.3 +type: npm +summary: Strict TypeScript and Flow types for style based on MDN data +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2017-2018 Fredrik Nicol + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/data-uri-to-buffer.dep.yml b/.licenses/npm/data-uri-to-buffer.dep.yml new file mode 100644 index 000000000..4fd3cc707 --- /dev/null +++ b/.licenses/npm/data-uri-to-buffer.dep.yml @@ -0,0 +1,35 @@ +--- +name: data-uri-to-buffer +version: 4.0.1 +type: npm +summary: Generate a Buffer instance from a Data URI string +homepage: https://github.com/TooTallNate/node-data-uri-to-buffer +license: mit +licenses: +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + [rfc]: http://tools.ietf.org/html/rfc2397 +notices: [] diff --git a/.licenses/npm/data-urls.dep.yml b/.licenses/npm/data-urls.dep.yml new file mode 100644 index 000000000..17af65226 --- /dev/null +++ b/.licenses/npm/data-urls.dep.yml @@ -0,0 +1,18 @@ +--- +name: data-urls +version: 4.0.0 +type: npm +summary: 'Parses data: URLs' +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright © Domenic Denicola + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/dateformat.dep.yml b/.licenses/npm/dateformat.dep.yml new file mode 100644 index 000000000..309304744 --- /dev/null +++ b/.licenses/npm/dateformat.dep.yml @@ -0,0 +1,37 @@ +--- +name: dateformat +version: 3.0.3 +type: npm +summary: A node.js package for Steven Levithan's excellent dateFormat() function. +homepage: https://github.com/felixge/node-dateformat +license: mit +licenses: +- sources: LICENSE + text: | + (c) 2007-2009 Steven Levithan + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: |- + (c) 2007-2009 Steven Levithan [stevenlevithan.com][stevenlevithan], MIT license. + + [dateformat]: http://blog.stevenlevithan.com/archives/date-time-format + [stevenlevithan]: http://stevenlevithan.com/ +notices: [] diff --git a/.licenses/npm/debounce-fn.dep.yml b/.licenses/npm/debounce-fn.dep.yml new file mode 100644 index 000000000..6cae3e8e7 --- /dev/null +++ b/.licenses/npm/debounce-fn.dep.yml @@ -0,0 +1,20 @@ +--- +name: debounce-fn +version: 4.0.0 +type: npm +summary: Debounce a function +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/debug-2.6.9.dep.yml b/.licenses/npm/debug-2.6.9.dep.yml new file mode 100644 index 000000000..75eb3cddb --- /dev/null +++ b/.licenses/npm/debug-2.6.9.dep.yml @@ -0,0 +1,48 @@ +--- +name: debug +version: 2.6.9 +type: npm +summary: small debugging utility +homepage: +license: mit +licenses: +- sources: LICENSE + text: "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission + is hereby granted, free of charge, to any person obtaining a copy of this software + \nand associated documentation files (the 'Software'), to deal in the Software + without restriction, \nincluding without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, \nand/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so,\nsubject to + the following conditions:\n\nThe above copyright notice and this permission notice + shall be included in all copies or substantial \nportions of the Software.\n\nTHE + SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014-2016 TJ Holowaychuk <tj@vision-media.ca> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/debug-3.2.7.dep.yml b/.licenses/npm/debug-3.2.7.dep.yml new file mode 100644 index 000000000..09a468bba --- /dev/null +++ b/.licenses/npm/debug-3.2.7.dep.yml @@ -0,0 +1,48 @@ +--- +name: debug +version: 3.2.7 +type: npm +summary: small debugging utility +homepage: +license: mit +licenses: +- sources: LICENSE + text: "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission + is hereby granted, free of charge, to any person obtaining a copy of this software + \nand associated documentation files (the 'Software'), to deal in the Software + without restriction, \nincluding without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, \nand/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so,\nsubject to + the following conditions:\n\nThe above copyright notice and this permission notice + shall be included in all copies or substantial \nportions of the Software.\n\nTHE + SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/debug-4.3.7.dep.yml b/.licenses/npm/debug-4.3.7.dep.yml new file mode 100644 index 000000000..65457207f --- /dev/null +++ b/.licenses/npm/debug-4.3.7.dep.yml @@ -0,0 +1,56 @@ +--- +name: debug +version: 4.3.7 +type: npm +summary: Lightweight debugging utility for Node.js and the browser +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + (The MIT License) + + Copyright (c) 2014-2017 TJ Holowaychuk + Copyright (c) 2018-2021 Josh Junon + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the 'Software'), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial + portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT + LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca> + Copyright (c) 2018-2021 Josh Junon + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/debug-4.4.0.dep.yml b/.licenses/npm/debug-4.4.0.dep.yml new file mode 100644 index 000000000..6b8323672 --- /dev/null +++ b/.licenses/npm/debug-4.4.0.dep.yml @@ -0,0 +1,56 @@ +--- +name: debug +version: 4.4.0 +type: npm +summary: Lightweight debugging utility for Node.js and the browser +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + (The MIT License) + + Copyright (c) 2014-2017 TJ Holowaychuk + Copyright (c) 2018-2021 Josh Junon + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the 'Software'), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial + portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT + LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca> + Copyright (c) 2018-2021 Josh Junon + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/decamelize.dep.yml b/.licenses/npm/decamelize.dep.yml new file mode 100644 index 000000000..cea107acf --- /dev/null +++ b/.licenses/npm/decamelize.dep.yml @@ -0,0 +1,35 @@ +--- +name: decamelize +version: 1.2.0 +type: npm +summary: 'Convert a camelized string into a lowercased one with a custom separator: + unicornRainbow → unicorn_rainbow' +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/decimal.js.dep.yml b/.licenses/npm/decimal.js.dep.yml new file mode 100644 index 000000000..566bc930c --- /dev/null +++ b/.licenses/npm/decimal.js.dep.yml @@ -0,0 +1,37 @@ +--- +name: decimal.js +version: 10.5.0 +type: npm +summary: An arbitrary-precision Decimal type for JavaScript. +homepage: +license: mit +licenses: +- sources: LICENCE.md + text: |+ + The MIT Licence. + + Copyright (c) 2025 Michael Mclaughlin + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: "[The MIT Licence](LICENCE.md)" +notices: [] +... diff --git a/.licenses/npm/decode-named-character-reference.dep.yml b/.licenses/npm/decode-named-character-reference.dep.yml new file mode 100644 index 000000000..ef732953c --- /dev/null +++ b/.licenses/npm/decode-named-character-reference.dep.yml @@ -0,0 +1,70 @@ +--- +name: decode-named-character-reference +version: 1.1.0 +type: npm +summary: Decode named character references +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [author]: https://wooorm.com + + [build]: https://github.com/wooorm/decode-named-character-reference/actions + + [build-badge]: https://github.com/wooorm/decode-named-character-reference/workflows/main/badge.svg + + [contribute]: https://opensource.guide/how-to-contribute/ + + [coverage]: https://codecov.io/github/wooorm/decode-named-character-reference + + [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/decode-named-character-reference.svg + + [downloads]: https://www.npmjs.com/package/decode-named-character-reference + + [downloads-badge]: https://img.shields.io/npm/dm/decode-named-character-reference.svg + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [license]: license + + [npm]: https://docs.npmjs.com/cli/install + + [parse-entities]: https://github.com/wooorm/parse-entities + + [size]: https://bundlephobia.com/result?p=decode-named-character-reference + + [size-badge]: https://img.shields.io/bundlephobia/minzip/decode-named-character-reference.svg + + [typescript]: https://www.typescriptlang.org +notices: [] diff --git a/.licenses/npm/decode-uri-component.dep.yml b/.licenses/npm/decode-uri-component.dep.yml new file mode 100644 index 000000000..ce3a56ea8 --- /dev/null +++ b/.licenses/npm/decode-uri-component.dep.yml @@ -0,0 +1,26 @@ +--- +name: decode-uri-component +version: 0.2.2 +type: npm +summary: A better decodeURIComponent +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) 2017, Sam Verschueren (github.com/SamVerschueren) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: "MIT © [Sam Verschueren](https://github.com/SamVerschueren)\n\n\n---\n\n
\n\t\n\t\tGet + professional support for this package with a Tidelift subscription\n\t\n\t
\n\t\n\t\tTidelift + helps make open source sustainable for maintainers while giving companies
assurances + about security, maintenance, and licensing for their dependencies.\n\t
\n
" +notices: [] diff --git a/.licenses/npm/decompress-response-4.2.1.dep.yml b/.licenses/npm/decompress-response-4.2.1.dep.yml new file mode 100644 index 000000000..8cdc49d8f --- /dev/null +++ b/.licenses/npm/decompress-response-4.2.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: decompress-response +version: 4.2.1 +type: npm +summary: Decompress a HTTP response if needed +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/decompress-response-6.0.0.dep.yml b/.licenses/npm/decompress-response-6.0.0.dep.yml new file mode 100644 index 000000000..2ad286b82 --- /dev/null +++ b/.licenses/npm/decompress-response-6.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: decompress-response +version: 6.0.0 +type: npm +summary: Decompress a HTTP response if needed +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/decompress-tar.dep.yml b/.licenses/npm/decompress-tar.dep.yml new file mode 100644 index 000000000..816c028cd --- /dev/null +++ b/.licenses/npm/decompress-tar.dep.yml @@ -0,0 +1,22 @@ +--- +name: decompress-tar +version: 4.1.1 +type: npm +summary: decompress tar plugin +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/decompress-tarbz2.dep.yml b/.licenses/npm/decompress-tarbz2.dep.yml new file mode 100644 index 000000000..73c8b00dd --- /dev/null +++ b/.licenses/npm/decompress-tarbz2.dep.yml @@ -0,0 +1,22 @@ +--- +name: decompress-tarbz2 +version: 4.1.1 +type: npm +summary: decompress tar.bz2 plugin +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/decompress-targz.dep.yml b/.licenses/npm/decompress-targz.dep.yml new file mode 100644 index 000000000..806e61396 --- /dev/null +++ b/.licenses/npm/decompress-targz.dep.yml @@ -0,0 +1,22 @@ +--- +name: decompress-targz +version: 4.1.1 +type: npm +summary: decompress tar.gz plugin +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/decompress-unzip.dep.yml b/.licenses/npm/decompress-unzip.dep.yml new file mode 100644 index 000000000..b9d042445 --- /dev/null +++ b/.licenses/npm/decompress-unzip.dep.yml @@ -0,0 +1,34 @@ +--- +name: decompress-unzip +version: 4.0.1 +type: npm +summary: decompress zip plugin +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Kevin Mårtensson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/decompress.dep.yml b/.licenses/npm/decompress.dep.yml new file mode 100644 index 000000000..d16a2588f --- /dev/null +++ b/.licenses/npm/decompress.dep.yml @@ -0,0 +1,22 @@ +--- +name: decompress +version: 4.2.1 +type: npm +summary: Extracting archives made easy +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/dedent.dep.yml b/.licenses/npm/dedent.dep.yml new file mode 100644 index 000000000..fc7b5cd26 --- /dev/null +++ b/.licenses/npm/dedent.dep.yml @@ -0,0 +1,34 @@ +--- +name: dedent +version: 0.7.0 +type: npm +summary: An ES6 string tag that strips indentation from multi-line strings +homepage: https://github.com/dmnd/dedent +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Desmond Brand (dmnd@desmondbrand.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/deep-equal.dep.yml b/.licenses/npm/deep-equal.dep.yml new file mode 100644 index 000000000..802bd930f --- /dev/null +++ b/.licenses/npm/deep-equal.dep.yml @@ -0,0 +1,32 @@ +--- +name: deep-equal +version: 2.2.3 +type: npm +summary: node's assert.deepEqual algorithm +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2012, 2013, 2014 James Halliday , 2009 Thomas Robinson <280north.com> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/deep-extend.dep.yml b/.licenses/npm/deep-extend.dep.yml new file mode 100644 index 000000000..259f72eba --- /dev/null +++ b/.licenses/npm/deep-extend.dep.yml @@ -0,0 +1,33 @@ +--- +name: deep-extend +version: 0.6.0 +type: npm +summary: Recursive object extending +homepage: https://github.com/unclechu/node-deep-extend +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2013-2018, Viacheslav Lotsmanov + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](./LICENSE)" +notices: [] diff --git a/.licenses/npm/deepmerge.dep.yml b/.licenses/npm/deepmerge.dep.yml new file mode 100644 index 000000000..58ba3927f --- /dev/null +++ b/.licenses/npm/deepmerge.dep.yml @@ -0,0 +1,34 @@ +--- +name: deepmerge +version: 4.3.1 +type: npm +summary: A library for deep (recursive) merging of Javascript objects +homepage: https://github.com/TehShrike/deepmerge +license: mit +licenses: +- sources: license.txt + text: | + The MIT License (MIT) + + Copyright (c) 2012 James Halliday, Josh Duff, and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/default-shell.dep.yml b/.licenses/npm/default-shell.dep.yml new file mode 100644 index 000000000..aacad030e --- /dev/null +++ b/.licenses/npm/default-shell.dep.yml @@ -0,0 +1,34 @@ +--- +name: default-shell +version: 1.0.1 +type: npm +summary: Get the user's default shell +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/defer-to-connect.dep.yml b/.licenses/npm/defer-to-connect.dep.yml new file mode 100644 index 000000000..0209d7e5d --- /dev/null +++ b/.licenses/npm/defer-to-connect.dep.yml @@ -0,0 +1,34 @@ +--- +name: defer-to-connect +version: 2.0.1 +type: npm +summary: The safe way to handle the `connect` socket event +homepage: https://github.com/szmarczak/defer-to-connect#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/define-data-property.dep.yml b/.licenses/npm/define-data-property.dep.yml new file mode 100644 index 000000000..750196ab8 --- /dev/null +++ b/.licenses/npm/define-data-property.dep.yml @@ -0,0 +1,33 @@ +--- +name: define-data-property +version: 1.1.4 +type: npm +summary: Define a data property on an object. Will fall back to assignment in an engine + without descriptors. +homepage: https://github.com/ljharb/define-data-property#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2023 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/define-lazy-prop.dep.yml b/.licenses/npm/define-lazy-prop.dep.yml new file mode 100644 index 000000000..226f46ce3 --- /dev/null +++ b/.licenses/npm/define-lazy-prop.dep.yml @@ -0,0 +1,22 @@ +--- +name: define-lazy-prop +version: 2.0.0 +type: npm +summary: Define a lazily evaluated property on an object +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/define-properties.dep.yml b/.licenses/npm/define-properties.dep.yml new file mode 100644 index 000000000..7483b6a63 --- /dev/null +++ b/.licenses/npm/define-properties.dep.yml @@ -0,0 +1,33 @@ +--- +name: define-properties +version: 1.2.1 +type: npm +summary: Define multiple non-enumerable properties at once. Uses `Object.defineProperty` + when available; falls back to standard assignment in older engines. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (C) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/delayed-stream.dep.yml b/.licenses/npm/delayed-stream.dep.yml new file mode 100644 index 000000000..124012173 --- /dev/null +++ b/.licenses/npm/delayed-stream.dep.yml @@ -0,0 +1,32 @@ +--- +name: delayed-stream +version: 1.0.0 +type: npm +summary: Buffers events from a stream until you are ready to handle them. +homepage: https://github.com/felixge/node-delayed-stream +license: mit +licenses: +- sources: License + text: | + Copyright (c) 2011 Debuggable Limited + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: Readme.md + text: delayed-stream is licensed under the MIT license. +notices: [] diff --git a/.licenses/npm/delegates.dep.yml b/.licenses/npm/delegates.dep.yml new file mode 100644 index 000000000..08da073c1 --- /dev/null +++ b/.licenses/npm/delegates.dep.yml @@ -0,0 +1,33 @@ +--- +name: delegates +version: 1.0.0 +type: npm +summary: delegate methods and accessors to another property +homepage: +license: mit +licenses: +- sources: License + text: | + Copyright (c) 2015 TJ Holowaychuk + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/depd.dep.yml b/.licenses/npm/depd.dep.yml new file mode 100644 index 000000000..8563e704e --- /dev/null +++ b/.licenses/npm/depd.dep.yml @@ -0,0 +1,48 @@ +--- +name: depd +version: 2.0.0 +type: npm +summary: Deprecate all the things +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2018 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: |- + [MIT](LICENSE) + + [appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/nodejs-depd/master?label=windows + [appveyor-url]: https://ci.appveyor.com/project/dougwilson/nodejs-depd + [coveralls-image]: https://badgen.net/coveralls/c/github/dougwilson/nodejs-depd/master + [coveralls-url]: https://coveralls.io/r/dougwilson/nodejs-depd?branch=master + [node-image]: https://badgen.net/npm/node/depd + [node-url]: https://nodejs.org/en/download/ + [npm-downloads-image]: https://badgen.net/npm/dm/depd + [npm-url]: https://npmjs.org/package/depd + [npm-version-image]: https://badgen.net/npm/v/depd + [travis-image]: https://badgen.net/travis/dougwilson/nodejs-depd/master?label=linux + [travis-url]: https://travis-ci.org/dougwilson/nodejs-depd +notices: [] diff --git a/.licenses/npm/dequal.dep.yml b/.licenses/npm/dequal.dep.yml new file mode 100644 index 000000000..ef25e181a --- /dev/null +++ b/.licenses/npm/dequal.dep.yml @@ -0,0 +1,34 @@ +--- +name: dequal +version: 2.0.3 +type: npm +summary: A tiny (304B to 489B) utility for check for deep equality +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Luke Edwards (lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/destroy.dep.yml b/.licenses/npm/destroy.dep.yml new file mode 100644 index 000000000..b3ffc267d --- /dev/null +++ b/.licenses/npm/destroy.dep.yml @@ -0,0 +1,34 @@ +--- +name: destroy +version: 1.2.0 +type: npm +summary: destroy a stream if possible +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + + The MIT License (MIT) + + Copyright (c) 2014 Jonathan Ong me@jongleberry.com + Copyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/detect-indent.dep.yml b/.licenses/npm/detect-indent.dep.yml new file mode 100644 index 000000000..1a0ef84c5 --- /dev/null +++ b/.licenses/npm/detect-indent.dep.yml @@ -0,0 +1,34 @@ +--- +name: detect-indent +version: 5.0.0 +type: npm +summary: Detect the indentation of code +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/detect-libc-1.0.3.dep.yml b/.licenses/npm/detect-libc-1.0.3.dep.yml new file mode 100644 index 000000000..d055ea85a --- /dev/null +++ b/.licenses/npm/detect-libc-1.0.3.dep.yml @@ -0,0 +1,226 @@ +--- +name: detect-libc +version: 1.0.3 +type: npm +summary: Node.js module to detect the C standard library (libc) implementation family + and version +homepage: +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +- sources: README.md + text: |- + Copyright 2017 Lovell Fuller + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0.html) + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/detect-libc-2.0.3.dep.yml b/.licenses/npm/detect-libc-2.0.3.dep.yml new file mode 100644 index 000000000..e69ab6305 --- /dev/null +++ b/.licenses/npm/detect-libc-2.0.3.dep.yml @@ -0,0 +1,213 @@ +--- +name: detect-libc +version: 2.0.3 +type: npm +summary: Node.js module to detect the C standard library (libc) implementation family + and version +homepage: +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/detect-node.dep.yml b/.licenses/npm/detect-node.dep.yml new file mode 100644 index 000000000..2a1126029 --- /dev/null +++ b/.licenses/npm/detect-node.dep.yml @@ -0,0 +1,32 @@ +--- +name: detect-node +version: 2.1.0 +type: npm +summary: Detect Node.JS (as opposite to browser environment) (reliable) +homepage: https://github.com/iliakan/detect-node +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017 Ilya Kantor + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/dezalgo.dep.yml b/.licenses/npm/dezalgo.dep.yml new file mode 100644 index 000000000..b5bc53d80 --- /dev/null +++ b/.licenses/npm/dezalgo.dep.yml @@ -0,0 +1,26 @@ +--- +name: dezalgo +version: 1.0.4 +type: npm +summary: Contain async insanity so that the dark pony lord doesn't eat souls +homepage: https://github.com/npm/dezalgo +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/diff.dep.yml b/.licenses/npm/diff.dep.yml new file mode 100644 index 000000000..45716f467 --- /dev/null +++ b/.licenses/npm/diff.dep.yml @@ -0,0 +1,42 @@ +--- +name: diff +version: 5.2.0 +type: npm +summary: A JavaScript text diff implementation. +homepage: +license: other +licenses: +- sources: LICENSE + text: | + BSD 3-Clause License + + Copyright (c) 2009-2015, Kevin Decker + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: See [LICENSE](https://github.com/kpdecker/jsdiff/blob/master/LICENSE). +notices: [] diff --git a/.licenses/npm/dir-glob.dep.yml b/.licenses/npm/dir-glob.dep.yml new file mode 100644 index 000000000..79128eb53 --- /dev/null +++ b/.licenses/npm/dir-glob.dep.yml @@ -0,0 +1,22 @@ +--- +name: dir-glob +version: 2.2.2 +type: npm +summary: Convert directories to glob compatible strings +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/dns-packet.dep.yml b/.licenses/npm/dns-packet.dep.yml new file mode 100644 index 000000000..70fbed9a6 --- /dev/null +++ b/.licenses/npm/dns-packet.dep.yml @@ -0,0 +1,34 @@ +--- +name: dns-packet +version: 5.6.1 +type: npm +summary: An abstract-encoding compliant module for encoding / decoding DNS packets +homepage: https://github.com/mafintosh/dns-packet +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/dns-socket.dep.yml b/.licenses/npm/dns-socket.dep.yml new file mode 100644 index 000000000..431169b9e --- /dev/null +++ b/.licenses/npm/dns-socket.dep.yml @@ -0,0 +1,34 @@ +--- +name: dns-socket +version: 4.2.2 +type: npm +summary: Make low-level DNS requests with retry and timeout support. +homepage: https://github.com/mafintosh/dns-socket +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/dom-helpers.dep.yml b/.licenses/npm/dom-helpers.dep.yml new file mode 100644 index 000000000..0abad3efd --- /dev/null +++ b/.licenses/npm/dom-helpers.dep.yml @@ -0,0 +1,32 @@ +--- +name: dom-helpers +version: 5.2.1 +type: npm +summary: tiny modular DOM lib for ie9+ +homepage: https://github.com/react-bootstrap/dom-helpers#readme +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2015 Jason Quense + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/domexception.dep.yml b/.licenses/npm/domexception.dep.yml new file mode 100644 index 000000000..60b81e4a6 --- /dev/null +++ b/.licenses/npm/domexception.dep.yml @@ -0,0 +1,32 @@ +--- +name: domexception +version: 4.0.0 +type: npm +summary: An implementation of the DOMException class from browsers +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + MIT License + + Copyright © Domenic Denicola + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/dompurify.dep.yml b/.licenses/npm/dompurify.dep.yml new file mode 100644 index 000000000..ab7cf3d8c --- /dev/null +++ b/.licenses/npm/dompurify.dep.yml @@ -0,0 +1,584 @@ +--- +name: dompurify +version: 2.5.8 +type: npm +summary: DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, + MathML and SVG. It's written in JavaScript and works in all modern browsers (Safari, + Opera (15+), Internet Explorer (10+), Firefox and Chrome - as well as almost anything + else using Blink or WebKit). DOMPurify is written by security people who have vast + background in web attacks and XSS. Fear not. +homepage: https://github.com/cure53/DOMPurify +license: other +licenses: +- sources: LICENSE + text: |+ + DOMPurify + Copyright 2024 Dr.-Ing. Mario Heiderich, Cure53 + + DOMPurify is free software; you can redistribute it and/or modify it under the + terms of either: + + a) the Apache License Version 2.0, or + b) the Mozilla Public License Version 2.0 + + ----------------------------------------------------------------------------- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + ----------------------------------------------------------------------------- + Mozilla Public License, version 2.0 + + 1. Definitions + + 1.1. “Contributor” + + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. + + 1.2. “Contributor Version” + + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. + + 1.3. “Contribution” + + means Covered Software of a particular Contributor. + + 1.4. “Covered Software” + + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. + + 1.5. “Incompatible With Secondary Licenses” + means + + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. + + 1.6. “Executable Form” + + means any form of the work other than Source Code Form. + + 1.7. “Larger Work” + + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. + + 1.8. “License” + + means this document. + + 1.9. “Licensable” + + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. + + 1.10. “Modifications” + + means any of the following: + + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or + + b. any new file in Source Code Form that contains any Covered Software. + + 1.11. “Patent Claims” of a Contributor + + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. + + 1.12. “Secondary License” + + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. + + 1.13. “Source Code Form” + + means the form of the work preferred for making modifications. + + 1.14. “You” (or “Your”) + + means an individual or a legal entity exercising rights under this + License. For legal entities, “You” includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, “control” means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + + 2. License Grants and Conditions + + 2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and + + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. + + 2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. + + 2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: + + a. for any code that a Contributor has removed from Covered Software; or + + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. + + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). + + 2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). + + 2.5. Representation + + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. + + 2.6. Fair Use + + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. + + 2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. + + + 3. Responsibilities + + 3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. + + 3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and + + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. + + 3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). + + 3.4. Notices + + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. + + 3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + + 4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + + 5. Termination + + 5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. + + 5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. + + 5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + + 6. Disclaimer of Warranty + + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. + + 7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. + + 8. Litigation + + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. + + 9. Miscellaneous + + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. + + + 10. Versions of the License + + 10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + + 10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license + steward. + + 10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). + + 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + + Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + + If it is not possible or desirable to put the notice in a particular file, then + You may include the notice in a location (such as a LICENSE file in a relevant + directory) where a recipient would be likely to look for such a notice. + + You may add additional accurate notices of copyright ownership. + + Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. + +notices: [] +... diff --git a/.licenses/npm/dot-prop.dep.yml b/.licenses/npm/dot-prop.dep.yml new file mode 100644 index 000000000..4b88c01f8 --- /dev/null +++ b/.licenses/npm/dot-prop.dep.yml @@ -0,0 +1,20 @@ +--- +name: dot-prop +version: 6.0.1 +type: npm +summary: Get, set, or delete a property from a nested object using a dot path +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/drivelist.dep.yml b/.licenses/npm/drivelist.dep.yml new file mode 100644 index 000000000..a1740c00b --- /dev/null +++ b/.licenses/npm/drivelist.dep.yml @@ -0,0 +1,193 @@ +--- +name: drivelist +version: 9.2.4 +type: npm +summary: List all connected drives in your computer, in all major operating systems +homepage: https://github.com/balena-io-modules/drivelist +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS +- sources: README.md + text: |- + The project is licensed under the Apache 2.0 license. + + [yaml]: http://yaml.org +notices: [] diff --git a/.licenses/npm/dunder-proto.dep.yml b/.licenses/npm/dunder-proto.dep.yml new file mode 100644 index 000000000..39542bfdc --- /dev/null +++ b/.licenses/npm/dunder-proto.dep.yml @@ -0,0 +1,32 @@ +--- +name: dunder-proto +version: 1.0.1 +type: npm +summary: If available, the `Object.prototype.__proto__` accessor and mutator, call-bound +homepage: https://github.com/es-shims/dunder-proto#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 ECMAScript Shims + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/duplexer.dep.yml b/.licenses/npm/duplexer.dep.yml new file mode 100644 index 000000000..7633f8a61 --- /dev/null +++ b/.licenses/npm/duplexer.dep.yml @@ -0,0 +1,30 @@ +--- +name: duplexer +version: 0.1.2 +type: npm +summary: Creates a duplex stream +homepage: https://github.com/Raynos/duplexer +license: mit +licenses: +- sources: LICENCE + text: |- + Copyright (c) 2012 Raynos. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/duplexer2.dep.yml b/.licenses/npm/duplexer2.dep.yml new file mode 100644 index 000000000..43a95d451 --- /dev/null +++ b/.licenses/npm/duplexer2.dep.yml @@ -0,0 +1,32 @@ +--- +name: duplexer2 +version: 0.1.4 +type: npm +summary: Like duplexer but using streams3 +homepage: +license: other +licenses: +- sources: LICENSE.md + text: "Copyright (c) 2013, Deoxxa Development\n======================================\nAll + rights reserved.\n--------------------\n \nRedistribution and use in source and + binary forms, with or without\nmodification, are permitted provided that the following + conditions are met: \n1. Redistributions of source code must retain the above + copyright\n notice, this list of conditions and the following disclaimer. \n2. + Redistributions in binary form must reproduce the above copyright\n notice, + this list of conditions and the following disclaimer in the\n documentation + and/or other materials provided with the distribution. \n3. Neither the name + of Deoxxa Development nor the names of its contributors\n may be used to endorse + or promote products derived from this software\n without specific prior written + permission. \n \nTHIS SOFTWARE IS PROVIDED BY DEOXXA DEVELOPMENT ''AS IS'' AND + ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO + EVENT SHALL DEOXXA DEVELOPMENT BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER + IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE.\n" +- sources: README.md + text: 3-clause BSD. [A copy](./LICENSE) is included with the source. +notices: [] diff --git a/.licenses/npm/eastasianwidth.dep.yml b/.licenses/npm/eastasianwidth.dep.yml new file mode 100644 index 000000000..064d05002 --- /dev/null +++ b/.licenses/npm/eastasianwidth.dep.yml @@ -0,0 +1,30 @@ +--- +name: eastasianwidth +version: 0.2.0 +type: npm +summary: Get East Asian Width from a character. +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/ee-first.dep.yml b/.licenses/npm/ee-first.dep.yml new file mode 100644 index 000000000..45f358804 --- /dev/null +++ b/.licenses/npm/ee-first.dep.yml @@ -0,0 +1,33 @@ +--- +name: ee-first +version: 1.1.1 +type: npm +summary: return the first event in a set of ee/event pairs +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + + The MIT License (MIT) + + Copyright (c) 2014 Jonathan Ong me@jongleberry.com + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/electron-app.dep.yml b/.licenses/npm/electron-app.dep.yml new file mode 100644 index 000000000..8e94767c1 --- /dev/null +++ b/.licenses/npm/electron-app.dep.yml @@ -0,0 +1,9 @@ +--- +name: electron-app +version: 2.3.7 +type: npm +summary: Arduino IDE +homepage: +license: other +licenses: [] +notices: [] diff --git a/.licenses/npm/electron-store.dep.yml b/.licenses/npm/electron-store.dep.yml new file mode 100644 index 000000000..049e31e2d --- /dev/null +++ b/.licenses/npm/electron-store.dep.yml @@ -0,0 +1,21 @@ +--- +name: electron-store +version: 8.2.0 +type: npm +summary: Simple data persistence for your Electron app or module - Save and load user + settings, app state, cache, etc +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/electron-updater.dep.yml b/.licenses/npm/electron-updater.dep.yml new file mode 100644 index 000000000..1075afa13 --- /dev/null +++ b/.licenses/npm/electron-updater.dep.yml @@ -0,0 +1,34 @@ +--- +name: electron-updater +version: 4.6.5 +type: npm +summary: Cross platform updater for electron applications +homepage: https://github.com/electron-userland/electron-builder +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Loopline Systems + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/electron.dep.yml b/.licenses/npm/electron.dep.yml new file mode 100644 index 000000000..3aa079fcf --- /dev/null +++ b/.licenses/npm/electron.dep.yml @@ -0,0 +1,37 @@ +--- +name: electron +version: 30.1.2 +type: npm +summary: Build cross platform desktop apps with JavaScript, HTML, and CSS +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Electron contributors + Copyright (c) 2013-2020 GitHub Inc. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](https://github.com/electron/electron/blob/main/LICENSE) + + When using Electron logos, make sure to follow [OpenJS Foundation Trademark Policy](https://trademark-policy.openjsf.org/). +notices: [] diff --git a/.licenses/npm/emoji-regex-8.0.0.dep.yml b/.licenses/npm/emoji-regex-8.0.0.dep.yml new file mode 100644 index 000000000..30717a6f9 --- /dev/null +++ b/.licenses/npm/emoji-regex-8.0.0.dep.yml @@ -0,0 +1,33 @@ +--- +name: emoji-regex +version: 8.0.0 +type: npm +summary: A regular expression to match all Emoji-only symbols as per the Unicode Standard. +homepage: https://mths.be/emoji-regex +license: mit +licenses: +- sources: LICENSE-MIT.txt + text: | + Copyright Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: _emoji-regex_ is available under the [MIT](https://mths.be/mit) license. +notices: [] diff --git a/.licenses/npm/emoji-regex-9.2.2.dep.yml b/.licenses/npm/emoji-regex-9.2.2.dep.yml new file mode 100644 index 000000000..3745ed7b3 --- /dev/null +++ b/.licenses/npm/emoji-regex-9.2.2.dep.yml @@ -0,0 +1,33 @@ +--- +name: emoji-regex +version: 9.2.2 +type: npm +summary: A regular expression to match all Emoji-only symbols as per the Unicode Standard. +homepage: https://mths.be/emoji-regex +license: mit +licenses: +- sources: LICENSE-MIT.txt + text: | + Copyright Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: _emoji-regex_ is available under the [MIT](https://mths.be/mit) license. +notices: [] diff --git a/.licenses/npm/encodeurl-1.0.2.dep.yml b/.licenses/npm/encodeurl-1.0.2.dep.yml new file mode 100644 index 000000000..450799ed2 --- /dev/null +++ b/.licenses/npm/encodeurl-1.0.2.dep.yml @@ -0,0 +1,47 @@ +--- +name: encodeurl +version: 1.0.2 +type: npm +summary: Encode a URL to a percent-encoded form, excluding already-encoded sequences +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/encodeurl.svg + [npm-url]: https://npmjs.org/package/encodeurl + [node-version-image]: https://img.shields.io/node/v/encodeurl.svg + [node-version-url]: https://nodejs.org/en/download + [travis-image]: https://img.shields.io/travis/pillarjs/encodeurl.svg + [travis-url]: https://travis-ci.org/pillarjs/encodeurl + [coveralls-image]: https://img.shields.io/coveralls/pillarjs/encodeurl.svg + [coveralls-url]: https://coveralls.io/r/pillarjs/encodeurl?branch=master + [downloads-image]: https://img.shields.io/npm/dm/encodeurl.svg + [downloads-url]: https://npmjs.org/package/encodeurl +notices: [] diff --git a/.licenses/npm/encodeurl-2.0.0.dep.yml b/.licenses/npm/encodeurl-2.0.0.dep.yml new file mode 100644 index 000000000..d9f3f3b6b --- /dev/null +++ b/.licenses/npm/encodeurl-2.0.0.dep.yml @@ -0,0 +1,35 @@ +--- +name: encodeurl +version: 2.0.0 +type: npm +summary: Encode a URL to a percent-encoded form, excluding already-encoded sequences +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE)" +notices: [] diff --git a/.licenses/npm/encoding.dep.yml b/.licenses/npm/encoding.dep.yml new file mode 100644 index 000000000..f1741ff97 --- /dev/null +++ b/.licenses/npm/encoding.dep.yml @@ -0,0 +1,29 @@ +--- +name: encoding +version: 0.1.13 +type: npm +summary: Convert encodings, uses iconv-lite +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright (c) 2012-2014 Andris Reinman + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "**MIT**" +notices: [] diff --git a/.licenses/npm/end-of-stream.dep.yml b/.licenses/npm/end-of-stream.dep.yml new file mode 100644 index 000000000..b367661a8 --- /dev/null +++ b/.licenses/npm/end-of-stream.dep.yml @@ -0,0 +1,34 @@ +--- +name: end-of-stream +version: 1.4.4 +type: npm +summary: Call a callback when a readable/writable/duplex stream has completed or failed. +homepage: https://github.com/mafintosh/end-of-stream +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/engine.io-client.dep.yml b/.licenses/npm/engine.io-client.dep.yml new file mode 100644 index 000000000..555d1fe7c --- /dev/null +++ b/.licenses/npm/engine.io-client.dep.yml @@ -0,0 +1,35 @@ +--- +name: engine.io-client +version: 6.6.3 +type: npm +summary: Client for the realtime Engine +homepage: https://github.com/socketio/socket.io/tree/main/packages/engine.io-client#readme +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-present Guillermo Rauch and Socket.IO contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT - Copyright (c) 2014 Automattic, Inc. +notices: [] diff --git a/.licenses/npm/engine.io-parser.dep.yml b/.licenses/npm/engine.io-parser.dep.yml new file mode 100644 index 000000000..4d7323c01 --- /dev/null +++ b/.licenses/npm/engine.io-parser.dep.yml @@ -0,0 +1,35 @@ +--- +name: engine.io-parser +version: 5.2.3 +type: npm +summary: Parser for the client for the realtime Engine +homepage: https://github.com/socketio/socket.io/tree/main/packages/engine.io-parser#readme +license: mit +licenses: +- sources: LICENSE + text: |- + (The MIT License) + + Copyright (c) 2014-present Guillermo Rauch and Socket.IO contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/engine.io.dep.yml b/.licenses/npm/engine.io.dep.yml new file mode 100644 index 000000000..c97935379 --- /dev/null +++ b/.licenses/npm/engine.io.dep.yml @@ -0,0 +1,49 @@ +--- +name: engine.io +version: 6.6.4 +type: npm +summary: The realtime engine behind Socket.IO. Provides the foundation of a bidirectional + connection between client and server +homepage: https://github.com/socketio/socket.io/tree/main/packages/engine.io#readme +license: mit +licenses: +- sources: LICENSE + text: "(The MIT License)\n\nCopyright (c) 2014-present Guillermo Rauch and Socket.IO + contributors\n\nPermission is hereby granted, free of charge, to any person obtaining + a copy of this software \nand associated documentation files (the 'Software'), + to deal in the Software without restriction, \nincluding without limitation the + rights to use, copy, modify, merge, publish, distribute, \nsublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is \nfurnished + to do so, subject to the following conditions:\n\nThe above copyright notice and + this permission notice shall be included in all copies or \nsubstantial portions + of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY + KIND, EXPRESS OR IMPLIED, INCLUDING \nBUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND \nNONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \nDAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014 Guillermo Rauch <guillermo@learnboost.com> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/enquirer.dep.yml b/.licenses/npm/enquirer.dep.yml new file mode 100644 index 000000000..99f1f7b20 --- /dev/null +++ b/.licenses/npm/enquirer.dep.yml @@ -0,0 +1,43 @@ +--- +name: enquirer +version: 2.4.1 +type: npm +summary: Stylish, intuitive and user-friendly prompt system. Fast and lightweight + enough for small projects, powerful and extensible enough for the most advanced + use cases. +homepage: https://github.com/enquirer/enquirer +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016-present, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2018-present, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + [issue]: https://github.com/enquirer/enquirer/issues/new + [pulls]: https://github.com/enquirer/enquirer/pulls + [jon]: https://github.com/jonschlinkert + [brian]: https://github.com/doowb +notices: [] diff --git a/.licenses/npm/entities-2.1.0.dep.yml b/.licenses/npm/entities-2.1.0.dep.yml new file mode 100644 index 000000000..143099e0b --- /dev/null +++ b/.licenses/npm/entities-2.1.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: entities +version: 2.1.0 +type: npm +summary: Encode & decode XML and HTML entities with ease +homepage: +license: bsd-2-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) Felix Böhm + All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/entities-4.5.0.dep.yml b/.licenses/npm/entities-4.5.0.dep.yml new file mode 100644 index 000000000..cd2b52fca --- /dev/null +++ b/.licenses/npm/entities-4.5.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: entities +version: 4.5.0 +type: npm +summary: Encode & decode XML and HTML entities with ease & speed +homepage: +license: bsd-2-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) Felix Böhm + All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS, + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/env-paths.dep.yml b/.licenses/npm/env-paths.dep.yml new file mode 100644 index 000000000..43edd1d54 --- /dev/null +++ b/.licenses/npm/env-paths.dep.yml @@ -0,0 +1,20 @@ +--- +name: env-paths +version: 2.2.1 +type: npm +summary: Get paths for storing things like data, config, cache, etc +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/error-ex.dep.yml b/.licenses/npm/error-ex.dep.yml new file mode 100644 index 000000000..fb652beb6 --- /dev/null +++ b/.licenses/npm/error-ex.dep.yml @@ -0,0 +1,36 @@ +--- +name: error-ex +version: 1.3.2 +type: npm +summary: Easy error subclassing and stack customization +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 JD Ballard + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Licensed under the [MIT License](http://opensource.org/licenses/MIT). + You can find a copy of it in [LICENSE](LICENSE). +notices: [] diff --git a/.licenses/npm/es-define-property.dep.yml b/.licenses/npm/es-define-property.dep.yml new file mode 100644 index 000000000..7f1903728 --- /dev/null +++ b/.licenses/npm/es-define-property.dep.yml @@ -0,0 +1,32 @@ +--- +name: es-define-property +version: 1.0.1 +type: npm +summary: "`Object.defineProperty`, but not IE 8's broken one." +homepage: https://github.com/ljharb/es-define-property#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/es-errors.dep.yml b/.licenses/npm/es-errors.dep.yml new file mode 100644 index 000000000..a5827aac9 --- /dev/null +++ b/.licenses/npm/es-errors.dep.yml @@ -0,0 +1,32 @@ +--- +name: es-errors +version: 1.3.0 +type: npm +summary: A simple cache for a few of the JS Error constructors. +homepage: https://github.com/ljharb/es-errors#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/es-get-iterator.dep.yml b/.licenses/npm/es-get-iterator.dep.yml new file mode 100644 index 000000000..f93a6d6c1 --- /dev/null +++ b/.licenses/npm/es-get-iterator.dep.yml @@ -0,0 +1,33 @@ +--- +name: es-get-iterator +version: 1.1.3 +type: npm +summary: Get an iterator for any JS language value. Works robustly across all environments, + all versions. +homepage: https://github.com/ljharb/es-get-iterator#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/es-object-atoms.dep.yml b/.licenses/npm/es-object-atoms.dep.yml new file mode 100644 index 000000000..dc42eaae7 --- /dev/null +++ b/.licenses/npm/es-object-atoms.dep.yml @@ -0,0 +1,32 @@ +--- +name: es-object-atoms +version: 1.1.1 +type: npm +summary: 'ES Object-related atoms: Object, ToObject, RequireObjectCoercible' +homepage: https://github.com/ljharb/es-object-atoms#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/es-set-tostringtag.dep.yml b/.licenses/npm/es-set-tostringtag.dep.yml new file mode 100644 index 000000000..f4b673e27 --- /dev/null +++ b/.licenses/npm/es-set-tostringtag.dep.yml @@ -0,0 +1,32 @@ +--- +name: es-set-tostringtag +version: 2.1.0 +type: npm +summary: A helper to optimistically set Symbol.toStringTag, when possible. +homepage: https://github.com/es-shims/es-set-tostringtag#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2022 ECMAScript Shims + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/es6-error.dep.yml b/.licenses/npm/es6-error.dep.yml new file mode 100644 index 000000000..1eaa9806e --- /dev/null +++ b/.licenses/npm/es6-error.dep.yml @@ -0,0 +1,32 @@ +--- +name: es6-error +version: 4.1.1 +type: npm +summary: Easily-extendable error for use with ES6 classes +homepage: https://github.com/bjyoungblood/es6-error +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2015 Ben Youngblood + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/es6-promise.dep.yml b/.licenses/npm/es6-promise.dep.yml new file mode 100644 index 000000000..632c57a34 --- /dev/null +++ b/.licenses/npm/es6-promise.dep.yml @@ -0,0 +1,30 @@ +--- +name: es6-promise +version: 4.2.8 +type: npm +summary: A lightweight library that provides tools for organizing asynchronous code +homepage: https://github.com/stefanpenner/es6-promise +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/escalade.dep.yml b/.licenses/npm/escalade.dep.yml new file mode 100644 index 000000000..56d4a604f --- /dev/null +++ b/.licenses/npm/escalade.dep.yml @@ -0,0 +1,22 @@ +--- +name: escalade +version: 3.2.0 +type: npm +summary: A tiny (183B to 210B) and fast utility to ascend parent directories +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Luke Edwards (lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/escape-html.dep.yml b/.licenses/npm/escape-html.dep.yml new file mode 100644 index 000000000..252c3cd03 --- /dev/null +++ b/.licenses/npm/escape-html.dep.yml @@ -0,0 +1,37 @@ +--- +name: escape-html +version: 1.0.3 +type: npm +summary: Escape string for use in HTML +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012-2013 TJ Holowaychuk + Copyright (c) 2015 Andreas Lubbe + Copyright (c) 2015 Tiancheng "Timothy" Gu + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/escape-string-regexp-1.0.5.dep.yml b/.licenses/npm/escape-string-regexp-1.0.5.dep.yml new file mode 100644 index 000000000..20a1f6254 --- /dev/null +++ b/.licenses/npm/escape-string-regexp-1.0.5.dep.yml @@ -0,0 +1,34 @@ +--- +name: escape-string-regexp +version: 1.0.5 +type: npm +summary: Escape RegExp special characters +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/escape-string-regexp-4.0.0.dep.yml b/.licenses/npm/escape-string-regexp-4.0.0.dep.yml new file mode 100644 index 000000000..31b85c7b0 --- /dev/null +++ b/.licenses/npm/escape-string-regexp-4.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: escape-string-regexp +version: 4.0.0 +type: npm +summary: Escape RegExp special characters +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/escape-string-regexp-5.0.0.dep.yml b/.licenses/npm/escape-string-regexp-5.0.0.dep.yml new file mode 100644 index 000000000..cec18fce2 --- /dev/null +++ b/.licenses/npm/escape-string-regexp-5.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: escape-string-regexp +version: 5.0.0 +type: npm +summary: Escape RegExp special characters +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/escodegen.dep.yml b/.licenses/npm/escodegen.dep.yml new file mode 100644 index 000000000..64c715740 --- /dev/null +++ b/.licenses/npm/escodegen.dep.yml @@ -0,0 +1,34 @@ +--- +name: escodegen +version: 2.1.0 +type: npm +summary: ECMAScript code generator +homepage: http://github.com/estools/escodegen +license: other +licenses: +- sources: LICENSE.BSD + text: | + Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/esprima.dep.yml b/.licenses/npm/esprima.dep.yml new file mode 100644 index 000000000..538091c52 --- /dev/null +++ b/.licenses/npm/esprima.dep.yml @@ -0,0 +1,32 @@ +--- +name: esprima +version: 4.0.1 +type: npm +summary: ECMAScript parsing infrastructure for multipurpose analysis +homepage: http://esprima.org +license: bsd-2-clause +licenses: +- sources: LICENSE.BSD + text: | + Copyright JS Foundation and other contributors, https://js.foundation/ + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/estraverse.dep.yml b/.licenses/npm/estraverse.dep.yml new file mode 100644 index 000000000..0d5f0883b --- /dev/null +++ b/.licenses/npm/estraverse.dep.yml @@ -0,0 +1,55 @@ +--- +name: estraverse +version: 5.3.0 +type: npm +summary: ECMAScript JS AST traversal functions +homepage: https://github.com/estools/estraverse +license: other +licenses: +- sources: LICENSE.BSD + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: |- + Copyright (C) 2012-2016 [Yusuke Suzuki](http://github.com/Constellation) + (twitter: [@Constellation](http://twitter.com/Constellation)) and other contributors. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/esutils.dep.yml b/.licenses/npm/esutils.dep.yml new file mode 100644 index 000000000..f1b0e4ce0 --- /dev/null +++ b/.licenses/npm/esutils.dep.yml @@ -0,0 +1,55 @@ +--- +name: esutils +version: 2.0.3 +type: npm +summary: utility box for ECMAScript language tools +homepage: https://github.com/estools/esutils +license: other +licenses: +- sources: LICENSE.BSD + text: | + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: |- + Copyright (C) 2013 [Yusuke Suzuki](http://github.com/Constellation) + (twitter: [@Constellation](http://twitter.com/Constellation)) and other contributors. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/etag.dep.yml b/.licenses/npm/etag.dep.yml new file mode 100644 index 000000000..4f9898992 --- /dev/null +++ b/.licenses/npm/etag.dep.yml @@ -0,0 +1,47 @@ +--- +name: etag +version: 1.8.1 +type: npm +summary: Create simple HTTP ETags +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/etag.svg + [npm-url]: https://npmjs.org/package/etag + [node-version-image]: https://img.shields.io/node/v/etag.svg + [node-version-url]: https://nodejs.org/en/download/ + [travis-image]: https://img.shields.io/travis/jshttp/etag/master.svg + [travis-url]: https://travis-ci.org/jshttp/etag + [coveralls-image]: https://img.shields.io/coveralls/jshttp/etag/master.svg + [coveralls-url]: https://coveralls.io/r/jshttp/etag?branch=master + [downloads-image]: https://img.shields.io/npm/dm/etag.svg + [downloads-url]: https://npmjs.org/package/etag +notices: [] diff --git a/.licenses/npm/event-stream.dep.yml b/.licenses/npm/event-stream.dep.yml new file mode 100644 index 000000000..554c2035b --- /dev/null +++ b/.licenses/npm/event-stream.dep.yml @@ -0,0 +1,24 @@ +--- +name: event-stream +version: 3.3.4 +type: npm +summary: construct pipes of streams of events +homepage: http://github.com/dominictarr/event-stream +license: mit +licenses: +- sources: LICENCE + text: "The MIT License (MIT)\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is + hereby granted, free of charge, \nto any person obtaining a copy of this software + and \nassociated documentation files (the \"Software\"), to \ndeal in the Software + without restriction, including \nwithout limitation the rights to use, copy, modify, + \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, + and to permit persons to whom \nthe Software is furnished to do so, \nsubject + to the following conditions:\n\nThe above copyright notice and this permission + notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE + SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" +notices: [] diff --git a/.licenses/npm/execa-0.5.1.dep.yml b/.licenses/npm/execa-0.5.1.dep.yml new file mode 100644 index 000000000..42616cbf5 --- /dev/null +++ b/.licenses/npm/execa-0.5.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: execa +version: 0.5.1 +type: npm +summary: A better `child_process` +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/execa-2.1.0.dep.yml b/.licenses/npm/execa-2.1.0.dep.yml new file mode 100644 index 000000000..3fe34f9a0 --- /dev/null +++ b/.licenses/npm/execa-2.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: execa +version: 2.1.0 +type: npm +summary: Process execution for humans +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/execa-4.1.0.dep.yml b/.licenses/npm/execa-4.1.0.dep.yml new file mode 100644 index 000000000..301325557 --- /dev/null +++ b/.licenses/npm/execa-4.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: execa +version: 4.1.0 +type: npm +summary: Process execution for humans +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/expand-template.dep.yml b/.licenses/npm/expand-template.dep.yml new file mode 100644 index 000000000..f94e16ec9 --- /dev/null +++ b/.licenses/npm/expand-template.dep.yml @@ -0,0 +1,35 @@ +--- +name: expand-template +version: 2.0.3 +type: npm +summary: Expand placeholders in a template string +homepage: https://github.com/ralphtheninja/expand-template +license: other +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2018 Lars-Magnus Skog + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: All code, unless stated otherwise, is dual-licensed under [`WTFPL`](http://www.wtfpl.net/txt/copying/) + and [`MIT`](https://opensource.org/licenses/MIT). +notices: [] diff --git a/.licenses/npm/express.dep.yml b/.licenses/npm/express.dep.yml new file mode 100644 index 000000000..368dd15e2 --- /dev/null +++ b/.licenses/npm/express.dep.yml @@ -0,0 +1,54 @@ +--- +name: express +version: 4.21.2 +type: npm +summary: Fast, unopinionated, minimalist web framework +homepage: http://expressjs.com/ +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2009-2014 TJ Holowaychuk + Copyright (c) 2013-2014 Roman Shtylman + Copyright (c) 2014-2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: |- + [MIT](LICENSE) + + [appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/express/master?label=windows + [appveyor-url]: https://ci.appveyor.com/project/dougwilson/express + [coveralls-image]: https://badgen.net/coveralls/c/github/expressjs/express/master + [coveralls-url]: https://coveralls.io/r/expressjs/express?branch=master + [github-actions-ci-image]: https://badgen.net/github/checks/expressjs/express/master?label=linux + [github-actions-ci-url]: https://github.com/expressjs/express/actions/workflows/ci.yml + [npm-downloads-image]: https://badgen.net/npm/dm/express + [npm-downloads-url]: https://npmcharts.com/compare/express?minimal=true + [npm-install-size-image]: https://badgen.net/packagephobia/install/express + [npm-install-size-url]: https://packagephobia.com/result?p=express + [npm-url]: https://npmjs.org/package/express + [npm-version-image]: https://badgen.net/npm/v/express + [ossf-scorecard-badge]: https://api.scorecard.dev/projects/github.com/expressjs/express/badge + [ossf-scorecard-visualizer]: https://ossf.github.io/scorecard-visualizer/#/projects/github.com/expressjs/express + [Code of Conduct]: https://github.com/expressjs/express/blob/master/Code-Of-Conduct.md +notices: [] diff --git a/.licenses/npm/extend.dep.yml b/.licenses/npm/extend.dep.yml new file mode 100644 index 000000000..11e26ffaf --- /dev/null +++ b/.licenses/npm/extend.dep.yml @@ -0,0 +1,37 @@ +--- +name: extend +version: 3.0.2 +type: npm +summary: Port of jQuery.extend for node.js and the browser +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2014 Stefan Thomas + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: "`node-extend` is licensed under the [MIT License][mit-license-url]." +notices: [] +... diff --git a/.licenses/npm/extract-zip.dep.yml b/.licenses/npm/extract-zip.dep.yml new file mode 100644 index 000000000..654a7d774 --- /dev/null +++ b/.licenses/npm/extract-zip.dep.yml @@ -0,0 +1,34 @@ +--- +name: extract-zip +version: 2.0.1 +type: npm +summary: unzip a zip file into a directory using 100% javascript +homepage: +license: bsd-2-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014 Max Ogden and other contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/fast-deep-equal.dep.yml b/.licenses/npm/fast-deep-equal.dep.yml new file mode 100644 index 000000000..42fab9b9f --- /dev/null +++ b/.licenses/npm/fast-deep-equal.dep.yml @@ -0,0 +1,34 @@ +--- +name: fast-deep-equal +version: 3.1.3 +type: npm +summary: Fast deep equal +homepage: https://github.com/epoberezkin/fast-deep-equal#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017 Evgeny Poberezkin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/epoberezkin/fast-deep-equal/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/fast-json-stable-stringify.dep.yml b/.licenses/npm/fast-json-stable-stringify.dep.yml new file mode 100644 index 000000000..7f16c1432 --- /dev/null +++ b/.licenses/npm/fast-json-stable-stringify.dep.yml @@ -0,0 +1,35 @@ +--- +name: fast-json-stable-stringify +version: 2.1.0 +type: npm +summary: deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify + without jsonify +homepage: https://github.com/epoberezkin/fast-json-stable-stringify +license: other +licenses: +- sources: LICENSE + text: | + This software is released under the MIT license: + + Copyright (c) 2017 Evgeny Poberezkin + Copyright (c) 2013 James Halliday + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/epoberezkin/fast-json-stable-stringify/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/fast-plist.dep.yml b/.licenses/npm/fast-plist.dep.yml new file mode 100644 index 000000000..38c1fe7ab --- /dev/null +++ b/.licenses/npm/fast-plist.dep.yml @@ -0,0 +1,34 @@ +--- +name: fast-plist +version: 0.1.3 +type: npm +summary: A fast PLIST parser +homepage: https://github.com/Microsoft/node-fast-plist#readme +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) Microsoft Corporation + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/Microsoft/node-fast-plist/blob/master/LICENSE.md)" +notices: [] diff --git a/.licenses/npm/fast-safe-stringify.dep.yml b/.licenses/npm/fast-safe-stringify.dep.yml new file mode 100644 index 000000000..2614a3358 --- /dev/null +++ b/.licenses/npm/fast-safe-stringify.dep.yml @@ -0,0 +1,36 @@ +--- +name: fast-safe-stringify +version: 2.1.1 +type: npm +summary: Safely and quickly serialize JavaScript objects +homepage: https://github.com/davidmarkclements/fast-safe-stringify#readme +license: mit +licenses: +- sources: LICENSE + text: "The MIT License (MIT)\n\nCopyright (c) 2016 David Mark Clements\nCopyright + (c) 2017 David Mark Clements & Matteo Collina\nCopyright (c) 2018 David Mark Clements, + Matteo Collina & Ruben Bridgewater \n\nPermission is hereby granted, free of charge, + to any person obtaining a copy\nof this software and associated documentation + files (the \"Software\"), to deal\nin the Software without restriction, including + without limitation the rights\nto use, copy, modify, merge, publish, distribute, + sublicense, and/or sell\ncopies of the Software, and to permit persons to whom + the Software is\nfurnished to do so, subject to the following conditions:\n\nThe + above copyright notice and this permission notice shall be included in all\ncopies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO + THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES + OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE\nSOFTWARE.\n" +- sources: readme.md + text: |- + MIT + + [`replacer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The%20replacer%20parameter + [`safe-stable-stringify`]: https://github.com/BridgeAR/safe-stable-stringify + [`space`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The%20space%20argument + [`toJSON`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON()_behavior + [benchmark]: https://github.com/epoberezkin/fast-json-stable-stringify/blob/67f688f7441010cfef91a6147280cc501701e83b/benchmark + [JSON.stringify]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify +notices: [] diff --git a/.licenses/npm/fast-uri.dep.yml b/.licenses/npm/fast-uri.dep.yml new file mode 100644 index 000000000..a48878e76 --- /dev/null +++ b/.licenses/npm/fast-uri.dep.yml @@ -0,0 +1,43 @@ +--- +name: fast-uri +version: 3.0.6 +type: npm +summary: Dependency-free RFC 3986 URI toolbox +homepage: https://github.com/fastify/fast-uri +license: other +licenses: +- sources: LICENSE + text: |- + Copyright (c) 2021 The Fastify Team + Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * The names of any contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + * * * + + The complete list of contributors can be found at: + - https://github.com/garycourt/uri-js/graphs/contributors +- sources: README.md + text: Licensed under [BSD-3-Clause](./LICENSE). +notices: [] diff --git a/.licenses/npm/fd-slicer.dep.yml b/.licenses/npm/fd-slicer.dep.yml new file mode 100644 index 000000000..47a1e1bcd --- /dev/null +++ b/.licenses/npm/fd-slicer.dep.yml @@ -0,0 +1,33 @@ +--- +name: fd-slicer +version: 1.1.0 +type: npm +summary: safely create multiple ReadStream or WriteStream objects from the same file + descriptor +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014 Andrew Kelley + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/fetch-blob.dep.yml b/.licenses/npm/fetch-blob.dep.yml new file mode 100644 index 000000000..cbcf11b8b --- /dev/null +++ b/.licenses/npm/fetch-blob.dep.yml @@ -0,0 +1,32 @@ +--- +name: fetch-blob +version: 3.2.0 +type: npm +summary: Blob & File implementation in Node.js, originally from node-fetch. +homepage: https://github.com/node-fetch/fetch-blob#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 David Frank + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/file-icons-js.dep.yml b/.licenses/npm/file-icons-js.dep.yml new file mode 100644 index 000000000..8f8d9992c --- /dev/null +++ b/.licenses/npm/file-icons-js.dep.yml @@ -0,0 +1,35 @@ +--- +name: file-icons-js +version: 1.0.3 +type: npm +summary: File specific icons for the browser from Atom File-icons, https://github.com/file-icons/atom +homepage: https://github.com/websemantics/file-icons-js +license: mit +licenses: +- sources: LICENSE.md + text: |- + #The MIT License (MIT) + + ###Copyright (c) 2017 Websemantics + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: "[MIT license](http://opensource.org/licenses/mit-license.php) Copyright (c) + Web Semantics, Inc." +notices: [] diff --git a/.licenses/npm/file-type-3.9.0.dep.yml b/.licenses/npm/file-type-3.9.0.dep.yml new file mode 100644 index 000000000..e8b435c91 --- /dev/null +++ b/.licenses/npm/file-type-3.9.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: file-type +version: 3.9.0 +type: npm +summary: Detect the file type of a Buffer/Uint8Array +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/file-type-5.2.0.dep.yml b/.licenses/npm/file-type-5.2.0.dep.yml new file mode 100644 index 000000000..ea1a4d1ff --- /dev/null +++ b/.licenses/npm/file-type-5.2.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: file-type +version: 5.2.0 +type: npm +summary: Detect the file type of a Buffer/Uint8Array +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/file-type-6.2.0.dep.yml b/.licenses/npm/file-type-6.2.0.dep.yml new file mode 100644 index 000000000..b46aacf20 --- /dev/null +++ b/.licenses/npm/file-type-6.2.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: file-type +version: 6.2.0 +type: npm +summary: Detect the file type of a Buffer/Uint8Array +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/file-uri-to-path.dep.yml b/.licenses/npm/file-uri-to-path.dep.yml new file mode 100644 index 000000000..3cc997329 --- /dev/null +++ b/.licenses/npm/file-uri-to-path.dep.yml @@ -0,0 +1,55 @@ +--- +name: file-uri-to-path +version: 1.0.0 +type: npm +summary: 'Convert a file: URI to a file path' +homepage: https://github.com/TooTallNate/file-uri-to-path +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014 Nathan Rajlich + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/filename-reserved-regex.dep.yml b/.licenses/npm/filename-reserved-regex.dep.yml new file mode 100644 index 000000000..2dd9464b0 --- /dev/null +++ b/.licenses/npm/filename-reserved-regex.dep.yml @@ -0,0 +1,34 @@ +--- +name: filename-reserved-regex +version: 2.0.0 +type: npm +summary: Regular expression for matching reserved filename characters +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/filenamify.dep.yml b/.licenses/npm/filenamify.dep.yml new file mode 100644 index 000000000..72fa5a3aa --- /dev/null +++ b/.licenses/npm/filenamify.dep.yml @@ -0,0 +1,20 @@ +--- +name: filenamify +version: 4.3.0 +type: npm +summary: Convert a string to a valid safe filename +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/fill-range.dep.yml b/.licenses/npm/fill-range.dep.yml new file mode 100644 index 000000000..8a3e1ec14 --- /dev/null +++ b/.licenses/npm/fill-range.dep.yml @@ -0,0 +1,41 @@ +--- +name: fill-range +version: 7.1.1 +type: npm +summary: Fill in a range of numbers or letters, optionally passing an increment or + `step` to use, or create a regex-compatible range with `options.toRegex` +homepage: https://github.com/jonschlinkert/fill-range +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014-present, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 08, 2019._ +notices: [] diff --git a/.licenses/npm/filter-obj.dep.yml b/.licenses/npm/filter-obj.dep.yml new file mode 100644 index 000000000..ec2ef400c --- /dev/null +++ b/.licenses/npm/filter-obj.dep.yml @@ -0,0 +1,34 @@ +--- +name: filter-obj +version: 1.1.0 +type: npm +summary: Filter object keys and values into a new object +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/finalhandler.dep.yml b/.licenses/npm/finalhandler.dep.yml new file mode 100644 index 000000000..fe317df84 --- /dev/null +++ b/.licenses/npm/finalhandler.dep.yml @@ -0,0 +1,47 @@ +--- +name: finalhandler +version: 1.3.1 +type: npm +summary: Node.js final http responder +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2022 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/finalhandler.svg + [npm-url]: https://npmjs.org/package/finalhandler + [node-image]: https://img.shields.io/node/v/finalhandler.svg + [node-url]: https://nodejs.org/en/download + [coveralls-image]: https://img.shields.io/coveralls/pillarjs/finalhandler.svg + [coveralls-url]: https://coveralls.io/r/pillarjs/finalhandler?branch=master + [downloads-image]: https://img.shields.io/npm/dm/finalhandler.svg + [downloads-url]: https://npmjs.org/package/finalhandler + [github-actions-ci-image]: https://github.com/pillarjs/finalhandler/actions/workflows/ci.yml/badge.svg + [github-actions-ci-url]: https://github.com/pillarjs/finalhandler/actions/workflows/ci.yml +notices: [] diff --git a/.licenses/npm/find-root.dep.yml b/.licenses/npm/find-root.dep.yml new file mode 100644 index 000000000..fb3f28409 --- /dev/null +++ b/.licenses/npm/find-root.dep.yml @@ -0,0 +1,20 @@ +--- +name: find-root +version: 1.1.0 +type: npm +summary: find the closest package.json +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: |- + Copyright © 2017 jsdnxx + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT. (c) 2017 jsdnxx +notices: [] diff --git a/.licenses/npm/find-up-3.0.0.dep.yml b/.licenses/npm/find-up-3.0.0.dep.yml new file mode 100644 index 000000000..cb2eaf0dd --- /dev/null +++ b/.licenses/npm/find-up-3.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: find-up +version: 3.0.0 +type: npm +summary: Find a file or directory by walking up parent directories +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/find-up-4.1.0.dep.yml b/.licenses/npm/find-up-4.1.0.dep.yml new file mode 100644 index 000000000..064cafe54 --- /dev/null +++ b/.licenses/npm/find-up-4.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: find-up +version: 4.1.0 +type: npm +summary: Find a file or directory by walking up parent directories +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/fix-path.dep.yml b/.licenses/npm/fix-path.dep.yml new file mode 100644 index 000000000..802b5c7e5 --- /dev/null +++ b/.licenses/npm/fix-path.dep.yml @@ -0,0 +1,20 @@ +--- +name: fix-path +version: 3.0.0 +type: npm +summary: Fix the $PATH on macOS when run from a GUI app +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/follow-redirects.dep.yml b/.licenses/npm/follow-redirects.dep.yml new file mode 100644 index 000000000..0dfb66092 --- /dev/null +++ b/.licenses/npm/follow-redirects.dep.yml @@ -0,0 +1,31 @@ +--- +name: follow-redirects +version: 1.15.9 +type: npm +summary: HTTP and HTTPS modules that follow redirects. +homepage: https://github.com/follow-redirects/follow-redirects +license: mit +licenses: +- sources: LICENSE + text: | + Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT License](https://github.com/follow-redirects/follow-redirects/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/font-awesome.dep.yml b/.licenses/npm/font-awesome.dep.yml new file mode 100644 index 000000000..fcdd3ea6a --- /dev/null +++ b/.licenses/npm/font-awesome.dep.yml @@ -0,0 +1,11 @@ +--- +name: font-awesome +version: 4.7.0 +type: npm +summary: The iconic font and CSS framework +homepage: http://fontawesome.io/ +license: other +licenses: +- sources: README.md + text: "- The Font Awesome font is licensed under the SIL OFL 1.1:" +notices: [] diff --git a/.licenses/npm/for-each.dep.yml b/.licenses/npm/for-each.dep.yml new file mode 100644 index 000000000..11096731e --- /dev/null +++ b/.licenses/npm/for-each.dep.yml @@ -0,0 +1,34 @@ +--- +name: for-each +version: 0.3.5 +type: npm +summary: A better forEach +homepage: https://github.com/Raynos/for-each +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2012 Raynos. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/foreground-child.dep.yml b/.licenses/npm/foreground-child.dep.yml new file mode 100644 index 000000000..eb8b38fe4 --- /dev/null +++ b/.licenses/npm/foreground-child.dep.yml @@ -0,0 +1,27 @@ +--- +name: foreground-child +version: 3.3.1 +type: npm +summary: Run a child as if it's the foreground process. Give it stdio. Exit when it + exits. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2015-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/form-data-encoder.dep.yml b/.licenses/npm/form-data-encoder.dep.yml new file mode 100644 index 000000000..224eaf569 --- /dev/null +++ b/.licenses/npm/form-data-encoder.dep.yml @@ -0,0 +1,32 @@ +--- +name: form-data-encoder +version: 2.1.4 +type: npm +summary: Encode FormData content into the multipart/form-data format +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) 2021-present Nick K. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/form-data.dep.yml b/.licenses/npm/form-data.dep.yml new file mode 100644 index 000000000..9c4638b45 --- /dev/null +++ b/.licenses/npm/form-data.dep.yml @@ -0,0 +1,33 @@ +--- +name: form-data +version: 4.0.2 +type: npm +summary: A library to create readable "multipart/form-data" streams. Can be used to + submit forms and file uploads to other web applications. +homepage: +license: mit +licenses: +- sources: License + text: | + Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: Readme.md + text: Form-Data is released under the [MIT](License) license. +notices: [] diff --git a/.licenses/npm/formdata-polyfill.dep.yml b/.licenses/npm/formdata-polyfill.dep.yml new file mode 100644 index 000000000..7974d2272 --- /dev/null +++ b/.licenses/npm/formdata-polyfill.dep.yml @@ -0,0 +1,32 @@ +--- +name: formdata-polyfill +version: 4.0.10 +type: npm +summary: HTML5 `FormData` for Browsers and Node. +homepage: https://github.com/jimmywarting/FormData#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2016 Jimmy Karl Roland Wärting + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/formidable.dep.yml b/.licenses/npm/formidable.dep.yml new file mode 100644 index 000000000..ae8c160f0 --- /dev/null +++ b/.licenses/npm/formidable.dep.yml @@ -0,0 +1,86 @@ +--- +name: formidable +version: 2.1.2 +type: npm +summary: A node.js module for parsing form data, especially file uploads. +homepage: https://github.com/node-formidable/formidable +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2011-present Felix Geisendörfer, and contributors. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + Formidable is licensed under the [MIT License][license-url]. + + + + + [codestyle-url]: https://github.com/airbnb/javascript + [codestyle-img]: https://badgen.net/badge/code%20style/airbnb%20%2B%20prettier/ff5a5f?icon=airbnb&cache=300 + [codecov-url]: https://codecov.io/gh/node-formidable/formidable + [codecov-img]: https://badgen.net/codecov/c/github/node-formidable/formidable/master?icon=codecov + [npmv-canary-img]: https://badgen.net/npm/v/formidable/canary?icon=npm + [npmv-dev-img]: https://badgen.net/npm/v/formidable/dev?icon=npm + [npmv-img]: https://badgen.net/npm/v/formidable?icon=npm + [npmv-url]: https://npmjs.com/package/formidable + [license-img]: https://badgen.net/npm/license/formidable + [license-url]: https://github.com/node-formidable/formidable/blob/master/LICENSE + [chat-img]: https://badgen.net/badge/chat/on%20gitter/46BC99?icon=gitter + [chat-url]: https://gitter.im/node-formidable/Lobby + [libera-manifesto-url]: https://liberamanifesto.com + [libera-manifesto-img]: https://badgen.net/badge/libera/manifesto/grey + [renovateapp-url]: https://renovatebot.com + [renovateapp-img]: https://badgen.net/badge/renovate/enabled/green?cache=300 + [prs-welcome-img]: https://badgen.net/badge/PRs/welcome/green?cache=300 + [prs-welcome-url]: http://makeapullrequest.com + [twitter-url]: https://twitter.com/3a1fcBx0 + [twitter-img]: https://badgen.net/twitter/follow/3a1fcBx0?icon=twitter&color=1da1f2&cache=300 + + [npm-weekly-img]: https://badgen.net/npm/dw/formidable?icon=npm&cache=300 + [npm-monthly-img]: https://badgen.net/npm/dm/formidable?icon=npm&cache=300 + [npm-yearly-img]: https://badgen.net/npm/dy/formidable?icon=npm&cache=300 + [npm-alltime-img]: https://badgen.net/npm/dt/formidable?icon=npm&cache=300&label=total%20downloads + + [nodejs-img]: https://badgen.net/badge/node/>=%2010.13/green?cache=300 + + [ccommits-url]: https://conventionalcommits.org/ + [ccommits-img]: https://badgen.net/badge/conventional%20commits/v1.0.0/green?cache=300 + + [contributing-url]: https://github.com/node-formidable/.github/blob/master/CONTRIBUTING.md + [code_of_conduct-url]: https://github.com/node-formidable/.github/blob/master/CODE_OF_CONDUCT.md + + [open-issue-url]: https://github.com/node-formidable/formidable/issues/new + + [tidelift-url]: https://tidelift.com/subscription/pkg/npm-formidable?utm_source=npm-formidable&utm_medium=referral&utm_campaign=enterprise + [tidelift-img]: https://badgen.net/badge/tidelift/subscription/4B5168?labelColor=F6914D + + [kofi-url]: https://ko-fi.com/tunnckoCore/commissions + [kofi-img]: https://badgen.net/badge/ko-fi/support/29abe0c2?cache=300&icon=https://rawcdn.githack.com/tunnckoCore/badgen-icons/f8264c6414e0bec449dd86f2241d50a9b89a1203/icons/kofi.svg + + [linux-build-img]: https://badgen.net/github/checks/node-formidable/formidable/master/ubuntu?cache=300&label=linux%20build&icon=github + [macos-build-img]: https://badgen.net/github/checks/node-formidable/formidable/master/macos?cache=300&label=macos%20build&icon=github + [windows-build-img]: https://badgen.net/github/checks/node-formidable/formidable/master/windows?cache=300&label=windows%20build&icon=github + [build-url]: https://github.com/node-formidable/formidable/actions?query=workflow%3Anodejs + +notices: [] diff --git a/.licenses/npm/forwarded.dep.yml b/.licenses/npm/forwarded.dep.yml new file mode 100644 index 000000000..51ea334e0 --- /dev/null +++ b/.licenses/npm/forwarded.dep.yml @@ -0,0 +1,47 @@ +--- +name: forwarded +version: 0.2.0 +type: npm +summary: Parse HTTP X-Forwarded-For header +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2017 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/forwarded/master?label=ci + [ci-url]: https://github.com/jshttp/forwarded/actions?query=workflow%3Aci + [npm-image]: https://img.shields.io/npm/v/forwarded.svg + [npm-url]: https://npmjs.org/package/forwarded + [node-version-image]: https://img.shields.io/node/v/forwarded.svg + [node-version-url]: https://nodejs.org/en/download/ + [coveralls-image]: https://img.shields.io/coveralls/jshttp/forwarded/master.svg + [coveralls-url]: https://coveralls.io/r/jshttp/forwarded?branch=master + [downloads-image]: https://img.shields.io/npm/dm/forwarded.svg + [downloads-url]: https://npmjs.org/package/forwarded +notices: [] diff --git a/.licenses/npm/fqbn.dep.yml b/.licenses/npm/fqbn.dep.yml new file mode 100644 index 000000000..b569fedde --- /dev/null +++ b/.licenses/npm/fqbn.dep.yml @@ -0,0 +1,32 @@ +--- +name: fqbn +version: 1.3.0 +type: npm +summary: Arduino FQBN (fully qualified board name) +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2023 dankeboy36 + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/fresh.dep.yml b/.licenses/npm/fresh.dep.yml new file mode 100644 index 000000000..ed2efe6ca --- /dev/null +++ b/.licenses/npm/fresh.dep.yml @@ -0,0 +1,48 @@ +--- +name: fresh +version: 0.5.2 +type: npm +summary: HTTP response freshness testing +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012 TJ Holowaychuk + Copyright (c) 2016-2017 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/fresh.svg + [npm-url]: https://npmjs.org/package/fresh + [node-version-image]: https://img.shields.io/node/v/fresh.svg + [node-version-url]: https://nodejs.org/en/ + [travis-image]: https://img.shields.io/travis/jshttp/fresh/master.svg + [travis-url]: https://travis-ci.org/jshttp/fresh + [coveralls-image]: https://img.shields.io/coveralls/jshttp/fresh/master.svg + [coveralls-url]: https://coveralls.io/r/jshttp/fresh?branch=master + [downloads-image]: https://img.shields.io/npm/dm/fresh.svg + [downloads-url]: https://npmjs.org/package/fresh +notices: [] diff --git a/.licenses/npm/from.dep.yml b/.licenses/npm/from.dep.yml new file mode 100644 index 000000000..dfa7773cf --- /dev/null +++ b/.licenses/npm/from.dep.yml @@ -0,0 +1,43 @@ +--- +name: from +version: 0.1.7 +type: npm +summary: Easy way to make a Readable Stream +homepage: +license: other +licenses: +- sources: LICENSE.APACHE2 + text: | + Apache License, Version 2.0 + + Copyright (c) 2011 Dominic Tarr + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +- sources: LICENSE.MIT + text: "The MIT License\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby + granted, free of charge, \nto any person obtaining a copy of this software and + \nassociated documentation files (the \"Software\"), to \ndeal in the Software + without restriction, including \nwithout limitation the rights to use, copy, modify, + \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, + and to permit persons to whom \nthe Software is furnished to do so, \nsubject + to the following conditions:\n\nThe above copyright notice and this permission + notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE + SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" +- sources: readme.markdown + text: MIT / Apache2 +notices: [] diff --git a/.licenses/npm/fs-constants.dep.yml b/.licenses/npm/fs-constants.dep.yml new file mode 100644 index 000000000..4a1672d73 --- /dev/null +++ b/.licenses/npm/fs-constants.dep.yml @@ -0,0 +1,34 @@ +--- +name: fs-constants +version: 1.0.0 +type: npm +summary: Require constants across node and the browser +homepage: https://github.com/mafintosh/fs-constants +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2018 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/fs-extra-10.1.0.dep.yml b/.licenses/npm/fs-extra-10.1.0.dep.yml new file mode 100644 index 000000000..2841e1386 --- /dev/null +++ b/.licenses/npm/fs-extra-10.1.0.dep.yml @@ -0,0 +1,37 @@ +--- +name: fs-extra +version: 10.1.0 +type: npm +summary: fs-extra contains methods that aren't included in the vanilla Node.js fs + package. Such as recursive mkdir, copy, and remove. +homepage: https://github.com/jprichardson/node-fs-extra +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2011-2017 JP Richardson + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files + (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS + OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Licensed under MIT + + Copyright (c) 2011-2017 [JP Richardson](https://github.com/jprichardson) + + [1]: http://nodejs.org/docs/latest/api/fs.html + + + [jsonfile]: https://github.com/jprichardson/node-jsonfile +notices: [] diff --git a/.licenses/npm/fs-extra-4.0.3.dep.yml b/.licenses/npm/fs-extra-4.0.3.dep.yml new file mode 100644 index 000000000..4fdc2283c --- /dev/null +++ b/.licenses/npm/fs-extra-4.0.3.dep.yml @@ -0,0 +1,37 @@ +--- +name: fs-extra +version: 4.0.3 +type: npm +summary: fs-extra contains methods that aren't included in the vanilla Node.js fs + package. Such as mkdir -p, cp -r, and rm -rf. +homepage: https://github.com/jprichardson/node-fs-extra +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2011-2017 JP Richardson + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files + (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS + OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Licensed under MIT + + Copyright (c) 2011-2017 [JP Richardson](https://github.com/jprichardson) + + [1]: http://nodejs.org/docs/latest/api/fs.html + + + [jsonfile]: https://github.com/jprichardson/node-jsonfile +notices: [] diff --git a/.licenses/npm/fs-extra-8.1.0.dep.yml b/.licenses/npm/fs-extra-8.1.0.dep.yml new file mode 100644 index 000000000..57423ca9d --- /dev/null +++ b/.licenses/npm/fs-extra-8.1.0.dep.yml @@ -0,0 +1,37 @@ +--- +name: fs-extra +version: 8.1.0 +type: npm +summary: fs-extra contains methods that aren't included in the vanilla Node.js fs + package. Such as mkdir -p, cp -r, and rm -rf. +homepage: https://github.com/jprichardson/node-fs-extra +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2011-2017 JP Richardson + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files + (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS + OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Licensed under MIT + + Copyright (c) 2011-2017 [JP Richardson](https://github.com/jprichardson) + + [1]: http://nodejs.org/docs/latest/api/fs.html + + + [jsonfile]: https://github.com/jprichardson/node-jsonfile +notices: [] diff --git a/.licenses/npm/fs-minipass.dep.yml b/.licenses/npm/fs-minipass.dep.yml new file mode 100644 index 000000000..dcd8f5cf1 --- /dev/null +++ b/.licenses/npm/fs-minipass.dep.yml @@ -0,0 +1,26 @@ +--- +name: fs-minipass +version: 2.1.0 +type: npm +summary: fs read and write streams based on minipass +homepage: https://github.com/npm/fs-minipass#readme +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/fs.realpath.dep.yml b/.licenses/npm/fs.realpath.dep.yml new file mode 100644 index 000000000..18567bbc3 --- /dev/null +++ b/.licenses/npm/fs.realpath.dep.yml @@ -0,0 +1,55 @@ +--- +name: fs.realpath +version: 1.0.0 +type: npm +summary: Use node's fs.realpath, but fall back to the JS implementation if the native + one fails +homepage: +license: other +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ---- + + This library bundles a version of the `fs.realpath` and `fs.realpathSync` + methods from Node.js v0.10 under the terms of the Node.js MIT license. + + Node's license follows, also included at the header of `old.js` which contains + the licensed code: + + Copyright Joyent, Inc. and other Node contributors. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/fstream.dep.yml b/.licenses/npm/fstream.dep.yml new file mode 100644 index 000000000..d242fa0b5 --- /dev/null +++ b/.licenses/npm/fstream.dep.yml @@ -0,0 +1,26 @@ +--- +name: fstream +version: 1.0.12 +type: npm +summary: Advanced file system stream things +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/function-bind.dep.yml b/.licenses/npm/function-bind.dep.yml new file mode 100644 index 000000000..3ae18f3ec --- /dev/null +++ b/.licenses/npm/function-bind.dep.yml @@ -0,0 +1,32 @@ +--- +name: function-bind +version: 1.1.2 +type: npm +summary: Implementation of Function.prototype.bind +homepage: https://github.com/Raynos/function-bind +license: mit +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2013 Raynos. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/functions-have-names.dep.yml b/.licenses/npm/functions-have-names.dep.yml new file mode 100644 index 000000000..394a71d10 --- /dev/null +++ b/.licenses/npm/functions-have-names.dep.yml @@ -0,0 +1,32 @@ +--- +name: functions-have-names +version: 1.2.3 +type: npm +summary: Does this JS environment support the `name` property on functions? +homepage: https://github.com/inspect-js/functions-have-names#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/fuzzy.dep.yml b/.licenses/npm/fuzzy.dep.yml new file mode 100644 index 000000000..9568ea996 --- /dev/null +++ b/.licenses/npm/fuzzy.dep.yml @@ -0,0 +1,37 @@ +--- +name: fuzzy +version: 0.1.3 +type: npm +summary: small, standalone fuzzy search / fuzzy filter. browser or node +homepage: https://github.com/mattyork/fuzzy +license: mit +licenses: +- sources: LICENSE-MIT + text: | + Copyright (c) 2012 Matt York + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2015 Matt York + Licensed under the MIT license. +notices: [] diff --git a/.licenses/npm/gauge-2.7.4.dep.yml b/.licenses/npm/gauge-2.7.4.dep.yml new file mode 100644 index 000000000..a36c0ed89 --- /dev/null +++ b/.licenses/npm/gauge-2.7.4.dep.yml @@ -0,0 +1,24 @@ +--- +name: gauge +version: 2.7.4 +type: npm +summary: A terminal based horizontal guage +homepage: https://github.com/iarna/gauge +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/gauge-3.0.2.dep.yml b/.licenses/npm/gauge-3.0.2.dep.yml new file mode 100644 index 000000000..c5c860a33 --- /dev/null +++ b/.licenses/npm/gauge-3.0.2.dep.yml @@ -0,0 +1,24 @@ +--- +name: gauge +version: 3.0.2 +type: npm +summary: A terminal based horizontal guage +homepage: https://github.com/npm/gauge +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/get-caller-file.dep.yml b/.licenses/npm/get-caller-file.dep.yml new file mode 100644 index 000000000..3a0789715 --- /dev/null +++ b/.licenses/npm/get-caller-file.dep.yml @@ -0,0 +1,17 @@ +--- +name: get-caller-file +version: 2.0.5 +type: npm +summary: '' +homepage: https://github.com/stefanpenner/get-caller-file#readme +license: isc +licenses: +- sources: LICENSE.md + text: | + ISC License (ISC) + Copyright 2018 Stefan Penner + + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/get-intrinsic.dep.yml b/.licenses/npm/get-intrinsic.dep.yml new file mode 100644 index 000000000..c94509f44 --- /dev/null +++ b/.licenses/npm/get-intrinsic.dep.yml @@ -0,0 +1,33 @@ +--- +name: get-intrinsic +version: 1.3.0 +type: npm +summary: Get and robustly cache all JS language-level intrinsics at first require + time +homepage: https://github.com/ljharb/get-intrinsic#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/get-own-enumerable-property-symbols.dep.yml b/.licenses/npm/get-own-enumerable-property-symbols.dep.yml new file mode 100644 index 000000000..5cc7ca187 --- /dev/null +++ b/.licenses/npm/get-own-enumerable-property-symbols.dep.yml @@ -0,0 +1,25 @@ +--- +name: get-own-enumerable-property-symbols +version: 3.0.2 +type: npm +summary: Returns an array of all enumerable symbol properties found directly upon + a given object +homepage: https://github.com/mightyiam/get-own-enumerable-property-symbols#readme +license: isc +licenses: +- sources: LICENSE + text: |- + Copyright (c) 2019, Shahar Or + + Permission to use, copy, modify, and/or distribute this software for any purpose + with or without fee is hereby granted, provided that the above copyright notice + and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF + THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/get-proto.dep.yml b/.licenses/npm/get-proto.dep.yml new file mode 100644 index 000000000..1176a9536 --- /dev/null +++ b/.licenses/npm/get-proto.dep.yml @@ -0,0 +1,32 @@ +--- +name: get-proto +version: 1.0.1 +type: npm +summary: Robustly get the [[Prototype]] of an object +homepage: https://github.com/ljharb/get-proto#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2025 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/get-stream-2.3.1.dep.yml b/.licenses/npm/get-stream-2.3.1.dep.yml new file mode 100644 index 000000000..685817eae --- /dev/null +++ b/.licenses/npm/get-stream-2.3.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: get-stream +version: 2.3.1 +type: npm +summary: Get a stream as a string, buffer, or array +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/get-stream-5.2.0.dep.yml b/.licenses/npm/get-stream-5.2.0.dep.yml new file mode 100644 index 000000000..f7c8f4062 --- /dev/null +++ b/.licenses/npm/get-stream-5.2.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: get-stream +version: 5.2.0 +type: npm +summary: Get a stream as a string, buffer, or array +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/get-stream-6.0.1.dep.yml b/.licenses/npm/get-stream-6.0.1.dep.yml new file mode 100644 index 000000000..b00b495d0 --- /dev/null +++ b/.licenses/npm/get-stream-6.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: get-stream +version: 6.0.1 +type: npm +summary: Get a stream as a string, buffer, or array +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/github-from-package.dep.yml b/.licenses/npm/github-from-package.dep.yml new file mode 100644 index 000000000..6c1a5c6fc --- /dev/null +++ b/.licenses/npm/github-from-package.dep.yml @@ -0,0 +1,31 @@ +--- +name: github-from-package +version: 0.0.0 +type: npm +summary: return the github url from a package.json file +homepage: https://github.com/substack/github-from-package +license: other +licenses: +- sources: LICENSE + text: | + This software is released under the MIT license: + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/glob-10.4.4.dep.yml b/.licenses/npm/glob-10.4.4.dep.yml new file mode 100644 index 000000000..927cb115f --- /dev/null +++ b/.licenses/npm/glob-10.4.4.dep.yml @@ -0,0 +1,26 @@ +--- +name: glob +version: 10.4.4 +type: npm +summary: the most correct and second fastest glob implementation in JavaScript +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2009-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/glob-10.4.5.dep.yml b/.licenses/npm/glob-10.4.5.dep.yml new file mode 100644 index 000000000..74e806612 --- /dev/null +++ b/.licenses/npm/glob-10.4.5.dep.yml @@ -0,0 +1,26 @@ +--- +name: glob +version: 10.4.5 +type: npm +summary: the most correct and second fastest glob implementation in JavaScript +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2009-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/glob-7.2.3.dep.yml b/.licenses/npm/glob-7.2.3.dep.yml new file mode 100644 index 000000000..257b41bfe --- /dev/null +++ b/.licenses/npm/glob-7.2.3.dep.yml @@ -0,0 +1,32 @@ +--- +name: glob +version: 7.2.3 +type: npm +summary: a little globber +homepage: +license: other +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ## Glob Logo + + Glob's logo created by Tanya Brassie , licensed + under a Creative Commons Attribution-ShareAlike 4.0 International License + https://creativecommons.org/licenses/by-sa/4.0/ +notices: [] diff --git a/.licenses/npm/global-agent.dep.yml b/.licenses/npm/global-agent.dep.yml new file mode 100644 index 000000000..6aa1d8a94 --- /dev/null +++ b/.licenses/npm/global-agent.dep.yml @@ -0,0 +1,35 @@ +--- +name: global-agent +version: 3.0.0 +type: npm +summary: Global HTTP/HTTPS proxy configurable using environment variables. +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright (c) 2019, Gajus Kuizinas (http://gajus.com/) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/globals.dep.yml b/.licenses/npm/globals.dep.yml new file mode 100644 index 000000000..e5b7b5e82 --- /dev/null +++ b/.licenses/npm/globals.dep.yml @@ -0,0 +1,22 @@ +--- +name: globals +version: 11.12.0 +type: npm +summary: Global identifiers from different JavaScript environments +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/globalthis.dep.yml b/.licenses/npm/globalthis.dep.yml new file mode 100644 index 000000000..6679dc4ff --- /dev/null +++ b/.licenses/npm/globalthis.dep.yml @@ -0,0 +1,32 @@ +--- +name: globalthis +version: 1.0.4 +type: npm +summary: ECMAScript spec-compliant polyfill/shim for `globalThis` +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/globby.dep.yml b/.licenses/npm/globby.dep.yml new file mode 100644 index 000000000..af46beea7 --- /dev/null +++ b/.licenses/npm/globby.dep.yml @@ -0,0 +1,22 @@ +--- +name: globby +version: 7.1.1 +type: npm +summary: Extends `glob` with support for multiple patterns and exposes a Promise API +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/google-protobuf.dep.yml b/.licenses/npm/google-protobuf.dep.yml new file mode 100644 index 000000000..dc3078792 --- /dev/null +++ b/.licenses/npm/google-protobuf.dep.yml @@ -0,0 +1,218 @@ +--- +name: google-protobuf +version: 3.21.4 +type: npm +summary: Protocol Buffers for JavaScript +homepage: +license: other +licenses: +- sources: LICENSE.md + text: | + BSD 3-Clause License + + Copyright (c) 2022, Google Inc. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: LICENSE-asserts.md + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS +notices: [] diff --git a/.licenses/npm/gopd.dep.yml b/.licenses/npm/gopd.dep.yml new file mode 100644 index 000000000..d3d28af9b --- /dev/null +++ b/.licenses/npm/gopd.dep.yml @@ -0,0 +1,32 @@ +--- +name: gopd +version: 1.2.0 +type: npm +summary: "`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation." +homepage: https://github.com/ljharb/gopd#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2022 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/got-11.8.6.dep.yml b/.licenses/npm/got-11.8.6.dep.yml new file mode 100644 index 000000000..2faefb998 --- /dev/null +++ b/.licenses/npm/got-11.8.6.dep.yml @@ -0,0 +1,20 @@ +--- +name: got +version: 11.8.6 +type: npm +summary: Human-friendly and powerful HTTP request library for Node.js +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/got-12.6.1.dep.yml b/.licenses/npm/got-12.6.1.dep.yml new file mode 100644 index 000000000..e141aacfb --- /dev/null +++ b/.licenses/npm/got-12.6.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: got +version: 12.6.1 +type: npm +summary: Human-friendly and powerful HTTP request library for Node.js +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/graceful-fs.dep.yml b/.licenses/npm/graceful-fs.dep.yml new file mode 100644 index 000000000..36aacf2a6 --- /dev/null +++ b/.licenses/npm/graceful-fs.dep.yml @@ -0,0 +1,26 @@ +--- +name: graceful-fs +version: 4.2.11 +type: npm +summary: A drop-in replacement for fs, making various improvements. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/grpc-tools.dep.yml b/.licenses/npm/grpc-tools.dep.yml new file mode 100644 index 000000000..5df1f3e30 --- /dev/null +++ b/.licenses/npm/grpc-tools.dep.yml @@ -0,0 +1,212 @@ +--- +name: grpc-tools +version: 1.13.0 +type: npm +summary: Tools for developing with gRPC on Node.js +homepage: https://grpc.io/ +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/has-bigints.dep.yml b/.licenses/npm/has-bigints.dep.yml new file mode 100644 index 000000000..6af38e859 --- /dev/null +++ b/.licenses/npm/has-bigints.dep.yml @@ -0,0 +1,32 @@ +--- +name: has-bigints +version: 1.1.0 +type: npm +summary: Determine if the JS environment has BigInt support. +homepage: https://github.com/ljharb/has-bigints#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/has-flag.dep.yml b/.licenses/npm/has-flag.dep.yml new file mode 100644 index 000000000..41df6da65 --- /dev/null +++ b/.licenses/npm/has-flag.dep.yml @@ -0,0 +1,22 @@ +--- +name: has-flag +version: 4.0.0 +type: npm +summary: Check if argv has a specific flag +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/has-property-descriptors.dep.yml b/.licenses/npm/has-property-descriptors.dep.yml new file mode 100644 index 000000000..683d8c65f --- /dev/null +++ b/.licenses/npm/has-property-descriptors.dep.yml @@ -0,0 +1,33 @@ +--- +name: has-property-descriptors +version: 1.0.2 +type: npm +summary: Does the environment have full property descriptor support? Handles IE 8's + broken defineProperty/gOPD. +homepage: https://github.com/inspect-js/has-property-descriptors#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2022 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/has-symbols.dep.yml b/.licenses/npm/has-symbols.dep.yml new file mode 100644 index 000000000..38b50f044 --- /dev/null +++ b/.licenses/npm/has-symbols.dep.yml @@ -0,0 +1,32 @@ +--- +name: has-symbols +version: 1.1.0 +type: npm +summary: Determine if the JS environment has Symbol support. Supports spec, or shams. +homepage: https://github.com/ljharb/has-symbols#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2016 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/has-tostringtag.dep.yml b/.licenses/npm/has-tostringtag.dep.yml new file mode 100644 index 000000000..efa5c5c1b --- /dev/null +++ b/.licenses/npm/has-tostringtag.dep.yml @@ -0,0 +1,33 @@ +--- +name: has-tostringtag +version: 1.0.2 +type: npm +summary: Determine if the JS environment has `Symbol.toStringTag` support. Supports + spec, or shams. +homepage: https://github.com/inspect-js/has-tostringtag#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/has-unicode.dep.yml b/.licenses/npm/has-unicode.dep.yml new file mode 100644 index 000000000..8e592d1d3 --- /dev/null +++ b/.licenses/npm/has-unicode.dep.yml @@ -0,0 +1,26 @@ +--- +name: has-unicode +version: 2.0.1 +type: npm +summary: Try to guess if your terminal supports unicode +homepage: https://github.com/iarna/has-unicode +license: isc +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2014, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/hash.js.dep.yml b/.licenses/npm/hash.js.dep.yml new file mode 100644 index 000000000..e87edb87e --- /dev/null +++ b/.licenses/npm/hash.js.dep.yml @@ -0,0 +1,33 @@ +--- +name: hash.js +version: 1.1.7 +type: npm +summary: Various hash functions that could be run by both browser and node +homepage: https://github.com/indutny/hash.js +license: mit +licenses: +- sources: README.md + text: |- + This software is licensed under the MIT License. + + Copyright Fedor Indutny, 2014. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to permit + persons to whom the Software is furnished to do so, subject to the + following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/hasown.dep.yml b/.licenses/npm/hasown.dep.yml new file mode 100644 index 000000000..992639195 --- /dev/null +++ b/.licenses/npm/hasown.dep.yml @@ -0,0 +1,32 @@ +--- +name: hasown +version: 2.0.2 +type: npm +summary: A robust, ES3 compatible, "has own property" predicate. +homepage: https://github.com/inspect-js/hasOwn#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Jordan Harband and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/hast-util-whitespace.dep.yml b/.licenses/npm/hast-util-whitespace.dep.yml new file mode 100644 index 000000000..de165855c --- /dev/null +++ b/.licenses/npm/hast-util-whitespace.dep.yml @@ -0,0 +1,96 @@ +--- +name: hast-util-whitespace +version: 2.0.1 +type: npm +summary: hast utility to check if a node is inter-element whitespace +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/hast-util-whitespace/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/hast-util-whitespace/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/hast-util-whitespace.svg + + [coverage]: https://codecov.io/github/syntax-tree/hast-util-whitespace + + [downloads-badge]: https://img.shields.io/npm/dm/hast-util-whitespace.svg + + [downloads]: https://www.npmjs.com/package/hast-util-whitespace + + [size-badge]: https://img.shields.io/bundlephobia/minzip/hast-util-whitespace.svg + + [size]: https://bundlephobia.com/result?p=hast-util-whitespace + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [hast]: https://github.com/syntax-tree/hast + + [spec]: https://html.spec.whatwg.org/multipage/dom.html#inter-element-whitespace + + [node]: https://github.com/syntax-tree/hast#nodes + + [text]: https://github.com/syntax-tree/hast#text + + [xss]: https://en.wikipedia.org/wiki/Cross-site_scripting + + [whitespace]: #whitespacething +notices: [] diff --git a/.licenses/npm/hexoid.dep.yml b/.licenses/npm/hexoid.dep.yml new file mode 100644 index 000000000..be9a2aba0 --- /dev/null +++ b/.licenses/npm/hexoid.dep.yml @@ -0,0 +1,23 @@ +--- +name: hexoid +version: 1.0.0 +type: npm +summary: A tiny (190B) and extremely fast utility to generate random IDs of fixed + length +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Luke Edwards (lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/hoist-non-react-statics.dep.yml b/.licenses/npm/hoist-non-react-statics.dep.yml new file mode 100644 index 000000000..452a2c7cf --- /dev/null +++ b/.licenses/npm/hoist-non-react-statics.dep.yml @@ -0,0 +1,48 @@ +--- +name: hoist-non-react-statics +version: 3.3.2 +type: npm +summary: Copies non-react specific statics from a child component to a parent component +homepage: +license: other +licenses: +- sources: LICENSE.md + text: | + Software License Agreement (BSD License) + ======================================== + + Copyright (c) 2015, Yahoo! Inc. All rights reserved. + ---------------------------------------------------- + + Redistribution and use of this software in source and binary forms, with or + without modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be + used to endorse or promote products derived from this software without + specific prior written permission of Yahoo! Inc. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: |- + This software is free to use under the Yahoo Inc. BSD license. + See the [LICENSE file][] for license text and copyright information. + + [LICENSE file]: https://github.com/mridgway/hoist-non-react-statics/blob/master/LICENSE.md + + Third-party open source code used are listed in our [package.json file]( https://github.com/mridgway/hoist-non-react-statics/blob/master/package.json). +notices: [] diff --git a/.licenses/npm/html-encoding-sniffer.dep.yml b/.licenses/npm/html-encoding-sniffer.dep.yml new file mode 100644 index 000000000..1ad07f836 --- /dev/null +++ b/.licenses/npm/html-encoding-sniffer.dep.yml @@ -0,0 +1,18 @@ +--- +name: html-encoding-sniffer +version: 3.0.0 +type: npm +summary: Sniff the encoding from a HTML byte stream +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright © Domenic Denicola + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/http-cache-semantics.dep.yml b/.licenses/npm/http-cache-semantics.dep.yml new file mode 100644 index 000000000..29a62f4f3 --- /dev/null +++ b/.licenses/npm/http-cache-semantics.dep.yml @@ -0,0 +1,21 @@ +--- +name: http-cache-semantics +version: 4.1.1 +type: npm +summary: Parses Cache-Control and other headers. Helps building correct HTTP caches + and proxies +homepage: +license: bsd-2-clause +licenses: +- sources: LICENSE + text: | + Copyright 2016-2018 Kornel Lesiński + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/http-errors.dep.yml b/.licenses/npm/http-errors.dep.yml new file mode 100644 index 000000000..ee2644c15 --- /dev/null +++ b/.licenses/npm/http-errors.dep.yml @@ -0,0 +1,49 @@ +--- +name: http-errors +version: 2.0.0 +type: npm +summary: Create HTTP error objects +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + + The MIT License (MIT) + + Copyright (c) 2014 Jonathan Ong me@jongleberry.com + Copyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/http-errors/master?label=ci + [ci-url]: https://github.com/jshttp/http-errors/actions?query=workflow%3Aci + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/http-errors/master + [coveralls-url]: https://coveralls.io/r/jshttp/http-errors?branch=master + [node-image]: https://badgen.net/npm/node/http-errors + [node-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/http-errors + [npm-url]: https://npmjs.org/package/http-errors + [npm-version-image]: https://badgen.net/npm/v/http-errors + [travis-image]: https://badgen.net/travis/jshttp/http-errors/master + [travis-url]: https://travis-ci.org/jshttp/http-errors +notices: [] diff --git a/.licenses/npm/http-proxy-agent-4.0.1.dep.yml b/.licenses/npm/http-proxy-agent-4.0.1.dep.yml new file mode 100644 index 000000000..08d01d9a3 --- /dev/null +++ b/.licenses/npm/http-proxy-agent-4.0.1.dep.yml @@ -0,0 +1,33 @@ +--- +name: http-proxy-agent +version: 4.0.1 +type: npm +summary: An HTTP(s) proxy `http.Agent` implementation for HTTP +homepage: +license: mit +licenses: +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/http-proxy-agent-5.0.0.dep.yml b/.licenses/npm/http-proxy-agent-5.0.0.dep.yml new file mode 100644 index 000000000..74cc72b7c --- /dev/null +++ b/.licenses/npm/http-proxy-agent-5.0.0.dep.yml @@ -0,0 +1,33 @@ +--- +name: http-proxy-agent +version: 5.0.0 +type: npm +summary: An HTTP(s) proxy `http.Agent` implementation for HTTP +homepage: +license: mit +licenses: +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/http-status-codes.dep.yml b/.licenses/npm/http-status-codes.dep.yml new file mode 100644 index 000000000..da658701e --- /dev/null +++ b/.licenses/npm/http-status-codes.dep.yml @@ -0,0 +1,31 @@ +--- +name: http-status-codes +version: 1.4.0 +type: npm +summary: Constants enumerating the HTTP status codes. Based on the Java Apache HttpStatus + API. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/http2-wrapper-1.0.3.dep.yml b/.licenses/npm/http2-wrapper-1.0.3.dep.yml new file mode 100644 index 000000000..48fd6653b --- /dev/null +++ b/.licenses/npm/http2-wrapper-1.0.3.dep.yml @@ -0,0 +1,34 @@ +--- +name: http2-wrapper +version: 1.0.3 +type: npm +summary: HTTP2 client, just with the familiar `https` API +homepage: https://github.com/szmarczak/http2-wrapper#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/http2-wrapper-2.2.1.dep.yml b/.licenses/npm/http2-wrapper-2.2.1.dep.yml new file mode 100644 index 000000000..24d20c316 --- /dev/null +++ b/.licenses/npm/http2-wrapper-2.2.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: http2-wrapper +version: 2.2.1 +type: npm +summary: HTTP2 client, just with the familiar `https` API +homepage: https://github.com/szmarczak/http2-wrapper#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/https-proxy-agent-5.0.1.dep.yml b/.licenses/npm/https-proxy-agent-5.0.1.dep.yml new file mode 100644 index 000000000..ac2983a87 --- /dev/null +++ b/.licenses/npm/https-proxy-agent-5.0.1.dep.yml @@ -0,0 +1,35 @@ +--- +name: https-proxy-agent +version: 5.0.1 +type: npm +summary: An HTTP(s) proxy `http.Agent` implementation for HTTPS +homepage: +license: mit +licenses: +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + [CONNECT]: http://en.wikipedia.org/wiki/HTTP_tunnel#HTTP_CONNECT_Tunneling +notices: [] diff --git a/.licenses/npm/https-proxy-agent-7.0.6.dep.yml b/.licenses/npm/https-proxy-agent-7.0.6.dep.yml new file mode 100644 index 000000000..7b6e176d7 --- /dev/null +++ b/.licenses/npm/https-proxy-agent-7.0.6.dep.yml @@ -0,0 +1,33 @@ +--- +name: https-proxy-agent +version: 7.0.6 +type: npm +summary: An HTTP(s) proxy `http.Agent` implementation for HTTPS +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/human-signals.dep.yml b/.licenses/npm/human-signals.dep.yml new file mode 100644 index 000000000..7d2c66815 --- /dev/null +++ b/.licenses/npm/human-signals.dep.yml @@ -0,0 +1,212 @@ +--- +name: human-signals +version: 1.1.1 +type: npm +summary: Human-friendly process signals +homepage: https://git.io/JeluP +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2019 ehmicky + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/iconv-lite-0.4.24.dep.yml b/.licenses/npm/iconv-lite-0.4.24.dep.yml new file mode 100644 index 000000000..5e70e9f41 --- /dev/null +++ b/.licenses/npm/iconv-lite-0.4.24.dep.yml @@ -0,0 +1,33 @@ +--- +name: iconv-lite +version: 0.4.24 +type: npm +summary: Convert character encodings in pure javascript. +homepage: https://github.com/ashtuchkin/iconv-lite +license: mit +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2011 Alexander Shtuchkin + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/iconv-lite-0.6.3.dep.yml b/.licenses/npm/iconv-lite-0.6.3.dep.yml new file mode 100644 index 000000000..01070fcbc --- /dev/null +++ b/.licenses/npm/iconv-lite-0.6.3.dep.yml @@ -0,0 +1,33 @@ +--- +name: iconv-lite +version: 0.6.3 +type: npm +summary: Convert character encodings in pure javascript. +homepage: https://github.com/ashtuchkin/iconv-lite +license: mit +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2011 Alexander Shtuchkin + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/idb.dep.yml b/.licenses/npm/idb.dep.yml new file mode 100644 index 000000000..3fe25eb82 --- /dev/null +++ b/.licenses/npm/idb.dep.yml @@ -0,0 +1,17 @@ +--- +name: idb +version: 4.0.5 +type: npm +summary: A small wrapper that makes IndexedDB usable +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + ISC License (ISC) + Copyright (c) 2016, Jake Archibald + + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/idtoken-verifier.dep.yml b/.licenses/npm/idtoken-verifier.dep.yml new file mode 100644 index 000000000..883e921b8 --- /dev/null +++ b/.licenses/npm/idtoken-verifier.dep.yml @@ -0,0 +1,32 @@ +--- +name: idtoken-verifier +version: 2.2.4 +type: npm +summary: A lightweight library to decode and verify RS JWT meant for the browser. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2016 Auth0, Inc. (http://auth0.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/ieee754.dep.yml b/.licenses/npm/ieee754.dep.yml new file mode 100644 index 000000000..02746b61b --- /dev/null +++ b/.licenses/npm/ieee754.dep.yml @@ -0,0 +1,25 @@ +--- +name: ieee754 +version: 1.2.1 +type: npm +summary: Read/write IEEE754 floating point numbers from/to a Buffer or array-like + object +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright 2008 Fair Oaks Labs, Inc. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: BSD 3 Clause. Copyright (c) 2008, Fair Oaks Labs, Inc. +notices: [] diff --git a/.licenses/npm/ignore.dep.yml b/.licenses/npm/ignore.dep.yml new file mode 100644 index 000000000..3f47b8a19 --- /dev/null +++ b/.licenses/npm/ignore.dep.yml @@ -0,0 +1,30 @@ +--- +name: ignore +version: 3.3.10 +type: npm +summary: Ignore is a manager and filter for .gitignore rules. +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/import-fresh.dep.yml b/.licenses/npm/import-fresh.dep.yml new file mode 100644 index 000000000..80c731ae3 --- /dev/null +++ b/.licenses/npm/import-fresh.dep.yml @@ -0,0 +1,20 @@ +--- +name: import-fresh +version: 3.3.1 +type: npm +summary: Import a module while bypassing the cache +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/imurmurhash.dep.yml b/.licenses/npm/imurmurhash.dep.yml new file mode 100644 index 000000000..3649b57ba --- /dev/null +++ b/.licenses/npm/imurmurhash.dep.yml @@ -0,0 +1,30 @@ +--- +name: imurmurhash +version: 0.1.4 +type: npm +summary: An incremental implementation of MurmurHash3 +homepage: https://github.com/jensyt/imurmurhash-js +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/indent-string-4.0.0.dep.yml b/.licenses/npm/indent-string-4.0.0.dep.yml new file mode 100644 index 000000000..3944e0c0d --- /dev/null +++ b/.licenses/npm/indent-string-4.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: indent-string +version: 4.0.0 +type: npm +summary: Indent each line in a string +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/indent-string-5.0.0.dep.yml b/.licenses/npm/indent-string-5.0.0.dep.yml new file mode 100644 index 000000000..6d8ceebcb --- /dev/null +++ b/.licenses/npm/indent-string-5.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: indent-string +version: 5.0.0 +type: npm +summary: Indent each line in a string +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/inflight.dep.yml b/.licenses/npm/inflight.dep.yml new file mode 100644 index 000000000..30e123e1a --- /dev/null +++ b/.licenses/npm/inflight.dep.yml @@ -0,0 +1,26 @@ +--- +name: inflight +version: 1.0.6 +type: npm +summary: Add callbacks to requests in flight to avoid async duplication +homepage: https://github.com/isaacs/inflight +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/inherits.dep.yml b/.licenses/npm/inherits.dep.yml new file mode 100644 index 000000000..74179e61f --- /dev/null +++ b/.licenses/npm/inherits.dep.yml @@ -0,0 +1,28 @@ +--- +name: inherits +version: 2.0.4 +type: npm +summary: Browser-friendly inheritance fully compatible with standard node.js inherits() +homepage: +license: isc +licenses: +- sources: LICENSE + text: |+ + The ISC License + + Copyright (c) Isaac Z. Schlueter + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/ini.dep.yml b/.licenses/npm/ini.dep.yml new file mode 100644 index 000000000..8d426e568 --- /dev/null +++ b/.licenses/npm/ini.dep.yml @@ -0,0 +1,26 @@ +--- +name: ini +version: 1.3.8 +type: npm +summary: An ini encoder/decoder for node +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/inline-style-parser.dep.yml b/.licenses/npm/inline-style-parser.dep.yml new file mode 100644 index 000000000..c3452283b --- /dev/null +++ b/.licenses/npm/inline-style-parser.dep.yml @@ -0,0 +1,12 @@ +--- +name: inline-style-parser +version: 0.1.1 +type: npm +summary: An inline style parser. +homepage: +license: mit +licenses: +- sources: README.md + text: MIT. See [license](https://github.com/reworkcss/css/blob/v2.2.4/LICENSE) from + original project. +notices: [] diff --git a/.licenses/npm/internal-slot.dep.yml b/.licenses/npm/internal-slot.dep.yml new file mode 100644 index 000000000..7005b7072 --- /dev/null +++ b/.licenses/npm/internal-slot.dep.yml @@ -0,0 +1,32 @@ +--- +name: internal-slot +version: 1.1.0 +type: npm +summary: ES spec-like internal slots +homepage: https://github.com/ljharb/internal-slot#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/inversify.dep.yml b/.licenses/npm/inversify.dep.yml new file mode 100644 index 000000000..368320591 --- /dev/null +++ b/.licenses/npm/inversify.dep.yml @@ -0,0 +1,47 @@ +--- +name: inversify +version: 6.0.2 +type: npm +summary: A powerful and lightweight inversion of control container for JavaScript + and Node.js apps powered by TypeScript. +homepage: http://inversify.io +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015-2017 Remo H. Jansen + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: |- + License under the MIT License (MIT) + + Copyright © 2015-2017 [Remo H. Jansen](http://www.remojansen.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ip-address.dep.yml b/.licenses/npm/ip-address.dep.yml new file mode 100644 index 000000000..459aabf56 --- /dev/null +++ b/.licenses/npm/ip-address.dep.yml @@ -0,0 +1,30 @@ +--- +name: ip-address +version: 9.0.5 +type: npm +summary: A library for parsing IPv4 and IPv6 IP addresses in node and the browser. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (C) 2011 by Beau Gunderson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ip-regex.dep.yml b/.licenses/npm/ip-regex.dep.yml new file mode 100644 index 000000000..cf6a19e21 --- /dev/null +++ b/.licenses/npm/ip-regex.dep.yml @@ -0,0 +1,22 @@ +--- +name: ip-regex +version: 4.3.0 +type: npm +summary: Regular expression for matching IP addresses (IPv4 & IPv6) +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/ipaddr.js.dep.yml b/.licenses/npm/ipaddr.js.dep.yml new file mode 100644 index 000000000..e2bde7107 --- /dev/null +++ b/.licenses/npm/ipaddr.js.dep.yml @@ -0,0 +1,30 @@ +--- +name: ipaddr.js +version: 1.9.1 +type: npm +summary: A library for manipulating IPv4 and IPv6 addresses in JavaScript. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (C) 2011-2017 whitequark + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-arguments.dep.yml b/.licenses/npm/is-arguments.dep.yml new file mode 100644 index 000000000..25e4f6851 --- /dev/null +++ b/.licenses/npm/is-arguments.dep.yml @@ -0,0 +1,31 @@ +--- +name: is-arguments +version: 1.2.0 +type: npm +summary: Is this an arguments object? It's a harder question than you think. +homepage: https://github.com/inspect-js/is-arguments +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-array-buffer.dep.yml b/.licenses/npm/is-array-buffer.dep.yml new file mode 100644 index 000000000..175a5db16 --- /dev/null +++ b/.licenses/npm/is-array-buffer.dep.yml @@ -0,0 +1,32 @@ +--- +name: is-array-buffer +version: 3.0.5 +type: npm +summary: Is this value a JS ArrayBuffer? +homepage: https://github.com/inspect-js/is-array-buffer#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2015 Chen Gengyuan, Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-arrayish.dep.yml b/.licenses/npm/is-arrayish.dep.yml new file mode 100644 index 000000000..01bf70ec6 --- /dev/null +++ b/.licenses/npm/is-arrayish.dep.yml @@ -0,0 +1,36 @@ +--- +name: is-arrayish +version: 0.2.1 +type: npm +summary: Determines if an object can be used as an array +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 JD Ballard + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Licensed under the [MIT License](http://opensource.org/licenses/MIT). + You can find a copy of it in [LICENSE](LICENSE). +notices: [] diff --git a/.licenses/npm/is-bigint.dep.yml b/.licenses/npm/is-bigint.dep.yml new file mode 100644 index 000000000..0b271e4e5 --- /dev/null +++ b/.licenses/npm/is-bigint.dep.yml @@ -0,0 +1,32 @@ +--- +name: is-bigint +version: 1.1.0 +type: npm +summary: Is this value an ES BigInt? +homepage: https://github.com/inspect-js/is-bigint#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-boolean-object.dep.yml b/.licenses/npm/is-boolean-object.dep.yml new file mode 100644 index 000000000..3378ad130 --- /dev/null +++ b/.licenses/npm/is-boolean-object.dep.yml @@ -0,0 +1,35 @@ +--- +name: is-boolean-object +version: 1.2.2 +type: npm +summary: Is this value a JS Boolean? This module works cross-realm/iframe, and despite + ES6 @@toStringTag. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/is-buffer.dep.yml b/.licenses/npm/is-buffer.dep.yml new file mode 100644 index 000000000..ce889264c --- /dev/null +++ b/.licenses/npm/is-buffer.dep.yml @@ -0,0 +1,34 @@ +--- +name: is-buffer +version: 2.0.5 +type: npm +summary: Determine if an object is a Buffer +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Feross Aboukhadijeh + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org). +notices: [] diff --git a/.licenses/npm/is-callable.dep.yml b/.licenses/npm/is-callable.dep.yml new file mode 100644 index 000000000..b442f55c2 --- /dev/null +++ b/.licenses/npm/is-callable.dep.yml @@ -0,0 +1,35 @@ +--- +name: is-callable +version: 1.2.7 +type: npm +summary: Is this JS value callable? Works with Functions and GeneratorFunctions, despite + ES6 @@toStringTag. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/is-core-module.dep.yml b/.licenses/npm/is-core-module.dep.yml new file mode 100644 index 000000000..f3336baf8 --- /dev/null +++ b/.licenses/npm/is-core-module.dep.yml @@ -0,0 +1,31 @@ +--- +name: is-core-module +version: 2.16.1 +type: npm +summary: Is this specifier a node.js core module? +homepage: https://github.com/inspect-js/is-core-module +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Dave Justice + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-date-object.dep.yml b/.licenses/npm/is-date-object.dep.yml new file mode 100644 index 000000000..22300e1f6 --- /dev/null +++ b/.licenses/npm/is-date-object.dep.yml @@ -0,0 +1,35 @@ +--- +name: is-date-object +version: 1.1.0 +type: npm +summary: Is this value a JS Date object? This module works cross-realm/iframe, and + despite ES6 @@toStringTag. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/is-docker.dep.yml b/.licenses/npm/is-docker.dep.yml new file mode 100644 index 000000000..5d674637a --- /dev/null +++ b/.licenses/npm/is-docker.dep.yml @@ -0,0 +1,20 @@ +--- +name: is-docker +version: 2.2.1 +type: npm +summary: Check if the process is running inside a Docker container +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-electron.dep.yml b/.licenses/npm/is-electron.dep.yml new file mode 100644 index 000000000..a8144b974 --- /dev/null +++ b/.licenses/npm/is-electron.dep.yml @@ -0,0 +1,37 @@ +--- +name: is-electron +version: 2.2.2 +type: npm +summary: Detect if running in Electron. +homepage: https://github.com/cheton/is-electron +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016-2018 Cheton Wu + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2016 Cheton Wu + + Licensed under the [MIT License](LICENSE). +notices: [] diff --git a/.licenses/npm/is-extglob.dep.yml b/.licenses/npm/is-extglob.dep.yml new file mode 100644 index 000000000..f2d0d6e35 --- /dev/null +++ b/.licenses/npm/is-extglob.dep.yml @@ -0,0 +1,40 @@ +--- +name: is-extglob +version: 2.1.1 +type: npm +summary: Returns true if a string has an extglob. +homepage: https://github.com/jonschlinkert/is-extglob +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014-2016, Jon Schlinkert + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT license](https://github.com/jonschlinkert/is-extglob/blob/master/LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.31, on October 12, 2016._ +notices: [] diff --git a/.licenses/npm/is-fullwidth-code-point-1.0.0.dep.yml b/.licenses/npm/is-fullwidth-code-point-1.0.0.dep.yml new file mode 100644 index 000000000..0305bde1d --- /dev/null +++ b/.licenses/npm/is-fullwidth-code-point-1.0.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: is-fullwidth-code-point +version: 1.0.0 +type: npm +summary: Check if the character represented by a given Unicode code point is fullwidth +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-fullwidth-code-point-3.0.0.dep.yml b/.licenses/npm/is-fullwidth-code-point-3.0.0.dep.yml new file mode 100644 index 000000000..87e3ac83b --- /dev/null +++ b/.licenses/npm/is-fullwidth-code-point-3.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: is-fullwidth-code-point +version: 3.0.0 +type: npm +summary: Check if the character represented by a given Unicode code point is fullwidth +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-generator-function.dep.yml b/.licenses/npm/is-generator-function.dep.yml new file mode 100644 index 000000000..62ada9716 --- /dev/null +++ b/.licenses/npm/is-generator-function.dep.yml @@ -0,0 +1,31 @@ +--- +name: is-generator-function +version: 1.1.0 +type: npm +summary: Determine if a function is a native generator function. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-glob.dep.yml b/.licenses/npm/is-glob.dep.yml new file mode 100644 index 000000000..205758eba --- /dev/null +++ b/.licenses/npm/is-glob.dep.yml @@ -0,0 +1,43 @@ +--- +name: is-glob +version: 4.0.3 +type: npm +summary: Returns `true` if the given string looks like a glob pattern or an extglob + pattern. This makes it easy to create code that only uses external modules like + node-glob when necessary, resulting in much faster code execution and initialization + time, and a better user experience. +homepage: https://github.com/micromatch/is-glob +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014-2017, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on March 27, 2019._ +notices: [] diff --git a/.licenses/npm/is-ip.dep.yml b/.licenses/npm/is-ip.dep.yml new file mode 100644 index 000000000..b4878b27a --- /dev/null +++ b/.licenses/npm/is-ip.dep.yml @@ -0,0 +1,22 @@ +--- +name: is-ip +version: 3.1.0 +type: npm +summary: Check if a string is an IP address +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-map.dep.yml b/.licenses/npm/is-map.dep.yml new file mode 100644 index 000000000..24478614d --- /dev/null +++ b/.licenses/npm/is-map.dep.yml @@ -0,0 +1,33 @@ +--- +name: is-map +version: 2.0.3 +type: npm +summary: Is this value a JS Map? This module works cross-realm/iframe, and despite + ES6 @@toStringTag. +homepage: https://github.com/inspect-js/is-map#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-natural-number.dep.yml b/.licenses/npm/is-natural-number.dep.yml new file mode 100644 index 000000000..99544aae8 --- /dev/null +++ b/.licenses/npm/is-natural-number.dep.yml @@ -0,0 +1,36 @@ +--- +name: is-natural-number +version: 4.0.1 +type: npm +summary: Check if a value is a natural number +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 - 2016 Shinnosuke Watanabe + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2014 - 2016 [Shinnosuke Watanabe](https://github.com/shinnn) + + Licensed under [the MIT License](./LICENSE). +notices: [] diff --git a/.licenses/npm/is-number-object.dep.yml b/.licenses/npm/is-number-object.dep.yml new file mode 100644 index 000000000..b54983f41 --- /dev/null +++ b/.licenses/npm/is-number-object.dep.yml @@ -0,0 +1,35 @@ +--- +name: is-number-object +version: 1.1.1 +type: npm +summary: Is this value a JS Number object? This module works cross-realm/iframe, and + despite ES6 @@toStringTag. +homepage: https://github.com/inspect-js/is-number-object#readme +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/is-number.dep.yml b/.licenses/npm/is-number.dep.yml new file mode 100644 index 000000000..948ae04d7 --- /dev/null +++ b/.licenses/npm/is-number.dep.yml @@ -0,0 +1,41 @@ +--- +name: is-number +version: 7.0.0 +type: npm +summary: Returns true if a number or string value is a finite number. Useful for regex + matches, parsing, user input, etc. +homepage: https://github.com/jonschlinkert/is-number +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014-present, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 15, 2018._ +notices: [] diff --git a/.licenses/npm/is-obj-1.0.1.dep.yml b/.licenses/npm/is-obj-1.0.1.dep.yml new file mode 100644 index 000000000..401ef9b33 --- /dev/null +++ b/.licenses/npm/is-obj-1.0.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: is-obj +version: 1.0.1 +type: npm +summary: Check if a value is an object +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-obj-2.0.0.dep.yml b/.licenses/npm/is-obj-2.0.0.dep.yml new file mode 100644 index 000000000..389cd0b7f --- /dev/null +++ b/.licenses/npm/is-obj-2.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: is-obj +version: 2.0.0 +type: npm +summary: Check if a value is an object +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-online.dep.yml b/.licenses/npm/is-online.dep.yml new file mode 100644 index 000000000..e16961c2d --- /dev/null +++ b/.licenses/npm/is-online.dep.yml @@ -0,0 +1,20 @@ +--- +name: is-online +version: 10.0.0 +type: npm +summary: Check if the internet connection is up +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-path-inside.dep.yml b/.licenses/npm/is-path-inside.dep.yml new file mode 100644 index 000000000..e6b20d50a --- /dev/null +++ b/.licenses/npm/is-path-inside.dep.yml @@ -0,0 +1,20 @@ +--- +name: is-path-inside +version: 3.0.3 +type: npm +summary: Check if a path is inside another path +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-plain-obj-1.1.0.dep.yml b/.licenses/npm/is-plain-obj-1.1.0.dep.yml new file mode 100644 index 000000000..916e7d03b --- /dev/null +++ b/.licenses/npm/is-plain-obj-1.1.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: is-plain-obj +version: 1.1.0 +type: npm +summary: Check if a value is a plain object +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-plain-obj-4.1.0.dep.yml b/.licenses/npm/is-plain-obj-4.1.0.dep.yml new file mode 100644 index 000000000..a46b2fc8c --- /dev/null +++ b/.licenses/npm/is-plain-obj-4.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: is-plain-obj +version: 4.1.0 +type: npm +summary: Check if a value is a plain object +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-potential-custom-element-name.dep.yml b/.licenses/npm/is-potential-custom-element-name.dep.yml new file mode 100644 index 000000000..64b2c9cda --- /dev/null +++ b/.licenses/npm/is-potential-custom-element-name.dep.yml @@ -0,0 +1,35 @@ +--- +name: is-potential-custom-element-name +version: 1.0.1 +type: npm +summary: Check whether a given string matches the `PotentialCustomElementName` production + as defined in the HTML Standard. +homepage: https://github.com/mathiasbynens/is-potential-custom-element-name +license: mit +licenses: +- sources: LICENSE-MIT.txt + text: | + Copyright Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: _is-potential-custom-element-name_ is available under the [MIT](https://mths.be/mit) + license. +notices: [] diff --git a/.licenses/npm/is-regex.dep.yml b/.licenses/npm/is-regex.dep.yml new file mode 100644 index 000000000..0fdb5746e --- /dev/null +++ b/.licenses/npm/is-regex.dep.yml @@ -0,0 +1,31 @@ +--- +name: is-regex +version: 1.2.1 +type: npm +summary: Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag +homepage: https://github.com/inspect-js/is-regex +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-regexp.dep.yml b/.licenses/npm/is-regexp.dep.yml new file mode 100644 index 000000000..5b8e2ede7 --- /dev/null +++ b/.licenses/npm/is-regexp.dep.yml @@ -0,0 +1,11 @@ +--- +name: is-regexp +version: 1.0.0 +type: npm +summary: Check whether a variable is a regular expression +homepage: +license: mit +licenses: +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-set.dep.yml b/.licenses/npm/is-set.dep.yml new file mode 100644 index 000000000..df9629976 --- /dev/null +++ b/.licenses/npm/is-set.dep.yml @@ -0,0 +1,33 @@ +--- +name: is-set +version: 2.0.3 +type: npm +summary: Is this value a JS Set? This module works cross-realm/iframe, and despite + ES6 @@toStringTag. +homepage: https://github.com/inspect-js/is-set#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-shared-array-buffer.dep.yml b/.licenses/npm/is-shared-array-buffer.dep.yml new file mode 100644 index 000000000..38ac09d58 --- /dev/null +++ b/.licenses/npm/is-shared-array-buffer.dep.yml @@ -0,0 +1,32 @@ +--- +name: is-shared-array-buffer +version: 1.0.4 +type: npm +summary: Is this value a JS SharedArrayBuffer? +homepage: https://github.com/inspect-js/is-shared-array-buffer#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-stream-1.1.0.dep.yml b/.licenses/npm/is-stream-1.1.0.dep.yml new file mode 100644 index 000000000..781a4d796 --- /dev/null +++ b/.licenses/npm/is-stream-1.1.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: is-stream +version: 1.1.0 +type: npm +summary: Check if something is a Node.js stream +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/is-stream-2.0.1.dep.yml b/.licenses/npm/is-stream-2.0.1.dep.yml new file mode 100644 index 000000000..748b2ee5b --- /dev/null +++ b/.licenses/npm/is-stream-2.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: is-stream +version: 2.0.1 +type: npm +summary: Check if something is a Node.js stream +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-string.dep.yml b/.licenses/npm/is-string.dep.yml new file mode 100644 index 000000000..87bb6cd35 --- /dev/null +++ b/.licenses/npm/is-string.dep.yml @@ -0,0 +1,35 @@ +--- +name: is-string +version: 1.1.1 +type: npm +summary: Is this value a JS String object or primitive? This module works cross-realm/iframe, + and despite ES6 @@toStringTag. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/is-symbol.dep.yml b/.licenses/npm/is-symbol.dep.yml new file mode 100644 index 000000000..7a0e2ec13 --- /dev/null +++ b/.licenses/npm/is-symbol.dep.yml @@ -0,0 +1,34 @@ +--- +name: is-symbol +version: 1.1.1 +type: npm +summary: Determine if a value is an ES6 Symbol or not. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/is-typed-array.dep.yml b/.licenses/npm/is-typed-array.dep.yml new file mode 100644 index 000000000..dfcf16467 --- /dev/null +++ b/.licenses/npm/is-typed-array.dep.yml @@ -0,0 +1,35 @@ +--- +name: is-typed-array +version: 1.1.15 +type: npm +summary: Is this value a JS Typed Array? This module works cross-realm/iframe, does + not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/is-unicode-supported.dep.yml b/.licenses/npm/is-unicode-supported.dep.yml new file mode 100644 index 000000000..34233efbd --- /dev/null +++ b/.licenses/npm/is-unicode-supported.dep.yml @@ -0,0 +1,20 @@ +--- +name: is-unicode-supported +version: 0.1.0 +type: npm +summary: Detect whether the terminal supports Unicode +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-weakmap.dep.yml b/.licenses/npm/is-weakmap.dep.yml new file mode 100644 index 000000000..611cbdad4 --- /dev/null +++ b/.licenses/npm/is-weakmap.dep.yml @@ -0,0 +1,33 @@ +--- +name: is-weakmap +version: 2.0.2 +type: npm +summary: Is this value a JS WeakMap? This module works cross-realm/iframe, and despite + ES6 @@toStringTag. +homepage: https://github.com/inspect-js/is-weakmap#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-weakset.dep.yml b/.licenses/npm/is-weakset.dep.yml new file mode 100644 index 000000000..94642d4e4 --- /dev/null +++ b/.licenses/npm/is-weakset.dep.yml @@ -0,0 +1,33 @@ +--- +name: is-weakset +version: 2.0.4 +type: npm +summary: Is this value a JS WeakSet? This module works cross-realm/iframe, and despite + ES6 @@toStringTag. +homepage: https://github.com/inspect-js/is-weakset#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/is-wsl.dep.yml b/.licenses/npm/is-wsl.dep.yml new file mode 100644 index 000000000..ee7b25d7c --- /dev/null +++ b/.licenses/npm/is-wsl.dep.yml @@ -0,0 +1,21 @@ +--- +name: is-wsl +version: 2.2.0 +type: npm +summary: Check if the process is running inside Windows Subsystem for Linux (Bash + on Windows) +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/isarray-1.0.0.dep.yml b/.licenses/npm/isarray-1.0.0.dep.yml new file mode 100644 index 000000000..1b8721585 --- /dev/null +++ b/.licenses/npm/isarray-1.0.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: isarray +version: 1.0.0 +type: npm +summary: Array#isArray for older browsers +homepage: https://github.com/juliangruber/isarray +license: mit +licenses: +- sources: README.md + text: |- + (MIT) + + Copyright (c) 2013 Julian Gruber <julian@juliangruber.com> + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/isarray-2.0.5.dep.yml b/.licenses/npm/isarray-2.0.5.dep.yml new file mode 100644 index 000000000..3ba040e77 --- /dev/null +++ b/.licenses/npm/isarray-2.0.5.dep.yml @@ -0,0 +1,32 @@ +--- +name: isarray +version: 2.0.5 +type: npm +summary: Array#isArray for older browsers +homepage: https://github.com/juliangruber/isarray +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2013 Julian Gruber + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/isexe.dep.yml b/.licenses/npm/isexe.dep.yml new file mode 100644 index 000000000..a69a541e0 --- /dev/null +++ b/.licenses/npm/isexe.dep.yml @@ -0,0 +1,26 @@ +--- +name: isexe +version: 2.0.0 +type: npm +summary: Minimal module to check if a file is executable. +homepage: https://github.com/isaacs/isexe#readme +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/jackspeak.dep.yml b/.licenses/npm/jackspeak.dep.yml new file mode 100644 index 000000000..4f378f6dc --- /dev/null +++ b/.licenses/npm/jackspeak.dep.yml @@ -0,0 +1,66 @@ +--- +name: jackspeak +version: 3.4.3 +type: npm +summary: A very strict and proper argument parser. +homepage: +license: blueoak-1.0.0 +licenses: +- sources: LICENSE.md + text: | + # Blue Oak Model License + + Version 1.0.0 + + ## Purpose + + This license gives everyone as much permission to work with + this software as possible, while protecting contributors + from liability. + + ## Acceptance + + In order to receive this license, you must agree to its + rules. The rules of this license are both obligations + under that agreement and conditions to your license. + You must not do anything with this software that triggers + a rule that you cannot or will not follow. + + ## Copyright + + Each contributor licenses you to do everything with this + software that would otherwise infringe that contributor's + copyright in it. + + ## Notices + + You must ensure that everyone who gets a copy of + any part of this software from you, with or without + changes, also gets the text of this license or a link to + . + + ## Excuse + + If anyone notifies you in writing that you have not + complied with [Notices](#notices), you can keep your + license by taking all practical steps to comply within 30 + days after the notice. If you do not do so, your license + ends immediately. + + ## Patent + + Each contributor licenses you to do everything with this + software that would otherwise infringe any patent claims + they can license or become able to license. + + ## Reliability + + No contributor can revoke this license. + + ## No Liability + + **_As far as the law allows, this software comes as is, + without any warranty or condition, and no contributor + will be liable to anyone for any damages related to this + software or this license, under any kind of legal claim._** +notices: [] diff --git a/.licenses/npm/js-cookie.dep.yml b/.licenses/npm/js-cookie.dep.yml new file mode 100644 index 000000000..87400ca0c --- /dev/null +++ b/.licenses/npm/js-cookie.dep.yml @@ -0,0 +1,32 @@ +--- +name: js-cookie +version: 2.2.1 +type: npm +summary: A simple, lightweight JavaScript API for handling cookies +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Copyright 2018 Klaus Hartl, Fagner Brack, GitHub Contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/js-tokens.dep.yml b/.licenses/npm/js-tokens.dep.yml new file mode 100644 index 000000000..b83307420 --- /dev/null +++ b/.licenses/npm/js-tokens.dep.yml @@ -0,0 +1,34 @@ +--- +name: js-tokens +version: 4.0.0 +type: npm +summary: A regex that tokenizes JavaScript. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE)." +notices: [] diff --git a/.licenses/npm/js-yaml-3.14.1.dep.yml b/.licenses/npm/js-yaml-3.14.1.dep.yml new file mode 100644 index 000000000..8fa850b94 --- /dev/null +++ b/.licenses/npm/js-yaml-3.14.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: js-yaml +version: 3.14.1 +type: npm +summary: YAML 1.2 parser and serializer +homepage: https://github.com/nodeca/js-yaml +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (C) 2011-2015 by Vitaly Puzrin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/js-yaml-4.1.0.dep.yml b/.licenses/npm/js-yaml-4.1.0.dep.yml new file mode 100644 index 000000000..d45a3c91b --- /dev/null +++ b/.licenses/npm/js-yaml-4.1.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: js-yaml +version: 4.1.0 +type: npm +summary: YAML 1.2 parser and serializer +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (C) 2011-2015 by Vitaly Puzrin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/jsbn.dep.yml b/.licenses/npm/jsbn.dep.yml new file mode 100644 index 000000000..ada87f6f6 --- /dev/null +++ b/.licenses/npm/jsbn.dep.yml @@ -0,0 +1,32 @@ +--- +name: jsbn +version: 1.1.0 +type: npm +summary: The jsbn library is a fast, portable implementation of large-number math + in pure JavaScript, enabling public-key crypto and other applications on desktop + and mobile browsers. +homepage: +license: other +licenses: +- sources: LICENSE + text: "Licensing\n---------\n\nThis software is covered under the following copyright:\n\n/*\n + * Copyright (c) 2003-2005 Tom Wu\n * All Rights Reserved.\n *\n * Permission + is hereby granted, free of charge, to any person obtaining\n * a copy of this + software and associated documentation files (the\n * \"Software\"), to deal in + the Software without restriction, including\n * without limitation the rights + to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell + copies of the Software, and to\n * permit persons to whom the Software is furnished + to do so, subject to\n * the following conditions:\n *\n * The above copyright + notice and this permission notice shall be\n * included in all copies or substantial + portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS-IS\" AND WITHOUT + WARRANTY OF ANY KIND, \n * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, + ANY \n * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \n + *\n * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,\n * INDIRECT + OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER\n * RESULTING + FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF\n * THE POSSIBILITY + OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT\n * OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n *\n * In addition, the following + condition applies:\n *\n * All redistributions must retain an intact copy of this + copyright notice\n * and disclaimer.\n */\n\nAddress all questions regarding this + license to:\n\n Tom Wu\n tjw@cs.Stanford.EDU\n" +notices: [] diff --git a/.licenses/npm/jschardet.dep.yml b/.licenses/npm/jschardet.dep.yml new file mode 100644 index 000000000..f92d7cf31 --- /dev/null +++ b/.licenses/npm/jschardet.dep.yml @@ -0,0 +1,517 @@ +--- +name: jschardet +version: 2.3.0 +type: npm +summary: Character encoding auto-detection in JavaScript (port of python's chardet) +homepage: +license: other +licenses: +- sources: LICENSE + text: |2 + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + (This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.) + + Preamble + + The licenses for most software are designed to take away your + freedom to share and change it. By contrast, the GNU General Public + Licenses are intended to guarantee your freedom to share and change + free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some + specially designated software packages--typically libraries--of the + Free Software Foundation and other authors who decide to use it. You + can use it too, but we suggest you first think carefully about whether + this license or the ordinary General Public License is the better + strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, + not price. Our General Public Licenses are designed to make sure that + you have the freedom to distribute copies of free software (and charge + for this service if you wish); that you receive source code or can get + it if you want it; that you can change the software and use pieces of + it in new free programs; and that you are informed that you can do + these things. + + To protect your rights, we need to make restrictions that forbid + distributors to deny you these rights or to ask you to surrender these + rights. These restrictions translate to certain responsibilities for + you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis + or for a fee, you must give the recipients all the rights that we gave + you. You must make sure that they, too, receive or can get the source + code. If you link other code with the library, you must provide + complete object files to the recipients, so that they can relink them + with the library after making changes to the library and recompiling + it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the + library, and (2) we offer you this license, which gives you legal + permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that + there is no warranty for the free library. Also, if the library is + modified by someone else and passed on, the recipients should know + that what they have is not the original version, so that the original + author's reputation will not be affected by problems that might be + introduced by others. + + Finally, software patents pose a constant threat to the existence of + any free program. We wish to make sure that a company cannot + effectively restrict the users of a free program by obtaining a + restrictive license from a patent holder. Therefore, we insist that + any patent license obtained for a version of the library must be + consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the + ordinary GNU General Public License. This license, the GNU Lesser + General Public License, applies to certain designated libraries, and + is quite different from the ordinary General Public License. We use + this license for certain libraries in order to permit linking those + libraries into non-free programs. + + When a program is linked with a library, whether statically or using + a shared library, the combination of the two is legally speaking a + combined work, a derivative of the original library. The ordinary + General Public License therefore permits such linking only if the + entire combination fits its criteria of freedom. The Lesser General + Public License permits more lax criteria for linking other code with + the library. + + We call this license the "Lesser" General Public License because it + does Less to protect the user's freedom than the ordinary General + Public License. It also provides other free software developers Less + of an advantage over competing non-free programs. These disadvantages + are the reason we use the ordinary General Public License for many + libraries. However, the Lesser license provides advantages in certain + special circumstances. + + For example, on rare occasions, there may be a special need to + encourage the widest possible use of a certain library, so that it becomes + a de-facto standard. To achieve this, non-free programs must be + allowed to use the library. A more frequent case is that a free + library does the same job as widely used non-free libraries. In this + case, there is little to gain by limiting the free library to free + software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free + programs enables a greater number of people to use a large body of + free software. For example, permission to use the GNU C Library in + non-free programs enables many more people to use the whole GNU + operating system, as well as its variant, the GNU/Linux operating + system. + + Although the Lesser General Public License is Less protective of the + users' freedom, it does ensure that the user of a program that is + linked with the Library has the freedom and the wherewithal to run + that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and + modification follow. Pay close attention to the difference between a + "work based on the library" and a "work that uses the library". The + former contains code derived from the library, whereas the latter must + be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other + program which contains a notice placed by the copyright holder or + other authorized party saying it may be distributed under the terms of + this Lesser General Public License (also called "this License"). + Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data + prepared so as to be conveniently linked with application programs + (which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work + which has been distributed under these terms. A "work based on the + Library" means either the Library or any derivative work under + copyright law: that is to say, a work containing the Library or a + portion of it, either verbatim or with modifications and/or translated + straightforwardly into another language. (Hereinafter, translation is + included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for + making modifications to it. For a library, complete source code means + all the source code for all modules it contains, plus any associated + interface definition files, plus the scripts used to control compilation + and installation of the library. + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of + running a program using the Library is not restricted, and output from + such a program is covered only if its contents constitute a work based + on the Library (independent of the use of the Library in a tool for + writing it). Whether that is true depends on what the Library does + and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's + complete source code as you receive it, in any medium, provided that + you conspicuously and appropriately publish on each copy an + appropriate copyright notice and disclaimer of warranty; keep intact + all the notices that refer to this License and to the absence of any + warranty; and distribute a copy of this License along with the + Library. + + You may charge a fee for the physical act of transferring a copy, + and you may at your option offer warranty protection in exchange for a + fee. + + 2. You may modify your copy or copies of the Library or any portion + of it, thus forming a work based on the Library, and copy and + distribute such modifications or work under the terms of Section 1 + above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Library, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Library, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Library. + + In addition, mere aggregation of another work not based on the Library + with the Library (or with a work based on the Library) on a volume of + a storage or distribution medium does not bring the other work under + the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public + License instead of this License to a given copy of the Library. To do + this, you must alter all the notices that refer to this License, so + that they refer to the ordinary GNU General Public License, version 2, + instead of to this License. (If a newer version than version 2 of the + ordinary GNU General Public License has appeared, then you can specify + that version instead if you wish.) Do not make any other change in + these notices. + + Once this change is made in a given copy, it is irreversible for + that copy, so the ordinary GNU General Public License applies to all + subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of + the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or + derivative of it, under Section 2) in object code or executable form + under the terms of Sections 1 and 2 above provided that you accompany + it with the complete corresponding machine-readable source code, which + must be distributed under the terms of Sections 1 and 2 above on a + medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy + from a designated place, then offering equivalent access to copy the + source code from the same place satisfies the requirement to + distribute the source code, even though third parties are not + compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the + Library, but is designed to work with the Library by being compiled or + linked with it, is called a "work that uses the Library". Such a + work, in isolation, is not a derivative work of the Library, and + therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library + creates an executable that is a derivative of the Library (because it + contains portions of the Library), rather than a "work that uses the + library". The executable is therefore covered by this License. + Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file + that is part of the Library, the object code for the work may be a + derivative work of the Library even though the source code is not. + Whether this is true is especially significant if the work can be + linked without the Library, or if the work is itself a library. The + threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data + structure layouts and accessors, and small macros and small inline + functions (ten lines or less in length), then the use of the object + file is unrestricted, regardless of whether it is legally a derivative + work. (Executables containing this object code plus portions of the + Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may + distribute the object code for the work under the terms of Section 6. + Any executables containing that work also fall under Section 6, + whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or + link a "work that uses the Library" with the Library to produce a + work containing portions of the Library, and distribute that work + under terms of your choice, provided that the terms permit + modification of the work for the customer's own use and reverse + engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the + Library is used in it and that the Library and its use are covered by + this License. You must supply a copy of this License. If the work + during execution displays copyright notices, you must include the + copyright notice for the Library among them, as well as a reference + directing the user to the copy of this License. Also, you must do one + of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the + Library" must include any data and utility programs needed for + reproducing the executable from it. However, as a special exception, + the materials to be distributed need not include anything that is + normally distributed (in either source or binary form) with the major + components (compiler, kernel, and so on) of the operating system on + which the executable runs, unless that component itself accompanies + the executable. + + It may happen that this requirement contradicts the license + restrictions of other proprietary libraries that do not normally + accompany the operating system. Such a contradiction means you cannot + use both them and the Library together in an executable that you + distribute. + + 7. You may place library facilities that are a work based on the + Library side-by-side in a single library together with other library + facilities not covered by this License, and distribute such a combined + library, provided that the separate distribution of the work based on + the Library and of the other library facilities is otherwise + permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute + the Library except as expressly provided under this License. Any + attempt otherwise to copy, modify, sublicense, link with, or + distribute the Library is void, and will automatically terminate your + rights under this License. However, parties who have received copies, + or rights, from you under this License will not have their licenses + terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Library or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Library (or any work based on the + Library), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying + the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the + Library), the recipient automatically receives a license from the + original licensor to copy, distribute, link with or modify the Library + subject to these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties with + this License. + + 11. If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Library at all. For example, if a patent + license would not permit royalty-free redistribution of the Library by + all those who receive copies directly or indirectly through you, then + the only way you could satisfy both it and this License would be to + refrain entirely from distribution of the Library. + + If any portion of this section is held invalid or unenforceable under any + particular circumstance, the balance of the section is intended to apply, + and the section as a whole is intended to apply in other circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system which is + implemented by public license practices. Many people have made + generous contributions to the wide range of software distributed + through that system in reliance on consistent application of that + system; it is up to the author/donor to decide if he or she is willing + to distribute software through any other system and a licensee cannot + impose that choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Library under this License may add + an explicit geographical distribution limitation excluding those countries, + so that distribution is permitted only in or among countries not thus + excluded. In such case, this License incorporates the limitation as if + written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new + versions of the Lesser General Public License from time to time. + Such new versions will be similar in spirit to the present version, + but may differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Library + specifies a version number of this License which applies to it and + "any later version", you have the option of following the terms and + conditions either of that version or of any later version published by + the Free Software Foundation. If the Library does not specify a + license version number, you may choose any version ever published by + the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free + programs whose distribution conditions are incompatible with these, + write to the author to ask for permission. For software which is + copyrighted by the Free Software Foundation, write to the Free + Software Foundation; we sometimes make exceptions for this. Our + decision will be guided by the two goals of preserving the free status + of all derivatives of our free software and of promoting the sharing + and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO + WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. + EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR + OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE + LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN + WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU + FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE + LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A + FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF + SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH + DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest + possible use to the public, we recommend making it free software that + everyone can redistribute and change. You can do so by permitting + redistribution under these terms (or, alternatively, under the terms of the + ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is + safest to attach them to the start of each source file to most effectively + convey the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + USA + + Also add information on how to contact you by electronic and paper mail. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a "copyright disclaimer" for the library, if + necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random + Hacker. + + {signature of Ty Coon}, 1 April 1990 + Ty Coon, President of Vice + + That's all there is to it! +- sources: README.md + text: LGPL +notices: [] diff --git a/.licenses/npm/jsdom.dep.yml b/.licenses/npm/jsdom.dep.yml new file mode 100644 index 000000000..111188b3d --- /dev/null +++ b/.licenses/npm/jsdom.dep.yml @@ -0,0 +1,33 @@ +--- +name: jsdom +version: 21.1.2 +type: npm +summary: A JavaScript implementation of many web standards +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2010 Elijah Insua + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/jsesc.dep.yml b/.licenses/npm/jsesc.dep.yml new file mode 100644 index 000000000..81f208678 --- /dev/null +++ b/.licenses/npm/jsesc.dep.yml @@ -0,0 +1,34 @@ +--- +name: jsesc +version: 3.1.0 +type: npm +summary: Given some data, jsesc returns the shortest possible stringified & ASCII-safe + representation of that data. +homepage: https://mths.be/jsesc +license: mit +licenses: +- sources: LICENSE-MIT.txt + text: | + Copyright Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: This library is available under the [MIT](https://mths.be/mit) license. +notices: [] diff --git a/.licenses/npm/json-buffer.dep.yml b/.licenses/npm/json-buffer.dep.yml new file mode 100644 index 000000000..201f1de54 --- /dev/null +++ b/.licenses/npm/json-buffer.dep.yml @@ -0,0 +1,26 @@ +--- +name: json-buffer +version: 3.0.1 +type: npm +summary: JSON parse & stringify that supports binary via bops & base64 +homepage: https://github.com/dominictarr/json-buffer +license: mit +licenses: +- sources: LICENSE + text: "Copyright (c) 2013 Dominic Tarr\n\nPermission is hereby granted, free of + charge, \nto any person obtaining a copy of this software and \nassociated documentation + files (the \"Software\"), to \ndeal in the Software without restriction, including + \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, + sublicense, and/or sell \ncopies of the Software, and to permit persons to whom + \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe + above copyright notice and this permission notice \nshall be included in all copies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE.\n" +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/json-parse-even-better-errors.dep.yml b/.licenses/npm/json-parse-even-better-errors.dep.yml new file mode 100644 index 000000000..699d56744 --- /dev/null +++ b/.licenses/npm/json-parse-even-better-errors.dep.yml @@ -0,0 +1,36 @@ +--- +name: json-parse-even-better-errors +version: 2.3.1 +type: npm +summary: JSON.parse with context information on error +homepage: +license: other +licenses: +- sources: LICENSE.md + text: | + Copyright 2017 Kat Marchán + Copyright npm, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + + --- + + This library is a fork of 'better-json-errors' by Kat Marchán, extended and + distributed under the terms of the MIT license above. +notices: [] diff --git a/.licenses/npm/json-schema-traverse-0.4.1.dep.yml b/.licenses/npm/json-schema-traverse-0.4.1.dep.yml new file mode 100644 index 000000000..b96b3cde9 --- /dev/null +++ b/.licenses/npm/json-schema-traverse-0.4.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: json-schema-traverse +version: 0.4.1 +type: npm +summary: Traverse JSON Schema passing each schema object to callback +homepage: https://github.com/epoberezkin/json-schema-traverse#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017 Evgeny Poberezkin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/epoberezkin/json-schema-traverse/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/json-schema-traverse-1.0.0.dep.yml b/.licenses/npm/json-schema-traverse-1.0.0.dep.yml new file mode 100644 index 000000000..70c571b4f --- /dev/null +++ b/.licenses/npm/json-schema-traverse-1.0.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: json-schema-traverse +version: 1.0.0 +type: npm +summary: Traverse JSON Schema passing each schema object to callback +homepage: https://github.com/epoberezkin/json-schema-traverse#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017 Evgeny Poberezkin + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/epoberezkin/json-schema-traverse/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/json-schema-typed.dep.yml b/.licenses/npm/json-schema-typed.dep.yml new file mode 100644 index 000000000..407caa7dd --- /dev/null +++ b/.licenses/npm/json-schema-typed.dep.yml @@ -0,0 +1,41 @@ +--- +name: json-schema-typed +version: 7.0.3 +type: npm +summary: JSONSchema TypeScript definitions. +homepage: https://github.com/typeslick/json-schema-typed +license: other +licenses: +- sources: LICENSE + text: |+ + BSD-2-Clause License + + Copyright (c) 2018 IETF Trust, Austin Wright, Henry Andrews, Geraint Luff, + and Cloudflare, Inc. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +- sources: README.md + text: "[BSD-2-Clause](https://github.com/typeschema/json-schema-typed/blob/master/LICENSE)" +notices: [] +... diff --git a/.licenses/npm/json-stringify-safe.dep.yml b/.licenses/npm/json-stringify-safe.dep.yml new file mode 100644 index 000000000..48f59a37a --- /dev/null +++ b/.licenses/npm/json-stringify-safe.dep.yml @@ -0,0 +1,26 @@ +--- +name: json-stringify-safe +version: 5.0.1 +type: npm +summary: Like JSON.stringify, but doesn't blow up on circular refs. +homepage: https://github.com/isaacs/json-stringify-safe +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/jsonc-parser.dep.yml b/.licenses/npm/jsonc-parser.dep.yml new file mode 100644 index 000000000..7fd2bc210 --- /dev/null +++ b/.licenses/npm/jsonc-parser.dep.yml @@ -0,0 +1,37 @@ +--- +name: jsonc-parser +version: 2.3.1 +type: npm +summary: Scanner and parser for JSON with comments. +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) Microsoft + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + (MIT License) + + Copyright 2018, Microsoft +notices: [] diff --git a/.licenses/npm/jsonfile-4.0.0.dep.yml b/.licenses/npm/jsonfile-4.0.0.dep.yml new file mode 100644 index 000000000..6edd7e9f9 --- /dev/null +++ b/.licenses/npm/jsonfile-4.0.0.dep.yml @@ -0,0 +1,31 @@ +--- +name: jsonfile +version: 4.0.0 +type: npm +summary: Easily read/write JSON files. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012-2015, JP Richardson + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files + (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS + OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + (MIT License) + + Copyright 2012-2016, JP Richardson +notices: [] diff --git a/.licenses/npm/jsonfile-6.1.0.dep.yml b/.licenses/npm/jsonfile-6.1.0.dep.yml new file mode 100644 index 000000000..1f11f38b8 --- /dev/null +++ b/.licenses/npm/jsonfile-6.1.0.dep.yml @@ -0,0 +1,31 @@ +--- +name: jsonfile +version: 6.1.0 +type: npm +summary: Easily read/write JSON files. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012-2015, JP Richardson + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files + (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS + OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + (MIT License) + + Copyright 2012-2016, JP Richardson +notices: [] diff --git a/.licenses/npm/just-diff.dep.yml b/.licenses/npm/just-diff.dep.yml new file mode 100644 index 000000000..0e82f2675 --- /dev/null +++ b/.licenses/npm/just-diff.dep.yml @@ -0,0 +1,33 @@ +--- +name: just-diff +version: 5.2.0 +type: npm +summary: Return an object representing the diffs between two objects. Supports jsonPatch + protocol +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 angus croll + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/jwt-decode.dep.yml b/.licenses/npm/jwt-decode.dep.yml new file mode 100644 index 000000000..708b1fa3c --- /dev/null +++ b/.licenses/npm/jwt-decode.dep.yml @@ -0,0 +1,30 @@ +--- +name: jwt-decode +version: 3.1.2 +type: npm +summary: Decode JWT tokens, mostly useful for browser applications. +homepage: https://github.com/auth0/jwt-decode#readme +license: mit +licenses: +- sources: LICENSE + text: "The MIT License (MIT)\n \nCopyright (c) 2015 Auth0, Inc. + (http://auth0.com)\n \nPermission is hereby granted, free of charge, to any person + obtaining a copy\nof this software and associated documentation files (the \"Software\"), + to deal\nin the Software without restriction, including without limitation the + rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies + of the Software, and to permit persons to whom the Software is\nfurnished to do + so, subject to the following conditions:\n \nThe above copyright notice and this + permission notice shall be included in all\ncopies or substantial portions of + the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY + KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" +- sources: README.md + text: |- + This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info. + + [browserify]: http://browserify.org + [webpack]: http://webpack.github.io/ +notices: [] diff --git a/.licenses/npm/keytar.dep.yml b/.licenses/npm/keytar.dep.yml new file mode 100644 index 000000000..a9a943514 --- /dev/null +++ b/.licenses/npm/keytar.dep.yml @@ -0,0 +1,31 @@ +--- +name: keytar +version: 7.2.0 +type: npm +summary: Bindings to native Mac/Linux/Windows password APIs +homepage: http://atom.github.io/node-keytar +license: mit +licenses: +- sources: LICENSE.md + text: | + Copyright (c) 2013 GitHub Inc. + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/keyv.dep.yml b/.licenses/npm/keyv.dep.yml new file mode 100644 index 000000000..313a66048 --- /dev/null +++ b/.licenses/npm/keyv.dep.yml @@ -0,0 +1,11 @@ +--- +name: keyv +version: 4.5.4 +type: npm +summary: Simple key-value storage with support for multiple backends +homepage: https://github.com/jaredwray/keyv +license: mit +licenses: +- sources: README.md + text: MIT © Jared Wray +notices: [] diff --git a/.licenses/npm/kleur.dep.yml b/.licenses/npm/kleur.dep.yml new file mode 100644 index 000000000..4185cc0e0 --- /dev/null +++ b/.licenses/npm/kleur.dep.yml @@ -0,0 +1,34 @@ +--- +name: kleur +version: 4.1.5 +type: npm +summary: The fastest Node.js library for formatting terminal text with ANSI colors~! +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Luke Edwards (lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/lazy-val.dep.yml b/.licenses/npm/lazy-val.dep.yml new file mode 100644 index 000000000..d0e901ad8 --- /dev/null +++ b/.licenses/npm/lazy-val.dep.yml @@ -0,0 +1,30 @@ +--- +name: lazy-val +version: 1.0.5 +type: npm +summary: +homepage: https://github.com/develar/lazy-val +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/line-height.dep.yml b/.licenses/npm/line-height.dep.yml new file mode 100644 index 000000000..a21d53491 --- /dev/null +++ b/.licenses/npm/line-height.dep.yml @@ -0,0 +1,38 @@ +--- +name: line-height +version: 0.3.1 +type: npm +summary: Calculate line-height of an HTML element (IE6 compatible) +homepage: https://github.com/twolfson/line-height +license: mit +licenses: +- sources: LICENSE-MIT + text: | + Copyright (c) 2013 Todd Wolfson + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2013 Todd Wolfson + + Licensed under the MIT license. +notices: [] diff --git a/.licenses/npm/lines-and-columns.dep.yml b/.licenses/npm/lines-and-columns.dep.yml new file mode 100644 index 000000000..649be3665 --- /dev/null +++ b/.licenses/npm/lines-and-columns.dep.yml @@ -0,0 +1,34 @@ +--- +name: lines-and-columns +version: 1.2.4 +type: npm +summary: Maps lines and columns to character offsets and back. +homepage: https://github.com/eventualbuddha/lines-and-columns#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Brian Donovan + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/linkify-it.dep.yml b/.licenses/npm/linkify-it.dep.yml new file mode 100644 index 000000000..8c48d7a0f --- /dev/null +++ b/.licenses/npm/linkify-it.dep.yml @@ -0,0 +1,35 @@ +--- +name: linkify-it +version: 3.0.3 +type: npm +summary: Links recognition library with FULL unicode support +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015 Vitaly Puzrin. + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/markdown-it/linkify-it/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/lint-staged.dep.yml b/.licenses/npm/lint-staged.dep.yml new file mode 100644 index 000000000..9d83fe29a --- /dev/null +++ b/.licenses/npm/lint-staged.dep.yml @@ -0,0 +1,32 @@ +--- +name: lint-staged +version: 10.5.4 +type: npm +summary: Lint files staged by git +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Andrey Okonetchnikov + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/listenercount.dep.yml b/.licenses/npm/listenercount.dep.yml new file mode 100644 index 000000000..24ee5d7da --- /dev/null +++ b/.licenses/npm/listenercount.dep.yml @@ -0,0 +1,18 @@ +--- +name: listenercount +version: 1.0.1 +type: npm +summary: backwards compatible version of builtin events.listenercount +homepage: +license: isc +licenses: +- sources: LICENSE.md + text: |- + Copyright (c) MMXV jden + + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +- sources: README.md + text: ISC. (c) MMXVI jden . See LICENSE.md +notices: [] diff --git a/.licenses/npm/listr2.dep.yml b/.licenses/npm/listr2.dep.yml new file mode 100644 index 000000000..50e0e5884 --- /dev/null +++ b/.licenses/npm/listr2.dep.yml @@ -0,0 +1,33 @@ +--- +name: listr2 +version: 3.14.0 +type: npm +summary: Terminal task list reborn! Create beautiful CLI interfaces via easy and logical + to implement task lists that feel alive and interactive. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) Cenk Kilic (https://srcs.kilic.dev), Sam Verschueren (github.com/SamVerschueren) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/locate-path-3.0.0.dep.yml b/.licenses/npm/locate-path-3.0.0.dep.yml new file mode 100644 index 000000000..e92a176e2 --- /dev/null +++ b/.licenses/npm/locate-path-3.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: locate-path +version: 3.0.0 +type: npm +summary: Get the first path that exists on disk of multiple paths +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/locate-path-5.0.0.dep.yml b/.licenses/npm/locate-path-5.0.0.dep.yml new file mode 100644 index 000000000..bbadab5bb --- /dev/null +++ b/.licenses/npm/locate-path-5.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: locate-path +version: 5.0.0 +type: npm +summary: Get the first path that exists on disk of multiple paths +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/lodash.camelcase.dep.yml b/.licenses/npm/lodash.camelcase.dep.yml new file mode 100644 index 000000000..e3edd2be6 --- /dev/null +++ b/.licenses/npm/lodash.camelcase.dep.yml @@ -0,0 +1,58 @@ +--- +name: lodash.camelcase +version: 4.3.0 +type: npm +summary: The lodash method `_.camelCase` exported as a module. +homepage: https://lodash.com/ +license: other +licenses: +- sources: LICENSE + text: | + Copyright jQuery Foundation and other contributors + + Based on Underscore.js, copyright Jeremy Ashkenas, + DocumentCloud and Investigative Reporters & Editors + + This software consists of voluntary contributions made by many + individuals. For exact contribution history, see the revision history + available at https://github.com/lodash/lodash + + The following license applies to all parts of this software except as + documented below: + + ==== + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ==== + + Copyright and related rights for sample code are waived via CC0. Sample + code is defined as all source code displayed within the prose of the + documentation. + + CC0: http://creativecommons.org/publicdomain/zero/1.0/ + + ==== + + Files located in the node_modules and vendor directories are externally + maintained libraries used by this software which have their own + licenses; we recommend you read them, as their terms may differ from the + terms above. +notices: [] diff --git a/.licenses/npm/lodash.clonedeep.dep.yml b/.licenses/npm/lodash.clonedeep.dep.yml new file mode 100644 index 000000000..a1b0a157a --- /dev/null +++ b/.licenses/npm/lodash.clonedeep.dep.yml @@ -0,0 +1,58 @@ +--- +name: lodash.clonedeep +version: 4.5.0 +type: npm +summary: The lodash method `_.cloneDeep` exported as a module. +homepage: https://lodash.com/ +license: other +licenses: +- sources: LICENSE + text: | + Copyright jQuery Foundation and other contributors + + Based on Underscore.js, copyright Jeremy Ashkenas, + DocumentCloud and Investigative Reporters & Editors + + This software consists of voluntary contributions made by many + individuals. For exact contribution history, see the revision history + available at https://github.com/lodash/lodash + + The following license applies to all parts of this software except as + documented below: + + ==== + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ==== + + Copyright and related rights for sample code are waived via CC0. Sample + code is defined as all source code displayed within the prose of the + documentation. + + CC0: http://creativecommons.org/publicdomain/zero/1.0/ + + ==== + + Files located in the node_modules and vendor directories are externally + maintained libraries used by this software which have their own + licenses; we recommend you read them, as their terms may differ from the + terms above. +notices: [] diff --git a/.licenses/npm/lodash.debounce.dep.yml b/.licenses/npm/lodash.debounce.dep.yml new file mode 100644 index 000000000..768fe359a --- /dev/null +++ b/.licenses/npm/lodash.debounce.dep.yml @@ -0,0 +1,58 @@ +--- +name: lodash.debounce +version: 4.0.8 +type: npm +summary: The lodash method `_.debounce` exported as a module. +homepage: https://lodash.com/ +license: other +licenses: +- sources: LICENSE + text: | + Copyright jQuery Foundation and other contributors + + Based on Underscore.js, copyright Jeremy Ashkenas, + DocumentCloud and Investigative Reporters & Editors + + This software consists of voluntary contributions made by many + individuals. For exact contribution history, see the revision history + available at https://github.com/lodash/lodash + + The following license applies to all parts of this software except as + documented below: + + ==== + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ==== + + Copyright and related rights for sample code are waived via CC0. Sample + code is defined as all source code displayed within the prose of the + documentation. + + CC0: http://creativecommons.org/publicdomain/zero/1.0/ + + ==== + + Files located in the node_modules and vendor directories are externally + maintained libraries used by this software which have their own + licenses; we recommend you read them, as their terms may differ from the + terms above. +notices: [] diff --git a/.licenses/npm/lodash.dep.yml b/.licenses/npm/lodash.dep.yml new file mode 100644 index 000000000..fce2daa37 --- /dev/null +++ b/.licenses/npm/lodash.dep.yml @@ -0,0 +1,58 @@ +--- +name: lodash +version: 4.17.21 +type: npm +summary: Lodash modular utilities. +homepage: https://lodash.com/ +license: other +licenses: +- sources: LICENSE + text: | + Copyright OpenJS Foundation and other contributors + + Based on Underscore.js, copyright Jeremy Ashkenas, + DocumentCloud and Investigative Reporters & Editors + + This software consists of voluntary contributions made by many + individuals. For exact contribution history, see the revision history + available at https://github.com/lodash/lodash + + The following license applies to all parts of this software except as + documented below: + + ==== + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ==== + + Copyright and related rights for sample code are waived via CC0. Sample + code is defined as all source code displayed within the prose of the + documentation. + + CC0: http://creativecommons.org/publicdomain/zero/1.0/ + + ==== + + Files located in the node_modules and vendor directories are externally + maintained libraries used by this software which have their own + licenses; we recommend you read them, as their terms may differ from the + terms above. +notices: [] diff --git a/.licenses/npm/lodash.escaperegexp.dep.yml b/.licenses/npm/lodash.escaperegexp.dep.yml new file mode 100644 index 000000000..036dbc923 --- /dev/null +++ b/.licenses/npm/lodash.escaperegexp.dep.yml @@ -0,0 +1,58 @@ +--- +name: lodash.escaperegexp +version: 4.1.2 +type: npm +summary: The lodash method `_.escapeRegExp` exported as a module. +homepage: https://lodash.com/ +license: other +licenses: +- sources: LICENSE + text: | + Copyright jQuery Foundation and other contributors + + Based on Underscore.js, copyright Jeremy Ashkenas, + DocumentCloud and Investigative Reporters & Editors + + This software consists of voluntary contributions made by many + individuals. For exact contribution history, see the revision history + available at https://github.com/lodash/lodash + + The following license applies to all parts of this software except as + documented below: + + ==== + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ==== + + Copyright and related rights for sample code are waived via CC0. Sample + code is defined as all source code displayed within the prose of the + documentation. + + CC0: http://creativecommons.org/publicdomain/zero/1.0/ + + ==== + + Files located in the node_modules and vendor directories are externally + maintained libraries used by this software which have their own + licenses; we recommend you read them, as their terms may differ from the + terms above. +notices: [] diff --git a/.licenses/npm/lodash.isequal.dep.yml b/.licenses/npm/lodash.isequal.dep.yml new file mode 100644 index 000000000..9189ffce5 --- /dev/null +++ b/.licenses/npm/lodash.isequal.dep.yml @@ -0,0 +1,58 @@ +--- +name: lodash.isequal +version: 4.5.0 +type: npm +summary: The Lodash method `_.isEqual` exported as a module. +homepage: https://lodash.com/ +license: other +licenses: +- sources: LICENSE + text: | + Copyright JS Foundation and other contributors + + Based on Underscore.js, copyright Jeremy Ashkenas, + DocumentCloud and Investigative Reporters & Editors + + This software consists of voluntary contributions made by many + individuals. For exact contribution history, see the revision history + available at https://github.com/lodash/lodash + + The following license applies to all parts of this software except as + documented below: + + ==== + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ==== + + Copyright and related rights for sample code are waived via CC0. Sample + code is defined as all source code displayed within the prose of the + documentation. + + CC0: http://creativecommons.org/publicdomain/zero/1.0/ + + ==== + + Files located in the node_modules and vendor directories are externally + maintained libraries used by this software which have their own + licenses; we recommend you read them, as their terms may differ from the + terms above. +notices: [] diff --git a/.licenses/npm/lodash.throttle.dep.yml b/.licenses/npm/lodash.throttle.dep.yml new file mode 100644 index 000000000..afa397f95 --- /dev/null +++ b/.licenses/npm/lodash.throttle.dep.yml @@ -0,0 +1,58 @@ +--- +name: lodash.throttle +version: 4.1.1 +type: npm +summary: The lodash method `_.throttle` exported as a module. +homepage: https://lodash.com/ +license: other +licenses: +- sources: LICENSE + text: | + Copyright jQuery Foundation and other contributors + + Based on Underscore.js, copyright Jeremy Ashkenas, + DocumentCloud and Investigative Reporters & Editors + + This software consists of voluntary contributions made by many + individuals. For exact contribution history, see the revision history + available at https://github.com/lodash/lodash + + The following license applies to all parts of this software except as + documented below: + + ==== + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ==== + + Copyright and related rights for sample code are waived via CC0. Sample + code is defined as all source code displayed within the prose of the + documentation. + + CC0: http://creativecommons.org/publicdomain/zero/1.0/ + + ==== + + Files located in the node_modules and vendor directories are externally + maintained libraries used by this software which have their own + licenses; we recommend you read them, as their terms may differ from the + terms above. +notices: [] diff --git a/.licenses/npm/log-symbols.dep.yml b/.licenses/npm/log-symbols.dep.yml new file mode 100644 index 000000000..e5568cb59 --- /dev/null +++ b/.licenses/npm/log-symbols.dep.yml @@ -0,0 +1,20 @@ +--- +name: log-symbols +version: 4.1.0 +type: npm +summary: 'Colored symbols for various log levels. Example: `✔︎ Success`' +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/log-update.dep.yml b/.licenses/npm/log-update.dep.yml new file mode 100644 index 000000000..cf23f9771 --- /dev/null +++ b/.licenses/npm/log-update.dep.yml @@ -0,0 +1,21 @@ +--- +name: log-update +version: 4.0.0 +type: npm +summary: Log by overwriting the previous output in the terminal. Useful for rendering + progress bars, animations, etc. +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/long.dep.yml b/.licenses/npm/long.dep.yml new file mode 100644 index 000000000..58aa048b1 --- /dev/null +++ b/.licenses/npm/long.dep.yml @@ -0,0 +1,213 @@ +--- +name: long +version: 5.3.1 +type: npm +summary: A Long class for representing a 64-bit two's-complement integer value. +homepage: +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/loose-envify.dep.yml b/.licenses/npm/loose-envify.dep.yml new file mode 100644 index 000000000..4879bfb7a --- /dev/null +++ b/.licenses/npm/loose-envify.dep.yml @@ -0,0 +1,33 @@ +--- +name: loose-envify +version: 1.4.0 +type: npm +summary: Fast (and loose) selective `process.env` replacer using js-tokens instead + of an AST +homepage: https://github.com/zertosh/loose-envify +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Andres Suarez + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/lowercase-keys-2.0.0.dep.yml b/.licenses/npm/lowercase-keys-2.0.0.dep.yml new file mode 100644 index 000000000..e5f20d72c --- /dev/null +++ b/.licenses/npm/lowercase-keys-2.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: lowercase-keys +version: 2.0.0 +type: npm +summary: Lowercase the keys of an object +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/lowercase-keys-3.0.0.dep.yml b/.licenses/npm/lowercase-keys-3.0.0.dep.yml new file mode 100644 index 000000000..b668310c8 --- /dev/null +++ b/.licenses/npm/lowercase-keys-3.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: lowercase-keys +version: 3.0.0 +type: npm +summary: Lowercase the keys of an object +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/lru-cache-10.4.3.dep.yml b/.licenses/npm/lru-cache-10.4.3.dep.yml new file mode 100644 index 000000000..2f4c720fa --- /dev/null +++ b/.licenses/npm/lru-cache-10.4.3.dep.yml @@ -0,0 +1,26 @@ +--- +name: lru-cache +version: 10.4.3 +type: npm +summary: A cache object that deletes the least-recently-used items. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2010-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/lru-cache-4.1.5.dep.yml b/.licenses/npm/lru-cache-4.1.5.dep.yml new file mode 100644 index 000000000..4d8cf4f0a --- /dev/null +++ b/.licenses/npm/lru-cache-4.1.5.dep.yml @@ -0,0 +1,26 @@ +--- +name: lru-cache +version: 4.1.5 +type: npm +summary: A cache object that deletes the least-recently-used items. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/macaddress.dep.yml b/.licenses/npm/macaddress.dep.yml new file mode 100644 index 000000000..ed3f68e1c --- /dev/null +++ b/.licenses/npm/macaddress.dep.yml @@ -0,0 +1,32 @@ +--- +name: macaddress +version: 0.5.3 +type: npm +summary: Get the MAC addresses (hardware addresses) of the hosts network interfaces. +homepage: https://github.com/scravy/node-macaddress +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Julian Fleischer + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/make-dir-1.3.0.dep.yml b/.licenses/npm/make-dir-1.3.0.dep.yml new file mode 100644 index 000000000..c4da4005b --- /dev/null +++ b/.licenses/npm/make-dir-1.3.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: make-dir +version: 1.3.0 +type: npm +summary: Make a directory and its parents if needed - Think `mkdir -p` +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/make-dir-3.1.0.dep.yml b/.licenses/npm/make-dir-3.1.0.dep.yml new file mode 100644 index 000000000..dda35b034 --- /dev/null +++ b/.licenses/npm/make-dir-3.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: make-dir +version: 3.1.0 +type: npm +summary: Make a directory and its parents if needed - Think `mkdir -p` +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/map-stream.dep.yml b/.licenses/npm/map-stream.dep.yml new file mode 100644 index 000000000..14c5ba0cb --- /dev/null +++ b/.licenses/npm/map-stream.dep.yml @@ -0,0 +1,24 @@ +--- +name: map-stream +version: 0.1.0 +type: npm +summary: construct pipes of streams of events +homepage: http://github.com/dominictarr/map-stream +license: mit +licenses: +- sources: LICENCE + text: "Copyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of + charge, \nto any person obtaining a copy of this software and \nassociated documentation + files (the \"Software\"), to \ndeal in the Software without restriction, including + \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, + sublicense, and/or sell \ncopies of the Software, and to permit persons to whom + \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe + above copyright notice and this permission notice \nshall be included in all copies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE." +notices: [] diff --git a/.licenses/npm/markdown-it.dep.yml b/.licenses/npm/markdown-it.dep.yml new file mode 100644 index 000000000..2d888b14e --- /dev/null +++ b/.licenses/npm/markdown-it.dep.yml @@ -0,0 +1,33 @@ +--- +name: markdown-it +version: 12.3.2 +type: npm +summary: Markdown-it - modern pluggable markdown parser. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin. + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/matcher.dep.yml b/.licenses/npm/matcher.dep.yml new file mode 100644 index 000000000..e349ed913 --- /dev/null +++ b/.licenses/npm/matcher.dep.yml @@ -0,0 +1,20 @@ +--- +name: matcher +version: 3.0.0 +type: npm +summary: Simple wildcard matching +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/math-intrinsics.dep.yml b/.licenses/npm/math-intrinsics.dep.yml new file mode 100644 index 000000000..2f29af6f9 --- /dev/null +++ b/.licenses/npm/math-intrinsics.dep.yml @@ -0,0 +1,32 @@ +--- +name: math-intrinsics +version: 1.1.0 +type: npm +summary: ES Math-related intrinsics and helpers, robustly cached. +homepage: https://github.com/es-shims/math-intrinsics#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 ECMAScript Shims + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/mdast-util-definitions.dep.yml b/.licenses/npm/mdast-util-definitions.dep.yml new file mode 100644 index 000000000..3a8d5b607 --- /dev/null +++ b/.licenses/npm/mdast-util-definitions.dep.yml @@ -0,0 +1,98 @@ +--- +name: mdast-util-definitions +version: 5.1.2 +type: npm +summary: mdast utility to find definition nodes in a tree +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015-2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/mdast-util-definitions/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/mdast-util-definitions/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/mdast-util-definitions.svg + + [coverage]: https://codecov.io/github/syntax-tree/mdast-util-definitions + + [downloads-badge]: https://img.shields.io/npm/dm/mdast-util-definitions.svg + + [downloads]: https://www.npmjs.com/package/mdast-util-definitions + + [size-badge]: https://img.shields.io/bundlephobia/minzip/mdast-util-definitions.svg + + [size]: https://bundlephobia.com/result?p=mdast-util-definitions + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [license]: license + + [author]: https://wooorm.com + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [mdast]: https://github.com/syntax-tree/mdast + + [node]: https://github.com/syntax-tree/unist#node + + [definition]: https://github.com/syntax-tree/mdast#definition + + [xss]: https://en.wikipedia.org/wiki/Cross-site_scripting + + [hast]: https://github.com/syntax-tree/hast + + [api-definitions]: #definitionstree + + [api-getdefinition]: #getdefinition +notices: [] diff --git a/.licenses/npm/mdast-util-from-markdown.dep.yml b/.licenses/npm/mdast-util-from-markdown.dep.yml new file mode 100644 index 000000000..05dfe1fde --- /dev/null +++ b/.licenses/npm/mdast-util-from-markdown.dep.yml @@ -0,0 +1,144 @@ +--- +name: mdast-util-from-markdown +version: 1.3.1 +type: npm +summary: mdast utility to parse markdown +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2020 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/mdast-util-from-markdown/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/mdast-util-from-markdown/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/mdast-util-from-markdown.svg + + [coverage]: https://codecov.io/github/syntax-tree/mdast-util-from-markdown + + [downloads-badge]: https://img.shields.io/npm/dm/mdast-util-from-markdown.svg + + [downloads]: https://www.npmjs.com/package/mdast-util-from-markdown + + [size-badge]: https://img.shields.io/bundlephobia/minzip/mdast-util-from-markdown.svg + + [size]: https://bundlephobia.com/result?p=mdast-util-from-markdown + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esmsh]: https://esm.sh + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [typescript]: https://www.typescriptlang.org + + [mdast]: https://github.com/syntax-tree/mdast + + [node]: https://github.com/syntax-tree/mdast#nodes + + [mdast-util-gfm]: https://github.com/syntax-tree/mdast-util-gfm + + [mdast-util-mdx]: https://github.com/syntax-tree/mdast-util-mdx + + [mdast-util-frontmatter]: https://github.com/syntax-tree/mdast-util-frontmatter + + [mdast-util-math]: https://github.com/syntax-tree/mdast-util-math + + [mdast-util-directive]: https://github.com/syntax-tree/mdast-util-directive + + [root]: https://github.com/syntax-tree/mdast#root + + [character-encoding]: https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings + + [buffer]: https://nodejs.org/api/buffer.html + + [xss]: https://en.wikipedia.org/wiki/Cross-site_scripting + + [hast-util-sanitize]: https://github.com/syntax-tree/hast-util-sanitize + + [micromark]: https://github.com/micromark/micromark + + [micromark-extension]: https://github.com/micromark/micromark#optionsextensions + + [micromark-extend]: https://github.com/micromark/micromark#extensions + + [remark]: https://github.com/remarkjs/remark + + [remark-parse]: https://github.com/remarkjs/remark/tree/main/packages/remark-parse + + [development]: https://nodejs.org/api/packages.html#packages_resolving_user_conditions + + [api-frommarkdown]: #frommarkdownvalue-encoding-options + + [api-compilecontext]: #compilecontext + + [api-compiledata]: #compiledata + + [api-encoding]: #encoding + + [api-extension]: #extension + + [api-handle]: #handle + + [api-onentererror]: #onentererror + + [api-onexiterror]: #onexiterror + + [api-options]: #options + + [api-token]: #token + + [api-transform]: #transform + + [api-value]: #value +notices: [] diff --git a/.licenses/npm/mdast-util-to-hast.dep.yml b/.licenses/npm/mdast-util-to-hast.dep.yml new file mode 100644 index 000000000..a7fe535b7 --- /dev/null +++ b/.licenses/npm/mdast-util-to-hast.dep.yml @@ -0,0 +1,130 @@ +--- +name: mdast-util-to-hast +version: 12.3.0 +type: npm +summary: mdast utility to transform to hast +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/mdast-util-to-hast/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/mdast-util-to-hast/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/mdast-util-to-hast.svg + + [coverage]: https://codecov.io/github/syntax-tree/mdast-util-to-hast + + [downloads-badge]: https://img.shields.io/npm/dm/mdast-util-to-hast.svg + + [downloads]: https://www.npmjs.com/package/mdast-util-to-hast + + [size-badge]: https://img.shields.io/bundlephobia/minzip/mdast-util-to-hast.svg + + [size]: https://bundlephobia.com/result?p=mdast-util-to-hast + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [license]: license + + [author]: https://wooorm.com + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [mdast]: https://github.com/syntax-tree/mdast + + [mdast-node]: https://github.com/syntax-tree/mdast#nodes + + [mdast-html]: https://github.com/syntax-tree/mdast#html + + [mdast-util-gfm]: https://github.com/syntax-tree/mdast-util-gfm + + [hast]: https://github.com/syntax-tree/hast + + [hast-node]: https://github.com/syntax-tree/hast#nodes + + [properties]: https://github.com/syntax-tree/hast#properties + + [hast-util-table-cell-style]: https://github.com/mapbox/hast-util-table-cell-style + + [hast-util-to-mdast]: https://github.com/syntax-tree/hast-util-to-mdast + + [hast-util-to-html]: https://github.com/syntax-tree/hast-util-to-html + + [hast-util-raw]: https://github.com/syntax-tree/hast-util-raw + + [hast-util-sanitize]: https://github.com/syntax-tree/hast-util-sanitize + + [remark-rehype]: https://github.com/remarkjs/remark-rehype + + [clobber-example]: https://github.com/rehypejs/rehype-sanitize#example-headings-dom-clobbering + + [github-markdown-css]: https://github.com/sindresorhus/github-markdown-css + + [xss]: https://en.wikipedia.org/wiki/Cross-site_scripting + + [dfn-literal]: https://github.com/syntax-tree/hast#literal + + [api-default-handlers]: #defaulthandlers + + [api-to-hast]: #tohasttree-options + + [api-handler]: #handler + + [api-handlers]: #handlers + + [api-options]: #options + + [api-raw]: #raw + + [api-state]: #state +notices: [] diff --git a/.licenses/npm/mdast-util-to-string.dep.yml b/.licenses/npm/mdast-util-to-string.dep.yml new file mode 100644 index 000000000..cfed4638b --- /dev/null +++ b/.licenses/npm/mdast-util-to-string.dep.yml @@ -0,0 +1,102 @@ +--- +name: mdast-util-to-string +version: 3.2.0 +type: npm +summary: mdast utility to get the plain text content of a node +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/mdast-util-to-string/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/mdast-util-to-string/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/mdast-util-to-string.svg + + [coverage]: https://codecov.io/github/syntax-tree/mdast-util-to-string + + [downloads-badge]: https://img.shields.io/npm/dm/mdast-util-to-string.svg + + [downloads]: https://www.npmjs.com/package/mdast-util-to-string + + [size-badge]: https://img.shields.io/bundlephobia/minzip/mdast-util-to-string.svg + + [size]: https://bundlephobia.com/result?p=mdast-util-to-string + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [mdast]: https://github.com/syntax-tree/mdast + + [mdast-util-to-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown + + [hast]: https://github.com/syntax-tree/hast + + [hast-util-to-string]: https://github.com/rehypejs/rehype-minify/tree/main/packages/hast-util-to-string + + [hast-util-to-text]: https://github.com/syntax-tree/hast-util-to-text + + [node]: https://github.com/syntax-tree/mdast#nodes + + [xss]: https://en.wikipedia.org/wiki/Cross-site_scripting + + [api-tostring]: #tostringvalue-options + + [api-options]: #options +notices: [] diff --git a/.licenses/npm/mdurl.dep.yml b/.licenses/npm/mdurl.dep.yml new file mode 100644 index 000000000..2db3755d4 --- /dev/null +++ b/.licenses/npm/mdurl.dep.yml @@ -0,0 +1,58 @@ +--- +name: mdurl +version: 1.0.1 +type: npm +summary: URL utilities for markdown-it +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin. + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. + + -------------------------------------------------------------------------------- + + .parse() is based on Joyent's node.js `url` code: + + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/markdown-it/mdurl/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/media-typer.dep.yml b/.licenses/npm/media-typer.dep.yml new file mode 100644 index 000000000..716e0f2a2 --- /dev/null +++ b/.licenses/npm/media-typer.dep.yml @@ -0,0 +1,47 @@ +--- +name: media-typer +version: 0.3.0 +type: npm +summary: Simple RFC 6838 media type parser and formatter +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/media-typer.svg?style=flat + [npm-url]: https://npmjs.org/package/media-typer + [node-version-image]: https://img.shields.io/badge/node.js-%3E%3D_0.6-brightgreen.svg?style=flat + [node-version-url]: http://nodejs.org/download/ + [travis-image]: https://img.shields.io/travis/jshttp/media-typer.svg?style=flat + [travis-url]: https://travis-ci.org/jshttp/media-typer + [coveralls-image]: https://img.shields.io/coveralls/jshttp/media-typer.svg?style=flat + [coveralls-url]: https://coveralls.io/r/jshttp/media-typer + [downloads-image]: https://img.shields.io/npm/dm/media-typer.svg?style=flat + [downloads-url]: https://npmjs.org/package/media-typer +notices: [] diff --git a/.licenses/npm/memoize-one-5.2.1.dep.yml b/.licenses/npm/memoize-one-5.2.1.dep.yml new file mode 100644 index 000000000..b3bb4565a --- /dev/null +++ b/.licenses/npm/memoize-one-5.2.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: memoize-one +version: 5.2.1 +type: npm +summary: A memoization library which only remembers the latest invocation +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + MIT License + + Copyright (c) 2019 Alexander Reardon + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/memoize-one-6.0.0.dep.yml b/.licenses/npm/memoize-one-6.0.0.dep.yml new file mode 100644 index 000000000..5b3e84df0 --- /dev/null +++ b/.licenses/npm/memoize-one-6.0.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: memoize-one +version: 6.0.0 +type: npm +summary: A memoization library which only remembers the latest invocation +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + MIT License + + Copyright (c) 2019 Alexander Reardon + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/merge-descriptors.dep.yml b/.licenses/npm/merge-descriptors.dep.yml new file mode 100644 index 000000000..159726700 --- /dev/null +++ b/.licenses/npm/merge-descriptors.dep.yml @@ -0,0 +1,46 @@ +--- +name: merge-descriptors +version: 1.0.3 +type: npm +summary: Merge objects using descriptors +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2013 Jonathan Ong + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/merge-descriptors.svg + [npm-url]: https://npmjs.org/package/merge-descriptors + [travis-image]: https://img.shields.io/travis/component/merge-descriptors/master.svg + [travis-url]: https://travis-ci.org/component/merge-descriptors + [coveralls-image]: https://img.shields.io/coveralls/component/merge-descriptors/master.svg + [coveralls-url]: https://coveralls.io/r/component/merge-descriptors?branch=master + [downloads-image]: https://img.shields.io/npm/dm/merge-descriptors.svg + [downloads-url]: https://npmjs.org/package/merge-descriptors +notices: [] diff --git a/.licenses/npm/merge-stream.dep.yml b/.licenses/npm/merge-stream.dep.yml new file mode 100644 index 000000000..653eff86c --- /dev/null +++ b/.licenses/npm/merge-stream.dep.yml @@ -0,0 +1,34 @@ +--- +name: merge-stream +version: 2.0.0 +type: npm +summary: Create a stream that emits events from multiple other streams +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Stephen Sugden (stephensugden.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/methods.dep.yml b/.licenses/npm/methods.dep.yml new file mode 100644 index 000000000..a98248a66 --- /dev/null +++ b/.licenses/npm/methods.dep.yml @@ -0,0 +1,49 @@ +--- +name: methods +version: 1.1.2 +type: npm +summary: HTTP methods that node supports +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + (The MIT License) + + Copyright (c) 2013-2014 TJ Holowaychuk + Copyright (c) 2015-2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/methods.svg?style=flat + [npm-url]: https://npmjs.org/package/methods + [node-version-image]: https://img.shields.io/node/v/methods.svg?style=flat + [node-version-url]: https://nodejs.org/en/download/ + [travis-image]: https://img.shields.io/travis/jshttp/methods.svg?style=flat + [travis-url]: https://travis-ci.org/jshttp/methods + [coveralls-image]: https://img.shields.io/coveralls/jshttp/methods.svg?style=flat + [coveralls-url]: https://coveralls.io/r/jshttp/methods?branch=master + [downloads-image]: https://img.shields.io/npm/dm/methods.svg?style=flat + [downloads-url]: https://npmjs.org/package/methods +notices: [] diff --git a/.licenses/npm/micromark-core-commonmark.dep.yml b/.licenses/npm/micromark-core-commonmark.dep.yml new file mode 100644 index 000000000..2ccbda6ca --- /dev/null +++ b/.licenses/npm/micromark-core-commonmark.dep.yml @@ -0,0 +1,68 @@ +--- +name: micromark-core-commonmark +version: 1.1.0 +type: npm +summary: The CommonMark markdown constructs +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-core-commonmark.svg + + [downloads]: https://www.npmjs.com/package/micromark-core-commonmark + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-core-commonmark + + [bundle-size]: https://bundlejs.com/?q=micromark-core-commonmark + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [disable]: https://github.com/micromark/micromark#case-turn-off-constructs + + [construct]: https://github.com/micromark/micromark#constructs + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark +notices: [] diff --git a/.licenses/npm/micromark-factory-destination.dep.yml b/.licenses/npm/micromark-factory-destination.dep.yml new file mode 100644 index 000000000..9c37ccb28 --- /dev/null +++ b/.licenses/npm/micromark-factory-destination.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-factory-destination +version: 1.1.0 +type: npm +summary: micromark factory to parse destinations (found in resources, definitions) +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-factory-destination.svg + + [downloads]: https://www.npmjs.com/package/micromark-factory-destination + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-factory-destination + + [bundle-size]: https://bundlejs.com/?q=micromark-factory-destination + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-factory-destination]: #factorydestination +notices: [] diff --git a/.licenses/npm/micromark-factory-label.dep.yml b/.licenses/npm/micromark-factory-label.dep.yml new file mode 100644 index 000000000..e31e89ef4 --- /dev/null +++ b/.licenses/npm/micromark-factory-label.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-factory-label +version: 1.1.0 +type: npm +summary: micromark factory to parse labels (found in media, definitions) +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-factory-label.svg + + [downloads]: https://www.npmjs.com/package/micromark-factory-label + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-factory-label + + [bundle-size]: https://bundlejs.com/?q=micromark-factory-label + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-factory-label]: #factorylabel +notices: [] diff --git a/.licenses/npm/micromark-factory-space.dep.yml b/.licenses/npm/micromark-factory-space.dep.yml new file mode 100644 index 000000000..48081ad18 --- /dev/null +++ b/.licenses/npm/micromark-factory-space.dep.yml @@ -0,0 +1,68 @@ +--- +name: micromark-factory-space +version: 1.1.0 +type: npm +summary: micromark factory to parse markdown space (found in lots of places) +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-factory-space.svg + + [downloads]: https://www.npmjs.com/package/micromark-factory-space + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-factory-space + + [bundle-size]: https://bundlejs.com/?q=micromark-factory-space + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [markdown-space]: https://github.com/micromark/micromark/tree/main/packages/micromark-util-character#markdownspacecode + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-factory-space]: #factoryspace +notices: [] diff --git a/.licenses/npm/micromark-factory-title.dep.yml b/.licenses/npm/micromark-factory-title.dep.yml new file mode 100644 index 000000000..985ef6706 --- /dev/null +++ b/.licenses/npm/micromark-factory-title.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-factory-title +version: 1.1.0 +type: npm +summary: micromark factory to parse markdown titles (found in resources, definitions) +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-factory-title.svg + + [downloads]: https://www.npmjs.com/package/micromark-factory-title + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-factory-title + + [bundle-size]: https://bundlejs.com/?q=micromark-factory-title + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-factory-title]: #factorytitle +notices: [] diff --git a/.licenses/npm/micromark-factory-whitespace.dep.yml b/.licenses/npm/micromark-factory-whitespace.dep.yml new file mode 100644 index 000000000..82c57d521 --- /dev/null +++ b/.licenses/npm/micromark-factory-whitespace.dep.yml @@ -0,0 +1,68 @@ +--- +name: micromark-factory-whitespace +version: 1.1.0 +type: npm +summary: micromark factory to parse markdown whitespace (found in lots of places) +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-factory-whitespace.svg + + [downloads]: https://www.npmjs.com/package/micromark-factory-whitespace + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-factory-whitespace + + [bundle-size]: https://bundlejs.com/?q=micromark-factory-whitespace + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [ws]: https://github.com/micromark/micromark/tree/main/packages/micromark-util-character#markdownlineendingorspacecode + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-factory-whitespace]: #factorywhitespace +notices: [] diff --git a/.licenses/npm/micromark-util-character.dep.yml b/.licenses/npm/micromark-util-character.dep.yml new file mode 100644 index 000000000..cbc8df3c7 --- /dev/null +++ b/.licenses/npm/micromark-util-character.dep.yml @@ -0,0 +1,90 @@ +--- +name: micromark-util-character +version: 1.2.0 +type: npm +summary: micromark utility to handle character codes +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-character.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-character + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-character + + [bundle-size]: https://bundlejs.com/?q=micromark-util-character + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [code]: https://github.com/micromark/micromark#preprocess + + [api-ascii-alpha]: #asciialphacode + + [api-ascii-alphanumeric]: #asciialphanumericcode + + [api-ascii-atext]: #asciiatextcode + + [api-ascii-control]: #asciicontrolcode + + [api-ascii-digit]: #asciidigitcode + + [api-ascii-hex-digit]: #asciihexdigitcode + + [api-ascii-punctuation]: #asciipunctuationcode + + [api-markdown-line-ending]: #markdownlineendingcode + + [api-markdown-line-ending-or-space]: #markdownlineendingorspacecode + + [api-markdown-space]: #markdownspacecode + + [api-unicode-punctuation]: #unicodepunctuationcode + + [api-unicode-whitespace]: #unicodewhitespacecode +notices: [] diff --git a/.licenses/npm/micromark-util-chunked.dep.yml b/.licenses/npm/micromark-util-chunked.dep.yml new file mode 100644 index 000000000..0c169218b --- /dev/null +++ b/.licenses/npm/micromark-util-chunked.dep.yml @@ -0,0 +1,68 @@ +--- +name: micromark-util-chunked +version: 1.1.0 +type: npm +summary: micromark utility to splice and push with giant arrays +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-chunked.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-chunked + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-chunked + + [bundle-size]: https://bundlejs.com/?q=micromark-util-chunked + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-push]: #pushlist-items + + [api-splice]: #splicelist-start-remove-items +notices: [] diff --git a/.licenses/npm/micromark-util-classify-character.dep.yml b/.licenses/npm/micromark-util-classify-character.dep.yml new file mode 100644 index 000000000..698fdc4e0 --- /dev/null +++ b/.licenses/npm/micromark-util-classify-character.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-util-classify-character +version: 1.1.0 +type: npm +summary: micromark utility to classify whether a character is whitespace or punctuation +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-classify-character.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-classify-character + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-classify-character + + [bundle-size]: https://bundlejs.com/?q=micromark-util-classify-character + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-classify-character]: #classifycharactercode +notices: [] diff --git a/.licenses/npm/micromark-util-combine-extensions.dep.yml b/.licenses/npm/micromark-util-combine-extensions.dep.yml new file mode 100644 index 000000000..24faaf3ec --- /dev/null +++ b/.licenses/npm/micromark-util-combine-extensions.dep.yml @@ -0,0 +1,74 @@ +--- +name: micromark-util-combine-extensions +version: 1.1.0 +type: npm +summary: micromark utility to combine syntax or html extensions +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-combine-extensions.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-combine-extensions + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-combine-extensions + + [bundle-size]: https://bundlejs.com/?q=micromark-util-combine-extensions + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [syntax]: https://github.com/micromark/micromark#syntaxextension + + [html]: https://github.com/micromark/micromark#htmlextension + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [micromark-extension-gfm]: https://github.com/micromark/micromark-extension-gfm + + [api-combine-extensions]: #combineextensionsextensions + + [api-combine-html-extensions]: #combinehtmlextensionshtmlextensions +notices: [] diff --git a/.licenses/npm/micromark-util-decode-numeric-character-reference.dep.yml b/.licenses/npm/micromark-util-decode-numeric-character-reference.dep.yml new file mode 100644 index 000000000..cbe75c3bf --- /dev/null +++ b/.licenses/npm/micromark-util-decode-numeric-character-reference.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-util-decode-numeric-character-reference +version: 1.1.0 +type: npm +summary: micromark utility to decode numeric character references +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-normalize-identifier.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-normalize-identifier + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-normalize-identifier + + [bundle-size]: https://bundlejs.com/?q=micromark-util-normalize-identifier + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-decode-numeric-character-reference]: #decodenumericcharacterreferencevalue-base +notices: [] diff --git a/.licenses/npm/micromark-util-decode-string.dep.yml b/.licenses/npm/micromark-util-decode-string.dep.yml new file mode 100644 index 000000000..f0c589ae9 --- /dev/null +++ b/.licenses/npm/micromark-util-decode-string.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-util-decode-string +version: 1.1.0 +type: npm +summary: micromark utility to decode markdown strings +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-normalize-identifier.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-normalize-identifier + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-normalize-identifier + + [bundle-size]: https://bundlejs.com/?q=micromark-util-normalize-identifier + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-decode-string]: #decodestringvalue +notices: [] diff --git a/.licenses/npm/micromark-util-encode.dep.yml b/.licenses/npm/micromark-util-encode.dep.yml new file mode 100644 index 000000000..6e68973ec --- /dev/null +++ b/.licenses/npm/micromark-util-encode.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-util-encode +version: 1.1.0 +type: npm +summary: micromark utility to encode dangerous html characters +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-encode.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-encode + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-encode + + [bundle-size]: https://bundlejs.com/?q=micromark-util-encode + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-encode]: #encodevalue +notices: [] diff --git a/.licenses/npm/micromark-util-html-tag-name.dep.yml b/.licenses/npm/micromark-util-html-tag-name.dep.yml new file mode 100644 index 000000000..a64d540c3 --- /dev/null +++ b/.licenses/npm/micromark-util-html-tag-name.dep.yml @@ -0,0 +1,68 @@ +--- +name: micromark-util-html-tag-name +version: 1.2.0 +type: npm +summary: micromark utility with list of html tag names +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-html-tag-name.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-html-tag-name + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-html-tag-name + + [bundle-size]: https://bundlejs.com/?q=micromark-util-html-tag-name + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-html-block-names]: #htmlblocknames + + [api-html-raw-names]: #htmlrawnames +notices: [] diff --git a/.licenses/npm/micromark-util-normalize-identifier.dep.yml b/.licenses/npm/micromark-util-normalize-identifier.dep.yml new file mode 100644 index 000000000..1e4ff40b3 --- /dev/null +++ b/.licenses/npm/micromark-util-normalize-identifier.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-util-normalize-identifier +version: 1.1.0 +type: npm +summary: micromark utility normalize identifiers (as found in references, definitions) +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-normalize-identifier.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-normalize-identifier + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-normalize-identifier + + [bundle-size]: https://bundlejs.com/?q=micromark-util-normalize-identifier + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-normalize-identifier]: #normalizeidentifiervalue +notices: [] diff --git a/.licenses/npm/micromark-util-resolve-all.dep.yml b/.licenses/npm/micromark-util-resolve-all.dep.yml new file mode 100644 index 000000000..33a98a989 --- /dev/null +++ b/.licenses/npm/micromark-util-resolve-all.dep.yml @@ -0,0 +1,68 @@ +--- +name: micromark-util-resolve-all +version: 1.1.0 +type: npm +summary: micromark utility to resolve subtokens +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-resolve-all.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-resolve-all + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-resolve-all + + [bundle-size]: https://bundlejs.com/?q=micromark-util-resolve-all + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [resolver]: https://github.com/micromark/micromark/blob/a571c09/packages/micromark-util-types/index.js#L219 + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-resolve-all]: #resolveallconstructs-events-context +notices: [] diff --git a/.licenses/npm/micromark-util-sanitize-uri.dep.yml b/.licenses/npm/micromark-util-sanitize-uri.dep.yml new file mode 100644 index 000000000..068c4543f --- /dev/null +++ b/.licenses/npm/micromark-util-sanitize-uri.dep.yml @@ -0,0 +1,70 @@ +--- +name: micromark-util-sanitize-uri +version: 1.2.0 +type: npm +summary: micromark utility to sanitize urls +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-sanitize-uri.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-sanitize-uri + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-sanitize-uri + + [bundle-size]: https://bundlejs.com/?q=micromark-util-sanitize-uri + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [micromark-util-encode]: https://github.com/micromark/micromark/tree/main/packages/micromark-util-encode + + [api-normalize-uri]: #normalizeurivalue + + [api-sanitize-uri]: #sanitizeuriurl-pattern +notices: [] diff --git a/.licenses/npm/micromark-util-subtokenize.dep.yml b/.licenses/npm/micromark-util-subtokenize.dep.yml new file mode 100644 index 000000000..cb7e73a31 --- /dev/null +++ b/.licenses/npm/micromark-util-subtokenize.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-util-subtokenize +version: 1.1.0 +type: npm +summary: micromark utility to tokenize subtokens +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-subtokenize.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-subtokenize + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-subtokenize + + [bundle-size]: https://bundlejs.com/?q=micromark-util-subtokenize + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [api-subtokenize]: #subtokenizeevents +notices: [] diff --git a/.licenses/npm/micromark-util-symbol.dep.yml b/.licenses/npm/micromark-util-symbol.dep.yml new file mode 100644 index 000000000..d83f5839c --- /dev/null +++ b/.licenses/npm/micromark-util-symbol.dep.yml @@ -0,0 +1,66 @@ +--- +name: micromark-util-symbol +version: 1.1.0 +type: npm +summary: micromark utility with symbols +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-symbol.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-symbol + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-symbol + + [bundle-size]: https://bundlejs.com/?q=micromark-util-symbol + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [micromark-build]: https://github.com/micromark/micromark/tree/main/packages/micromark-build +notices: [] diff --git a/.licenses/npm/micromark-util-types.dep.yml b/.licenses/npm/micromark-util-types.dep.yml new file mode 100644 index 000000000..c7db51b36 --- /dev/null +++ b/.licenses/npm/micromark-util-types.dep.yml @@ -0,0 +1,64 @@ +--- +name: micromark-util-types +version: 1.1.0 +type: npm +summary: micromark utility with a couple of typescript types +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark-util-encode.svg + + [downloads]: https://www.npmjs.com/package/micromark-util-encode + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark-util-encode + + [bundle-size]: https://bundlejs.com/?q=micromark-util-encode + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [npm]: https://docs.npmjs.com/cli/install + + [esmsh]: https://esm.sh + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [typescript]: https://www.typescriptlang.org + + [micromark]: https://github.com/micromark/micromark + + [code]: https://github.com/micromark/micromark/blob/main/packages/micromark-util-types/index.d.ts +notices: [] diff --git a/.licenses/npm/micromark.dep.yml b/.licenses/npm/micromark.dep.yml new file mode 100644 index 000000000..35a6fc082 --- /dev/null +++ b/.licenses/npm/micromark.dep.yml @@ -0,0 +1,113 @@ +--- +name: micromark +version: 3.2.0 +type: npm +summary: small commonmark compliant markdown parser with positional info and concrete + tokens +homepage: +license: mit +licenses: +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/micromark/micromark/workflows/main/badge.svg + + [build]: https://github.com/micromark/micromark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/micromark/micromark.svg + + [coverage]: https://codecov.io/github/micromark/micromark + + [downloads-badge]: https://img.shields.io/npm/dm/micromark.svg + + [downloads]: https://www.npmjs.com/package/micromark + + [bundle-size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=micromark + + [bundle-size]: https://bundlejs.com/?q=micromark + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [opencollective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/micromark/micromark/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [development]: https://nodejs.org/api/packages.html#packages_resolving_user_conditions + + [license]: https://github.com/micromark/micromark/blob/main/license + + [author]: https://wooorm.com + + [health]: https://github.com/micromark/.github + + [securitymd]: https://github.com/micromark/.github/blob/main/security.md + + [contributing]: https://github.com/micromark/.github/blob/main/contributing.md + + [support]: https://github.com/micromark/.github/blob/main/support.md + + [coc]: https://github.com/micromark/.github/blob/main/code-of-conduct.md + + [cheat]: https://commonmark.org/help/ + + [twitter]: https://twitter.com/unifiedjs + + [site]: https://unifiedjs.com + + [contribute]: #contribute + + [encoding]: https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings + + [buffer]: https://nodejs.org/api/buffer.html + + [commonmark]: https://commonmark.org + + [directives]: https://github.com/micromark/micromark-extension-directive + + [frontmatter]: https://github.com/micromark/micromark-extension-frontmatter + + [gfm]: https://github.com/micromark/micromark-extension-gfm + + [math]: https://github.com/micromark/micromark-extension-math + + [mdxjs]: https://github.com/micromark/micromark-extension-mdxjs + + [security]: #security + + [sponsor]: #sponsor + + [micromark]: https://github.com/micromark/micromark + + [extensions]: https://github.com/micromark/micromark#extensions + + [test]: https://github.com/micromark/micromark#test + + [size-debug]: https://github.com/micromark/micromark#size--debug + + [comparison]: https://github.com/micromark/micromark#comparison + + [markdown-rs]: https://github.com/wooorm/markdown-rs + + [mdast-util-to-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown + + [api-micromark]: #micromarkvalue-encoding-options + + [api-stream]: #streamoptions + + [api-options]: #options +notices: [] diff --git a/.licenses/npm/micromatch.dep.yml b/.licenses/npm/micromatch.dep.yml new file mode 100644 index 000000000..bf74a0c2a --- /dev/null +++ b/.licenses/npm/micromatch.dep.yml @@ -0,0 +1,41 @@ +--- +name: micromatch +version: 4.0.8 +type: npm +summary: Glob matching for javascript/node.js. A replacement and faster alternative + to minimatch and multimatch. +homepage: https://github.com/micromatch/micromatch +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014-present, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2024, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on August 23, 2024._ +notices: [] diff --git a/.licenses/npm/mime-1.6.0.dep.yml b/.licenses/npm/mime-1.6.0.dep.yml new file mode 100644 index 000000000..240bd527c --- /dev/null +++ b/.licenses/npm/mime-1.6.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: mime +version: 1.6.0 +type: npm +summary: A comprehensive library for mime-type mapping +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2010 Benjamin Thomas, Robert Kieffer + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/mime-2.6.0.dep.yml b/.licenses/npm/mime-2.6.0.dep.yml new file mode 100644 index 000000000..b584337f8 --- /dev/null +++ b/.licenses/npm/mime-2.6.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: mime +version: 2.6.0 +type: npm +summary: A comprehensive library for mime-type mapping +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2010 Benjamin Thomas, Robert Kieffer + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/mime-db.dep.yml b/.licenses/npm/mime-db.dep.yml new file mode 100644 index 000000000..660566950 --- /dev/null +++ b/.licenses/npm/mime-db.dep.yml @@ -0,0 +1,34 @@ +--- +name: mime-db +version: 1.52.0 +type: npm +summary: Media Type Database +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2015-2022 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/mime-types.dep.yml b/.licenses/npm/mime-types.dep.yml new file mode 100644 index 000000000..832d2052d --- /dev/null +++ b/.licenses/npm/mime-types.dep.yml @@ -0,0 +1,47 @@ +--- +name: mime-types +version: 2.1.35 +type: npm +summary: The ultimate javascript content-type utility. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/mime-types/master?label=ci + [ci-url]: https://github.com/jshttp/mime-types/actions/workflows/ci.yml + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-types/master + [coveralls-url]: https://coveralls.io/r/jshttp/mime-types?branch=master + [node-version-image]: https://badgen.net/npm/node/mime-types + [node-version-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/mime-types + [npm-url]: https://npmjs.org/package/mime-types + [npm-version-image]: https://badgen.net/npm/v/mime-types +notices: [] diff --git a/.licenses/npm/mimic-fn-2.1.0.dep.yml b/.licenses/npm/mimic-fn-2.1.0.dep.yml new file mode 100644 index 000000000..44756b980 --- /dev/null +++ b/.licenses/npm/mimic-fn-2.1.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: mimic-fn +version: 2.1.0 +type: npm +summary: Make a function mimic another one +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/mimic-fn-3.1.0.dep.yml b/.licenses/npm/mimic-fn-3.1.0.dep.yml new file mode 100644 index 000000000..df9e42edd --- /dev/null +++ b/.licenses/npm/mimic-fn-3.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: mimic-fn +version: 3.1.0 +type: npm +summary: Make a function mimic another one +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/mimic-response-1.0.1.dep.yml b/.licenses/npm/mimic-response-1.0.1.dep.yml new file mode 100644 index 000000000..eb2699005 --- /dev/null +++ b/.licenses/npm/mimic-response-1.0.1.dep.yml @@ -0,0 +1,22 @@ +--- +name: mimic-response +version: 1.0.1 +type: npm +summary: Mimic a Node.js HTTP response stream +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/mimic-response-2.1.0.dep.yml b/.licenses/npm/mimic-response-2.1.0.dep.yml new file mode 100644 index 000000000..4b1fddfd2 --- /dev/null +++ b/.licenses/npm/mimic-response-2.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: mimic-response +version: 2.1.0 +type: npm +summary: Mimic a Node.js HTTP response stream +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/mimic-response-3.1.0.dep.yml b/.licenses/npm/mimic-response-3.1.0.dep.yml new file mode 100644 index 000000000..8f539c676 --- /dev/null +++ b/.licenses/npm/mimic-response-3.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: mimic-response +version: 3.1.0 +type: npm +summary: Mimic a Node.js HTTP response stream +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/mimic-response-4.0.0.dep.yml b/.licenses/npm/mimic-response-4.0.0.dep.yml new file mode 100644 index 000000000..0a8243222 --- /dev/null +++ b/.licenses/npm/mimic-response-4.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: mimic-response +version: 4.0.0 +type: npm +summary: Mimic a Node.js HTTP response stream +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/minimalistic-assert.dep.yml b/.licenses/npm/minimalistic-assert.dep.yml new file mode 100644 index 000000000..0d5b294eb --- /dev/null +++ b/.licenses/npm/minimalistic-assert.dep.yml @@ -0,0 +1,24 @@ +--- +name: minimalistic-assert +version: 1.0.1 +type: npm +summary: minimalistic-assert === +homepage: https://github.com/calvinmetcalf/minimalistic-assert +license: isc +licenses: +- sources: LICENSE + text: |- + Copyright 2015 Calvin Metcalf + + Permission to use, copy, modify, and/or distribute this software for any purpose + with or without fee is hereby granted, provided that the above copyright notice + and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/minimatch-3.1.2.dep.yml b/.licenses/npm/minimatch-3.1.2.dep.yml new file mode 100644 index 000000000..05e744aa9 --- /dev/null +++ b/.licenses/npm/minimatch-3.1.2.dep.yml @@ -0,0 +1,26 @@ +--- +name: minimatch +version: 3.1.2 +type: npm +summary: a glob matcher in javascript +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/minimatch-5.1.6.dep.yml b/.licenses/npm/minimatch-5.1.6.dep.yml new file mode 100644 index 000000000..7e565519e --- /dev/null +++ b/.licenses/npm/minimatch-5.1.6.dep.yml @@ -0,0 +1,26 @@ +--- +name: minimatch +version: 5.1.6 +type: npm +summary: a glob matcher in javascript +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/minimatch-9.0.5.dep.yml b/.licenses/npm/minimatch-9.0.5.dep.yml new file mode 100644 index 000000000..8026144a4 --- /dev/null +++ b/.licenses/npm/minimatch-9.0.5.dep.yml @@ -0,0 +1,26 @@ +--- +name: minimatch +version: 9.0.5 +type: npm +summary: a glob matcher in javascript +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/minimist.dep.yml b/.licenses/npm/minimist.dep.yml new file mode 100644 index 000000000..d828146bd --- /dev/null +++ b/.licenses/npm/minimist.dep.yml @@ -0,0 +1,44 @@ +--- +name: minimist +version: 1.2.8 +type: npm +summary: parse argument options +homepage: https://github.com/minimistjs/minimist +license: other +licenses: +- sources: LICENSE + text: | + This software is released under the MIT license: + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + MIT + + [package-url]: https://npmjs.org/package/minimist + [npm-version-svg]: https://versionbadg.es/minimistjs/minimist.svg + [npm-badge-png]: https://nodei.co/npm/minimist.png?downloads=true&stars=true + [license-image]: https://img.shields.io/npm/l/minimist.svg + [license-url]: LICENSE + [downloads-image]: https://img.shields.io/npm/dm/minimist.svg + [downloads-url]: https://npm-stat.com/charts.html?package=minimist + [codecov-image]: https://codecov.io/gh/minimistjs/minimist/branch/main/graphs/badge.svg + [codecov-url]: https://app.codecov.io/gh/minimistjs/minimist/ + [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/minimistjs/minimist + [actions-url]: https://github.com/minimistjs/minimist/actions +notices: [] diff --git a/.licenses/npm/minipass-3.3.6.dep.yml b/.licenses/npm/minipass-3.3.6.dep.yml new file mode 100644 index 000000000..401f57c95 --- /dev/null +++ b/.licenses/npm/minipass-3.3.6.dep.yml @@ -0,0 +1,26 @@ +--- +name: minipass +version: 3.3.6 +type: npm +summary: minimal implementation of a PassThrough stream +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2017-2022 npm, Inc., Isaac Z. Schlueter, and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/minipass-5.0.0.dep.yml b/.licenses/npm/minipass-5.0.0.dep.yml new file mode 100644 index 000000000..6965ca157 --- /dev/null +++ b/.licenses/npm/minipass-5.0.0.dep.yml @@ -0,0 +1,26 @@ +--- +name: minipass +version: 5.0.0 +type: npm +summary: minimal implementation of a PassThrough stream +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/minipass-7.1.2.dep.yml b/.licenses/npm/minipass-7.1.2.dep.yml new file mode 100644 index 000000000..6d4455ae8 --- /dev/null +++ b/.licenses/npm/minipass-7.1.2.dep.yml @@ -0,0 +1,26 @@ +--- +name: minipass +version: 7.1.2 +type: npm +summary: minimal implementation of a PassThrough stream +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2017-2023 npm, Inc., Isaac Z. Schlueter, and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/minizlib.dep.yml b/.licenses/npm/minizlib.dep.yml new file mode 100644 index 000000000..a583d9bc5 --- /dev/null +++ b/.licenses/npm/minizlib.dep.yml @@ -0,0 +1,38 @@ +--- +name: minizlib +version: 2.1.2 +type: npm +summary: A small fast zlib stream built on [minipass](http://npm.im/minipass) and + Node.js's zlib binding. +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Minizlib was created by Isaac Z. Schlueter. + It is a derivative work of the Node.js project. + + """ + Copyright Isaac Z. Schlueter and Contributors + Copyright Node.js contributors. All rights reserved. + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + """ +notices: [] diff --git a/.licenses/npm/mkdirp-0.5.6.dep.yml b/.licenses/npm/mkdirp-0.5.6.dep.yml new file mode 100644 index 000000000..832d06de1 --- /dev/null +++ b/.licenses/npm/mkdirp-0.5.6.dep.yml @@ -0,0 +1,34 @@ +--- +name: mkdirp +version: 0.5.6 +type: npm +summary: Recursively mkdir, like `mkdir -p` +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright 2010 James Halliday (mail@substack.net) + + This project is free software released under the MIT/X11 license: + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/mkdirp-1.0.4.dep.yml b/.licenses/npm/mkdirp-1.0.4.dep.yml new file mode 100644 index 000000000..d32408d54 --- /dev/null +++ b/.licenses/npm/mkdirp-1.0.4.dep.yml @@ -0,0 +1,34 @@ +--- +name: mkdirp +version: 1.0.4 +type: npm +summary: Recursively mkdir, like `mkdir -p` +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright James Halliday (mail@substack.net) and Isaac Z. Schlueter (i@izs.me) + + This project is free software released under the MIT license: + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/mkdirp-classic.dep.yml b/.licenses/npm/mkdirp-classic.dep.yml new file mode 100644 index 000000000..36d7498d3 --- /dev/null +++ b/.licenses/npm/mkdirp-classic.dep.yml @@ -0,0 +1,34 @@ +--- +name: mkdirp-classic +version: 0.5.3 +type: npm +summary: Mirror of mkdirp 0.5.2 +homepage: https://github.com/mafintosh/mkdirp-classic +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2020 James Halliday (mail@substack.net) and Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/moment.dep.yml b/.licenses/npm/moment.dep.yml new file mode 100644 index 000000000..6f43d1eb5 --- /dev/null +++ b/.licenses/npm/moment.dep.yml @@ -0,0 +1,62 @@ +--- +name: moment +version: 2.30.1 +type: npm +summary: Parse, validate, manipulate, and display dates +homepage: https://momentjs.com +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) JS Foundation and other contributors + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Moment.js is freely distributable under the terms of the [MIT license][license-url]. + + [![FOSSA Status][fossa-large-image]][fossa-large-url] + + [license-image]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat + [license-url]: LICENSE + + [npm-url]: https://npmjs.org/package/moment + [npm-version-image]: https://img.shields.io/npm/v/moment.svg?style=flat + + [npm-downloads-image]: https://img.shields.io/npm/dm/moment.svg?style=flat + [npm-downloads-url]: https://npmcharts.com/compare/moment?minimal=true + + [travis-url]: https://travis-ci.org/moment/moment + [travis-image]: https://img.shields.io/travis/moment/moment/develop.svg?style=flat + + [coveralls-image]: https://coveralls.io/repos/moment/moment/badge.svg?branch=develop + [coveralls-url]: https://coveralls.io/r/moment/moment?branch=develop + + [fossa-badge-image]: https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fmoment%2Fmoment.svg?type=shield + [fossa-badge-url]: https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fmoment%2Fmoment?ref=badge_shield + + [fossa-large-image]: https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fmoment%2Fmoment.svg?type=large + [fossa-large-url]: https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fmoment%2Fmoment?ref=badge_large + + [semver-image]: https://api.dependabot.com/badges/compatibility_score?dependency-name=moment&package-manager=npm_and_yarn&version-scheme=semver + [semver-url]: https://dependabot.com/compatibility-score.html?dependency-name=moment&package-manager=npm_and_yarn&version-scheme=semver +notices: [] diff --git a/.licenses/npm/mount-point.dep.yml b/.licenses/npm/mount-point.dep.yml new file mode 100644 index 000000000..a27e9eade --- /dev/null +++ b/.licenses/npm/mount-point.dep.yml @@ -0,0 +1,34 @@ +--- +name: mount-point +version: 3.0.0 +type: npm +summary: Get the mount point for a file +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Kevin Mårtensson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](https://github.com/kevva) +notices: [] diff --git a/.licenses/npm/move-file.dep.yml b/.licenses/npm/move-file.dep.yml new file mode 100644 index 000000000..cc4d5a422 --- /dev/null +++ b/.licenses/npm/move-file.dep.yml @@ -0,0 +1,20 @@ +--- +name: move-file +version: 2.1.0 +type: npm +summary: Move a file - Even works across devices +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/mri.dep.yml b/.licenses/npm/mri.dep.yml new file mode 100644 index 000000000..97b513dba --- /dev/null +++ b/.licenses/npm/mri.dep.yml @@ -0,0 +1,34 @@ +--- +name: mri +version: 1.2.0 +type: npm +summary: Quickly scan for CLI flags and arguments +homepage: +license: mit +licenses: +- sources: license.md + text: | + The MIT License (MIT) + + Copyright (c) Luke Edwards (lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/ms-2.0.0.dep.yml b/.licenses/npm/ms-2.0.0.dep.yml new file mode 100644 index 000000000..b653b8c0e --- /dev/null +++ b/.licenses/npm/ms-2.0.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: ms +version: 2.0.0 +type: npm +summary: Tiny milisecond conversion utility +homepage: +license: mit +licenses: +- sources: license.md + text: | + The MIT License (MIT) + + Copyright (c) 2016 Zeit, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/ms-2.1.3.dep.yml b/.licenses/npm/ms-2.1.3.dep.yml new file mode 100644 index 000000000..5a303e4d6 --- /dev/null +++ b/.licenses/npm/ms-2.1.3.dep.yml @@ -0,0 +1,32 @@ +--- +name: ms +version: 2.1.3 +type: npm +summary: Tiny millisecond conversion utility +homepage: +license: mit +licenses: +- sources: license.md + text: | + The MIT License (MIT) + + Copyright (c) 2020 Vercel, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/msgpackr-extract.dep.yml b/.licenses/npm/msgpackr-extract.dep.yml new file mode 100644 index 000000000..f9bf74cf0 --- /dev/null +++ b/.licenses/npm/msgpackr-extract.dep.yml @@ -0,0 +1,34 @@ +--- +name: msgpackr-extract +version: 3.0.3 +type: npm +summary: Node addon for string extraction for msgpackr +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Kris Zyp + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/msgpackr.dep.yml b/.licenses/npm/msgpackr.dep.yml new file mode 100644 index 000000000..5f7e91599 --- /dev/null +++ b/.licenses/npm/msgpackr.dep.yml @@ -0,0 +1,35 @@ +--- +name: msgpackr +version: 1.11.2 +type: npm +summary: Ultra-fast MessagePack implementation with extensions for records and structured + cloning +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Kris Zyp + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/multer.dep.yml b/.licenses/npm/multer.dep.yml new file mode 100644 index 000000000..953c116a1 --- /dev/null +++ b/.licenses/npm/multer.dep.yml @@ -0,0 +1,30 @@ +--- +name: multer +version: 1.4.4-lts.1 +type: npm +summary: Middleware for handling `multipart/form-data`. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2014 Hage Yaapa <[http://www.hacksparrow.com](http://www.hacksparrow.com)> + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE)" +notices: [] diff --git a/.licenses/npm/nan.dep.yml b/.licenses/npm/nan.dep.yml new file mode 100644 index 000000000..a37446db2 --- /dev/null +++ b/.licenses/npm/nan.dep.yml @@ -0,0 +1,20 @@ +--- +name: nan +version: 2.22.2 +type: npm +summary: 'Native Abstractions for Node.js: C++ header for Node 0.8 -> 22 compatibility' +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2018 [NAN contributors]() + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/nano.dep.yml b/.licenses/npm/nano.dep.yml new file mode 100644 index 000000000..e97e091b9 --- /dev/null +++ b/.licenses/npm/nano.dep.yml @@ -0,0 +1,221 @@ +--- +name: nano +version: 10.1.4 +type: npm +summary: The official CouchDB client for Node.js +homepage: http://github.com/apache/couchdb-nano +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2+ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +notices: +- sources: NOTICE + text: |- + Apache CouchDB Nano + Copyright [2016-2018] The Apache Software Foundation + + This product includes software developed at + The Apache Software Foundation (http://www.apache.org/). diff --git a/.licenses/npm/napi-build-utils.dep.yml b/.licenses/npm/napi-build-utils.dep.yml new file mode 100644 index 000000000..b405eafd7 --- /dev/null +++ b/.licenses/npm/napi-build-utils.dep.yml @@ -0,0 +1,33 @@ +--- +name: napi-build-utils +version: 1.0.2 +type: npm +summary: A set of utilities to assist developers of tools that build N-API native + add-ons +homepage: https://github.com/inspiredware/napi-build-utils#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 inspiredware + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/native-keymap.dep.yml b/.licenses/npm/native-keymap.dep.yml new file mode 100644 index 000000000..04df37294 --- /dev/null +++ b/.licenses/npm/native-keymap.dep.yml @@ -0,0 +1,30 @@ +--- +name: native-keymap +version: 2.5.0 +type: npm +summary: Get OS key mapping +homepage: https://github.com/Microsoft/node-native-keymap#readme +license: mit +licenses: +- sources: License.txt + text: |- + Copyright (c) Microsoft Corporation + + All rights reserved. + + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, + modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software + is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT + OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/Microsoft/node-native-keymap/blob/master/License.txt)" +notices: [] diff --git a/.licenses/npm/negotiator.dep.yml b/.licenses/npm/negotiator.dep.yml new file mode 100644 index 000000000..c2ce7cfac --- /dev/null +++ b/.licenses/npm/negotiator.dep.yml @@ -0,0 +1,49 @@ +--- +name: negotiator +version: 0.6.3 +type: npm +summary: HTTP content negotiation +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012-2014 Federico Romero + Copyright (c) 2012-2014 Isaac Z. Schlueter + Copyright (c) 2014-2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/negotiator.svg + [npm-url]: https://npmjs.org/package/negotiator + [node-version-image]: https://img.shields.io/node/v/negotiator.svg + [node-version-url]: https://nodejs.org/en/download/ + [coveralls-image]: https://img.shields.io/coveralls/jshttp/negotiator/master.svg + [coveralls-url]: https://coveralls.io/r/jshttp/negotiator?branch=master + [downloads-image]: https://img.shields.io/npm/dm/negotiator.svg + [downloads-url]: https://npmjs.org/package/negotiator + [github-actions-ci-image]: https://img.shields.io/github/workflow/status/jshttp/negotiator/ci/master?label=ci + [github-actions-ci-url]: https://github.com/jshttp/negotiator/actions/workflows/ci.yml +notices: [] diff --git a/.licenses/npm/nice-grpc-common.dep.yml b/.licenses/npm/nice-grpc-common.dep.yml new file mode 100644 index 000000000..28a824732 --- /dev/null +++ b/.licenses/npm/nice-grpc-common.dep.yml @@ -0,0 +1,31 @@ +--- +name: nice-grpc-common +version: 2.0.2 +type: npm +summary: Common stuff for nice-grpc and nice-grpc-web +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2021 Deeplay + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/node-abi.dep.yml b/.licenses/npm/node-abi.dep.yml new file mode 100644 index 000000000..092ddbbba --- /dev/null +++ b/.licenses/npm/node-abi.dep.yml @@ -0,0 +1,32 @@ +--- +name: node-abi +version: 2.30.1 +type: npm +summary: Get the Node ABI for a given target and runtime, and vice versa. +homepage: https://github.com/lgeiger/node-abi#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2016 Lukas Geiger + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/node-abort-controller.dep.yml b/.licenses/npm/node-abort-controller.dep.yml new file mode 100644 index 000000000..f826de753 --- /dev/null +++ b/.licenses/npm/node-abort-controller.dep.yml @@ -0,0 +1,32 @@ +--- +name: node-abort-controller +version: 3.1.1 +type: npm +summary: AbortController for Node based on EventEmitter +homepage: https://github.com/southpolesteve/node-abort-controller#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Steve Faulkner + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/node-addon-api-3.2.1.dep.yml b/.licenses/npm/node-addon-api-3.2.1.dep.yml new file mode 100644 index 000000000..6d7bbe338 --- /dev/null +++ b/.licenses/npm/node-addon-api-3.2.1.dep.yml @@ -0,0 +1,24 @@ +--- +name: node-addon-api +version: 3.2.1 +type: npm +summary: Node.js API (Node-API) +homepage: https://github.com/nodejs/node-addon-api +license: other +licenses: +- sources: LICENSE.md + text: |- + The MIT License (MIT) + ===================== + + Copyright (c) 2017 Node.js API collaborators + ----------------------------------- + + *Node.js API collaborators listed at * + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/node-addon-api-7.1.1.dep.yml b/.licenses/npm/node-addon-api-7.1.1.dep.yml new file mode 100644 index 000000000..f813b3a0f --- /dev/null +++ b/.licenses/npm/node-addon-api-7.1.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: node-addon-api +version: 7.1.1 +type: npm +summary: Node.js API (Node-API) +homepage: https://github.com/nodejs/node-addon-api +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2017 [Node.js API collaborators](https://github.com/nodejs/node-addon-api#collaborators) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/node-domexception.dep.yml b/.licenses/npm/node-domexception.dep.yml new file mode 100644 index 000000000..cb5b96a9e --- /dev/null +++ b/.licenses/npm/node-domexception.dep.yml @@ -0,0 +1,32 @@ +--- +name: node-domexception +version: 1.0.0 +type: npm +summary: An implementation of the DOMException class from NodeJS +homepage: https://github.com/jimmywarting/node-domexception#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2021 Jimmy Wärting + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/node-fetch-2.7.0.dep.yml b/.licenses/npm/node-fetch-2.7.0.dep.yml new file mode 100644 index 000000000..ec9a760d2 --- /dev/null +++ b/.licenses/npm/node-fetch-2.7.0.dep.yml @@ -0,0 +1,56 @@ +--- +name: node-fetch +version: 2.7.0 +type: npm +summary: A light-weight module that brings window.fetch to node.js +homepage: https://github.com/bitinn/node-fetch +license: mit +licenses: +- sources: LICENSE.md + text: |+ + The MIT License (MIT) + + Copyright (c) 2016 David Frank + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: |- + MIT + + [npm-image]: https://flat.badgen.net/npm/v/node-fetch + [npm-url]: https://www.npmjs.com/package/node-fetch + [travis-image]: https://flat.badgen.net/travis/bitinn/node-fetch + [travis-url]: https://travis-ci.org/bitinn/node-fetch + [codecov-image]: https://flat.badgen.net/codecov/c/github/bitinn/node-fetch/master + [codecov-url]: https://codecov.io/gh/bitinn/node-fetch + [install-size-image]: https://flat.badgen.net/packagephobia/install/node-fetch + [install-size-url]: https://packagephobia.now.sh/result?p=node-fetch + [discord-image]: https://img.shields.io/discord/619915844268326952?color=%237289DA&label=Discord&style=flat-square + [discord-url]: https://discord.gg/Zxbndcm + [opencollective-image]: https://opencollective.com/node-fetch/backers.svg + [opencollective-url]: https://opencollective.com/node-fetch + [whatwg-fetch]: https://fetch.spec.whatwg.org/ + [response-init]: https://fetch.spec.whatwg.org/#responseinit + [node-readable]: https://nodejs.org/api/stream.html#stream_readable_streams + [mdn-headers]: https://developer.mozilla.org/en-US/docs/Web/API/Headers + [LIMITS.md]: https://github.com/bitinn/node-fetch/blob/master/LIMITS.md + [ERROR-HANDLING.md]: https://github.com/bitinn/node-fetch/blob/master/ERROR-HANDLING.md + [UPGRADE-GUIDE.md]: https://github.com/bitinn/node-fetch/blob/master/UPGRADE-GUIDE.md +notices: [] diff --git a/.licenses/npm/node-fetch-3.3.2.dep.yml b/.licenses/npm/node-fetch-3.3.2.dep.yml new file mode 100644 index 000000000..f40efc7f2 --- /dev/null +++ b/.licenses/npm/node-fetch-3.3.2.dep.yml @@ -0,0 +1,45 @@ +--- +name: node-fetch +version: 3.3.2 +type: npm +summary: A light-weight module that brings Fetch API to node.js +homepage: https://github.com/node-fetch/node-fetch +license: mit +licenses: +- sources: LICENSE.md + text: |+ + The MIT License (MIT) + + Copyright (c) 2016 - 2020 Node Fetch Team + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: |- + [MIT](LICENSE.md) + + [whatwg-fetch]: https://fetch.spec.whatwg.org/ + [response-init]: https://fetch.spec.whatwg.org/#responseinit + [node-readable]: https://nodejs.org/api/stream.html#stream_readable_streams + [mdn-headers]: https://developer.mozilla.org/en-US/docs/Web/API/Headers + [error-handling.md]: https://github.com/node-fetch/node-fetch/blob/master/docs/ERROR-HANDLING.md + [FormData]: https://developer.mozilla.org/en-US/docs/Web/API/FormData + [Blob]: https://developer.mozilla.org/en-US/docs/Web/API/Blob + [File]: https://developer.mozilla.org/en-US/docs/Web/API/File +notices: [] diff --git a/.licenses/npm/node-gyp-build-optional-packages.dep.yml b/.licenses/npm/node-gyp-build-optional-packages.dep.yml new file mode 100644 index 000000000..e286b412f --- /dev/null +++ b/.licenses/npm/node-gyp-build-optional-packages.dep.yml @@ -0,0 +1,38 @@ +--- +name: node-gyp-build-optional-packages +version: 5.2.2 +type: npm +summary: Build tool and bindings loader for node-gyp that supports prebuilds +homepage: https://github.com/prebuild/node-gyp-build +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2017 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + MIT + + [prebuildify]: https://github.com/prebuild/prebuildify + [node-gyp]: https://www.npmjs.com/package/node-gyp +notices: [] diff --git a/.licenses/npm/node-log-rotate.dep.yml b/.licenses/npm/node-log-rotate.dep.yml new file mode 100644 index 000000000..8b412fd28 --- /dev/null +++ b/.licenses/npm/node-log-rotate.dep.yml @@ -0,0 +1,34 @@ +--- +name: node-log-rotate +version: 0.1.5 +type: npm +summary: '' +homepage: https://github.com/lemon-sour/node-log-rotate#readme +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2019 Yoshiyuki Hisamatsu + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT © [hisasann (Yoshiyuki Hisamatsu)](https://github.com/hisasann) +notices: [] diff --git a/.licenses/npm/node-pty.dep.yml b/.licenses/npm/node-pty.dep.yml new file mode 100644 index 000000000..f873a3663 --- /dev/null +++ b/.licenses/npm/node-pty.dep.yml @@ -0,0 +1,85 @@ +--- +name: node-pty +version: 0.11.0-beta24 +type: npm +summary: Fork pseudoterminals in Node.JS +homepage: https://github.com/microsoft/node-pty +license: other +licenses: +- sources: LICENSE + text: | + Copyright (c) 2012-2015, Christopher Jeffrey (https://github.com/chjj/) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + + + + The MIT License (MIT) + + Copyright (c) 2016, Daniel Imms (http://www.growingwiththeweb.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + + + + MIT License + + Copyright (c) 2018 - present Microsoft Corporation + + All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2012-2015, Christopher Jeffrey (MIT License).
+ Copyright (c) 2016, Daniel Imms (MIT License).
+ Copyright (c) 2018, Microsoft Corporation (MIT License). +notices: [] diff --git a/.licenses/npm/noop-logger.dep.yml b/.licenses/npm/noop-logger.dep.yml new file mode 100644 index 000000000..c5c5bdbbf --- /dev/null +++ b/.licenses/npm/noop-logger.dep.yml @@ -0,0 +1,11 @@ +--- +name: noop-logger +version: 0.1.1 +type: npm +summary: A logger that does exactly nothing. +homepage: +license: mit +licenses: +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/nopt.dep.yml b/.licenses/npm/nopt.dep.yml new file mode 100644 index 000000000..b7ff8883e --- /dev/null +++ b/.licenses/npm/nopt.dep.yml @@ -0,0 +1,26 @@ +--- +name: nopt +version: 5.0.0 +type: npm +summary: Option parsing for Node, supporting types, shorthands, etc. Used by npm. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/normalize-path.dep.yml b/.licenses/npm/normalize-path.dep.yml new file mode 100644 index 000000000..f010f2a00 --- /dev/null +++ b/.licenses/npm/normalize-path.dep.yml @@ -0,0 +1,42 @@ +--- +name: normalize-path +version: 3.0.0 +type: npm +summary: Normalize slashes in a file path to be posix/unix-like forward slashes. Also + condenses repeat slashes to a single slash and removes and trailing slashes, unless + disabled. +homepage: https://github.com/jonschlinkert/normalize-path +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014-2018, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on April 19, 2018._ +notices: [] diff --git a/.licenses/npm/normalize-url-6.1.0.dep.yml b/.licenses/npm/normalize-url-6.1.0.dep.yml new file mode 100644 index 000000000..eb88f5d66 --- /dev/null +++ b/.licenses/npm/normalize-url-6.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: normalize-url +version: 6.1.0 +type: npm +summary: Normalize a URL +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/normalize-url-8.0.1.dep.yml b/.licenses/npm/normalize-url-8.0.1.dep.yml new file mode 100644 index 000000000..b11302dd1 --- /dev/null +++ b/.licenses/npm/normalize-url-8.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: normalize-url +version: 8.0.1 +type: npm +summary: Normalize a URL +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/npm-run-path-2.0.2.dep.yml b/.licenses/npm/npm-run-path-2.0.2.dep.yml new file mode 100644 index 000000000..84b401bef --- /dev/null +++ b/.licenses/npm/npm-run-path-2.0.2.dep.yml @@ -0,0 +1,34 @@ +--- +name: npm-run-path +version: 2.0.2 +type: npm +summary: Get your PATH prepended with locally installed binaries +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/npm-run-path-3.1.0.dep.yml b/.licenses/npm/npm-run-path-3.1.0.dep.yml new file mode 100644 index 000000000..336e9d64c --- /dev/null +++ b/.licenses/npm/npm-run-path-3.1.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: npm-run-path +version: 3.1.0 +type: npm +summary: Get your PATH prepended with locally installed binaries +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/npm-run-path-4.0.1.dep.yml b/.licenses/npm/npm-run-path-4.0.1.dep.yml new file mode 100644 index 000000000..501c0f06a --- /dev/null +++ b/.licenses/npm/npm-run-path-4.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: npm-run-path +version: 4.0.1 +type: npm +summary: Get your PATH prepended with locally installed binaries +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/npmlog-4.1.2.dep.yml b/.licenses/npm/npmlog-4.1.2.dep.yml new file mode 100644 index 000000000..7143804d3 --- /dev/null +++ b/.licenses/npm/npmlog-4.1.2.dep.yml @@ -0,0 +1,26 @@ +--- +name: npmlog +version: 4.1.2 +type: npm +summary: logger for npm +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/npmlog-5.0.1.dep.yml b/.licenses/npm/npmlog-5.0.1.dep.yml new file mode 100644 index 000000000..794a890ac --- /dev/null +++ b/.licenses/npm/npmlog-5.0.1.dep.yml @@ -0,0 +1,26 @@ +--- +name: npmlog +version: 5.0.1 +type: npm +summary: logger for npm +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/number-is-nan.dep.yml b/.licenses/npm/number-is-nan.dep.yml new file mode 100644 index 000000000..0c21c9c35 --- /dev/null +++ b/.licenses/npm/number-is-nan.dep.yml @@ -0,0 +1,34 @@ +--- +name: number-is-nan +version: 1.0.1 +type: npm +summary: ES2015 Number.isNaN() ponyfill +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/nwsapi.dep.yml b/.licenses/npm/nwsapi.dep.yml new file mode 100644 index 000000000..f06c25c69 --- /dev/null +++ b/.licenses/npm/nwsapi.dep.yml @@ -0,0 +1,33 @@ +--- +name: nwsapi +version: 2.2.18 +type: npm +summary: Fast CSS Selectors API Engine +homepage: http://javascript.nwbox.com/nwsapi/ +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2007-2025 Diego Perini (http://www.iport.it/) + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/object-assign.dep.yml b/.licenses/npm/object-assign.dep.yml new file mode 100644 index 000000000..5284ab227 --- /dev/null +++ b/.licenses/npm/object-assign.dep.yml @@ -0,0 +1,34 @@ +--- +name: object-assign +version: 4.1.1 +type: npm +summary: ES2015 `Object.assign()` ponyfill +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/object-inspect.dep.yml b/.licenses/npm/object-inspect.dep.yml new file mode 100644 index 000000000..5e19bc1b5 --- /dev/null +++ b/.licenses/npm/object-inspect.dep.yml @@ -0,0 +1,51 @@ +--- +name: object-inspect +version: 1.13.4 +type: npm +summary: string representations of objects in node and the browser +homepage: https://github.com/inspect-js/object-inspect +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2013 James Halliday + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: readme.markdown + text: |- + MIT + + [package-url]: https://npmjs.org/package/object-inspect + [npm-version-svg]: https://versionbadg.es/inspect-js/object-inspect.svg + [deps-svg]: https://david-dm.org/inspect-js/object-inspect.svg + [deps-url]: https://david-dm.org/inspect-js/object-inspect + [dev-deps-svg]: https://david-dm.org/inspect-js/object-inspect/dev-status.svg + [dev-deps-url]: https://david-dm.org/inspect-js/object-inspect#info=devDependencies + [npm-badge-png]: https://nodei.co/npm/object-inspect.png?downloads=true&stars=true + [license-image]: https://img.shields.io/npm/l/object-inspect.svg + [license-url]: LICENSE + [downloads-image]: https://img.shields.io/npm/dm/object-inspect.svg + [downloads-url]: https://npm-stat.com/charts.html?package=object-inspect + [codecov-image]: https://codecov.io/gh/inspect-js/object-inspect/branch/main/graphs/badge.svg + [codecov-url]: https://app.codecov.io/gh/inspect-js/object-inspect/ + [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/object-inspect + [actions-url]: https://github.com/inspect-js/object-inspect/actions +notices: [] diff --git a/.licenses/npm/object-is.dep.yml b/.licenses/npm/object-is.dep.yml new file mode 100644 index 000000000..96577832d --- /dev/null +++ b/.licenses/npm/object-is.dep.yml @@ -0,0 +1,31 @@ +--- +name: object-is +version: 1.1.6 +type: npm +summary: ES2015-compliant shim for Object.is - differentiates between -0 and +0 +homepage: https://github.com/es-shims/object-is +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/object-keys.dep.yml b/.licenses/npm/object-keys.dep.yml new file mode 100644 index 000000000..95b7862b7 --- /dev/null +++ b/.licenses/npm/object-keys.dep.yml @@ -0,0 +1,32 @@ +--- +name: object-keys +version: 1.1.1 +type: npm +summary: An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (C) 2013 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/object.assign.dep.yml b/.licenses/npm/object.assign.dep.yml new file mode 100644 index 000000000..9e117e747 --- /dev/null +++ b/.licenses/npm/object.assign.dep.yml @@ -0,0 +1,32 @@ +--- +name: object.assign +version: 4.1.7 +type: npm +summary: ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/on-finished.dep.yml b/.licenses/npm/on-finished.dep.yml new file mode 100644 index 000000000..e7d68b12f --- /dev/null +++ b/.licenses/npm/on-finished.dep.yml @@ -0,0 +1,47 @@ +--- +name: on-finished +version: 2.4.1 +type: npm +summary: Execute a callback when a request closes, finishes, or errors +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2013 Jonathan Ong + Copyright (c) 2014 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/on-finished/master?label=ci + [ci-url]: https://github.com/jshttp/on-finished/actions/workflows/ci.yml + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/on-finished/master + [coveralls-url]: https://coveralls.io/r/jshttp/on-finished?branch=master + [node-image]: https://badgen.net/npm/node/on-finished + [node-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/on-finished + [npm-url]: https://npmjs.org/package/on-finished + [npm-version-image]: https://badgen.net/npm/v/on-finished +notices: [] diff --git a/.licenses/npm/once.dep.yml b/.licenses/npm/once.dep.yml new file mode 100644 index 000000000..af362acd0 --- /dev/null +++ b/.licenses/npm/once.dep.yml @@ -0,0 +1,26 @@ +--- +name: once +version: 1.4.0 +type: npm +summary: Run a function exactly one time +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/onetime.dep.yml b/.licenses/npm/onetime.dep.yml new file mode 100644 index 000000000..16c067649 --- /dev/null +++ b/.licenses/npm/onetime.dep.yml @@ -0,0 +1,20 @@ +--- +name: onetime +version: 5.1.2 +type: npm +summary: Ensure a function is only called once +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/open.dep.yml b/.licenses/npm/open.dep.yml new file mode 100644 index 000000000..69e632411 --- /dev/null +++ b/.licenses/npm/open.dep.yml @@ -0,0 +1,20 @@ +--- +name: open +version: 8.4.2 +type: npm +summary: Open stuff like URLs, files, executables. Cross-platform. +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/os-homedir.dep.yml b/.licenses/npm/os-homedir.dep.yml new file mode 100644 index 000000000..1ac2fd0c2 --- /dev/null +++ b/.licenses/npm/os-homedir.dep.yml @@ -0,0 +1,34 @@ +--- +name: os-homedir +version: 1.0.2 +type: npm +summary: Node.js 4 `os.homedir()` ponyfill +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/p-any.dep.yml b/.licenses/npm/p-any.dep.yml new file mode 100644 index 000000000..ca91181cb --- /dev/null +++ b/.licenses/npm/p-any.dep.yml @@ -0,0 +1,20 @@ +--- +name: p-any +version: 4.0.0 +type: npm +summary: Wait for any promise to be fulfilled +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-cancelable-2.1.1.dep.yml b/.licenses/npm/p-cancelable-2.1.1.dep.yml new file mode 100644 index 000000000..527037699 --- /dev/null +++ b/.licenses/npm/p-cancelable-2.1.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: p-cancelable +version: 2.1.1 +type: npm +summary: Create a promise that can be canceled +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-cancelable-3.0.0.dep.yml b/.licenses/npm/p-cancelable-3.0.0.dep.yml new file mode 100644 index 000000000..1a18b2326 --- /dev/null +++ b/.licenses/npm/p-cancelable-3.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: p-cancelable +version: 3.0.0 +type: npm +summary: Create a promise that can be canceled +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-debounce.dep.yml b/.licenses/npm/p-debounce.dep.yml new file mode 100644 index 000000000..95c59a5c8 --- /dev/null +++ b/.licenses/npm/p-debounce.dep.yml @@ -0,0 +1,22 @@ +--- +name: p-debounce +version: 2.1.0 +type: npm +summary: Debounce promise-returning & async functions +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/p-finally-1.0.0.dep.yml b/.licenses/npm/p-finally-1.0.0.dep.yml new file mode 100644 index 000000000..4c0f89ccf --- /dev/null +++ b/.licenses/npm/p-finally-1.0.0.dep.yml @@ -0,0 +1,35 @@ +--- +name: p-finally +version: 1.0.0 +type: npm +summary: "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless + of outcome" +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/p-finally-2.0.1.dep.yml b/.licenses/npm/p-finally-2.0.1.dep.yml new file mode 100644 index 000000000..88183aefc --- /dev/null +++ b/.licenses/npm/p-finally-2.0.1.dep.yml @@ -0,0 +1,21 @@ +--- +name: p-finally +version: 2.0.1 +type: npm +summary: "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless + of outcome" +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-limit.dep.yml b/.licenses/npm/p-limit.dep.yml new file mode 100644 index 000000000..f15787876 --- /dev/null +++ b/.licenses/npm/p-limit.dep.yml @@ -0,0 +1,20 @@ +--- +name: p-limit +version: 2.3.0 +type: npm +summary: Run multiple promise-returning & async functions with limited concurrency +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-locate-3.0.0.dep.yml b/.licenses/npm/p-locate-3.0.0.dep.yml new file mode 100644 index 000000000..317b9fc27 --- /dev/null +++ b/.licenses/npm/p-locate-3.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: p-locate +version: 3.0.0 +type: npm +summary: Get the first fulfilled promise that satisfies the provided testing function +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/p-locate-4.1.0.dep.yml b/.licenses/npm/p-locate-4.1.0.dep.yml new file mode 100644 index 000000000..8d39c176f --- /dev/null +++ b/.licenses/npm/p-locate-4.1.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: p-locate +version: 4.1.0 +type: npm +summary: Get the first fulfilled promise that satisfies the provided testing function +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/p-map.dep.yml b/.licenses/npm/p-map.dep.yml new file mode 100644 index 000000000..e466436ff --- /dev/null +++ b/.licenses/npm/p-map.dep.yml @@ -0,0 +1,20 @@ +--- +name: p-map +version: 4.0.0 +type: npm +summary: Map over promises concurrently +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-queue.dep.yml b/.licenses/npm/p-queue.dep.yml new file mode 100644 index 000000000..6ca00f7a6 --- /dev/null +++ b/.licenses/npm/p-queue.dep.yml @@ -0,0 +1,22 @@ +--- +name: p-queue +version: 2.4.2 +type: npm +summary: Promise queue with concurrency control +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/p-some.dep.yml b/.licenses/npm/p-some.dep.yml new file mode 100644 index 000000000..2051f2a18 --- /dev/null +++ b/.licenses/npm/p-some.dep.yml @@ -0,0 +1,20 @@ +--- +name: p-some +version: 6.0.0 +type: npm +summary: Wait for a specified number of promises to be fulfilled +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-timeout.dep.yml b/.licenses/npm/p-timeout.dep.yml new file mode 100644 index 000000000..35143ac02 --- /dev/null +++ b/.licenses/npm/p-timeout.dep.yml @@ -0,0 +1,20 @@ +--- +name: p-timeout +version: 5.1.0 +type: npm +summary: Timeout a promise after a specified amount of time +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/p-try.dep.yml b/.licenses/npm/p-try.dep.yml new file mode 100644 index 000000000..99e15c297 --- /dev/null +++ b/.licenses/npm/p-try.dep.yml @@ -0,0 +1,22 @@ +--- +name: p-try +version: 2.2.0 +type: npm +summary: "`Start a promise chain" +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/package-json-from-dist.dep.yml b/.licenses/npm/package-json-from-dist.dep.yml new file mode 100644 index 000000000..54e71eb0f --- /dev/null +++ b/.licenses/npm/package-json-from-dist.dep.yml @@ -0,0 +1,74 @@ +--- +name: package-json-from-dist +version: 1.0.1 +type: npm +summary: Load the local package.json from either src or dist folder +homepage: +license: other +licenses: +- sources: LICENSE.md + text: | + All packages under `src/` are licensed according to the terms in + their respective `LICENSE` or `LICENSE.md` files. + + The remainder of this project is licensed under the Blue Oak + Model License, as follows: + + ----- + + # Blue Oak Model License + + Version 1.0.0 + + ## Purpose + + This license gives everyone as much permission to work with + this software as possible, while protecting contributors + from liability. + + ## Acceptance + + In order to receive this license, you must agree to its + rules. The rules of this license are both obligations + under that agreement and conditions to your license. + You must not do anything with this software that triggers + a rule that you cannot or will not follow. + + ## Copyright + + Each contributor licenses you to do everything with this + software that would otherwise infringe that contributor's + copyright in it. + + ## Notices + + You must ensure that everyone who gets a copy of + any part of this software from you, with or without + changes, also gets the text of this license or a link to + . + + ## Excuse + + If anyone notifies you in writing that you have not + complied with [Notices](#notices), you can keep your + license by taking all practical steps to comply within 30 + days after the notice. If you do not do so, your license + ends immediately. + + ## Patent + + Each contributor licenses you to do everything with this + software that would otherwise infringe any patent claims + they can license or become able to license. + + ## Reliability + + No contributor can revoke this license. + + ## No Liability + + ***As far as the law allows, this software comes as is, + without any warranty or condition, and no contributor + will be liable to anyone for any damages related to this + software or this license, under any kind of legal claim.*** +notices: [] diff --git a/.licenses/npm/parent-module.dep.yml b/.licenses/npm/parent-module.dep.yml new file mode 100644 index 000000000..434b611e9 --- /dev/null +++ b/.licenses/npm/parent-module.dep.yml @@ -0,0 +1,22 @@ +--- +name: parent-module +version: 1.0.1 +type: npm +summary: Get the path of the parent module +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/parse-json.dep.yml b/.licenses/npm/parse-json.dep.yml new file mode 100644 index 000000000..57e95799a --- /dev/null +++ b/.licenses/npm/parse-json.dep.yml @@ -0,0 +1,20 @@ +--- +name: parse-json +version: 5.2.0 +type: npm +summary: Parse JSON with more helpful errors +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/parse5.dep.yml b/.licenses/npm/parse5.dep.yml new file mode 100644 index 000000000..4fb675965 --- /dev/null +++ b/.licenses/npm/parse5.dep.yml @@ -0,0 +1,30 @@ +--- +name: parse5 +version: 7.2.1 +type: npm +summary: HTML parser and serializer. +homepage: https://parse5.js.org +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/parseurl.dep.yml b/.licenses/npm/parseurl.dep.yml new file mode 100644 index 000000000..0670b336b --- /dev/null +++ b/.licenses/npm/parseurl.dep.yml @@ -0,0 +1,48 @@ +--- +name: parseurl +version: 1.3.3 +type: npm +summary: parse a url with memoization +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + + (The MIT License) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2014-2017 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [coveralls-image]: https://badgen.net/coveralls/c/github/pillarjs/parseurl/master + [coveralls-url]: https://coveralls.io/r/pillarjs/parseurl?branch=master + [node-image]: https://badgen.net/npm/node/parseurl + [node-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/parseurl + [npm-url]: https://npmjs.org/package/parseurl + [npm-version-image]: https://badgen.net/npm/v/parseurl + [travis-image]: https://badgen.net/travis/pillarjs/parseurl/master + [travis-url]: https://travis-ci.org/pillarjs/parseurl +notices: [] diff --git a/.licenses/npm/path-exists-3.0.0.dep.yml b/.licenses/npm/path-exists-3.0.0.dep.yml new file mode 100644 index 000000000..fbac11d6b --- /dev/null +++ b/.licenses/npm/path-exists-3.0.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: path-exists +version: 3.0.0 +type: npm +summary: Check if a path exists +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/path-exists-4.0.0.dep.yml b/.licenses/npm/path-exists-4.0.0.dep.yml new file mode 100644 index 000000000..3ee328e79 --- /dev/null +++ b/.licenses/npm/path-exists-4.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: path-exists +version: 4.0.0 +type: npm +summary: Check if a path exists +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/path-is-absolute.dep.yml b/.licenses/npm/path-is-absolute.dep.yml new file mode 100644 index 000000000..d8fbfdd1b --- /dev/null +++ b/.licenses/npm/path-is-absolute.dep.yml @@ -0,0 +1,34 @@ +--- +name: path-is-absolute +version: 1.0.1 +type: npm +summary: Node.js 0.12 path.isAbsolute() ponyfill +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/path-key-2.0.1.dep.yml b/.licenses/npm/path-key-2.0.1.dep.yml new file mode 100644 index 000000000..5d09eca02 --- /dev/null +++ b/.licenses/npm/path-key-2.0.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: path-key +version: 2.0.1 +type: npm +summary: Get the PATH environment variable key cross-platform +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/path-key-3.1.1.dep.yml b/.licenses/npm/path-key-3.1.1.dep.yml new file mode 100644 index 000000000..7351b52d1 --- /dev/null +++ b/.licenses/npm/path-key-3.1.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: path-key +version: 3.1.1 +type: npm +summary: Get the PATH environment variable key cross-platform +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/path-parse.dep.yml b/.licenses/npm/path-parse.dep.yml new file mode 100644 index 000000000..45b11ee3a --- /dev/null +++ b/.licenses/npm/path-parse.dep.yml @@ -0,0 +1,34 @@ +--- +name: path-parse +version: 1.0.7 +type: npm +summary: Node.js path.parse() ponyfill +homepage: https://github.com/jbgutierrez/path-parse#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Javier Blanco + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT © [Javier Blanco](http://jbgutierrez.info) +notices: [] diff --git a/.licenses/npm/path-root-regex.dep.yml b/.licenses/npm/path-root-regex.dep.yml new file mode 100644 index 000000000..5004e0587 --- /dev/null +++ b/.licenses/npm/path-root-regex.dep.yml @@ -0,0 +1,40 @@ +--- +name: path-root-regex +version: 0.1.2 +type: npm +summary: Regular expression for getting the root of a posix or windows filepath. +homepage: https://github.com/regexhq/path-root-regex +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT license](https://github.com/regexhq/path-root-regex/blob/master/LICENSE). + + *** + + _This file was generated by [verb](https://github.com/verbose/verb), v, on March 29, 2016._ +notices: [] diff --git a/.licenses/npm/path-root.dep.yml b/.licenses/npm/path-root.dep.yml new file mode 100644 index 000000000..2042014cd --- /dev/null +++ b/.licenses/npm/path-root.dep.yml @@ -0,0 +1,40 @@ +--- +name: path-root +version: 0.1.1 +type: npm +summary: Get the root of a posix or windows filepath. +homepage: https://github.com/jonschlinkert/path-root +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT license](https://github.com/jonschlinkert/path-root/blob/master/LICENSE). + + *** + + _This file was generated by [verb](https://github.com/verbose/verb), v, on March 29, 2016._ +notices: [] diff --git a/.licenses/npm/path-scurry.dep.yml b/.licenses/npm/path-scurry.dep.yml new file mode 100644 index 000000000..5f6d234c7 --- /dev/null +++ b/.licenses/npm/path-scurry.dep.yml @@ -0,0 +1,66 @@ +--- +name: path-scurry +version: 1.11.1 +type: npm +summary: walk paths fast and efficiently +homepage: +license: blueoak-1.0.0 +licenses: +- sources: LICENSE.md + text: | + # Blue Oak Model License + + Version 1.0.0 + + ## Purpose + + This license gives everyone as much permission to work with + this software as possible, while protecting contributors + from liability. + + ## Acceptance + + In order to receive this license, you must agree to its + rules. The rules of this license are both obligations + under that agreement and conditions to your license. + You must not do anything with this software that triggers + a rule that you cannot or will not follow. + + ## Copyright + + Each contributor licenses you to do everything with this + software that would otherwise infringe that contributor's + copyright in it. + + ## Notices + + You must ensure that everyone who gets a copy of + any part of this software from you, with or without + changes, also gets the text of this license or a link to + . + + ## Excuse + + If anyone notifies you in writing that you have not + complied with [Notices](#notices), you can keep your + license by taking all practical steps to comply within 30 + days after the notice. If you do not do so, your license + ends immediately. + + ## Patent + + Each contributor licenses you to do everything with this + software that would otherwise infringe any patent claims + they can license or become able to license. + + ## Reliability + + No contributor can revoke this license. + + ## No Liability + + ***As far as the law allows, this software comes as is, + without any warranty or condition, and no contributor + will be liable to anyone for any damages related to this + software or this license, under any kind of legal claim.*** +notices: [] diff --git a/.licenses/npm/path-to-regexp.dep.yml b/.licenses/npm/path-to-regexp.dep.yml new file mode 100644 index 000000000..360365b7e --- /dev/null +++ b/.licenses/npm/path-to-regexp.dep.yml @@ -0,0 +1,34 @@ +--- +name: path-to-regexp +version: 0.1.12 +type: npm +summary: Express style path to RegExp utility +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/path-type-3.0.0.dep.yml b/.licenses/npm/path-type-3.0.0.dep.yml new file mode 100644 index 000000000..bca294538 --- /dev/null +++ b/.licenses/npm/path-type-3.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: path-type +version: 3.0.0 +type: npm +summary: Check if a path is a file, directory, or symlink +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/path-type-4.0.0.dep.yml b/.licenses/npm/path-type-4.0.0.dep.yml new file mode 100644 index 000000000..05be3f4bf --- /dev/null +++ b/.licenses/npm/path-type-4.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: path-type +version: 4.0.0 +type: npm +summary: Check if a path is a file, directory, or symlink +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/pause-stream.dep.yml b/.licenses/npm/pause-stream.dep.yml new file mode 100644 index 000000000..c73c8f64b --- /dev/null +++ b/.licenses/npm/pause-stream.dep.yml @@ -0,0 +1,166 @@ +--- +name: pause-stream +version: 0.0.11 +type: npm +summary: a ThroughStream that strictly buffers all readable events when paused. +homepage: +license: other +licenses: +- sources: LICENSE + text: "Dual Licensed MIT and Apache 2\n\nThe MIT License\n\nCopyright (c) 2013 Dominic + Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining + a copy of this software and \nassociated documentation files (the \"Software\"), + to \ndeal in the Software without restriction, including \nwithout limitation + the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or + sell \ncopies of the Software, and to permit persons to whom \nthe Software is + furnished to do so, \nsubject to the following conditions:\n\nThe above copyright + notice and this permission notice \nshall be included in all copies or substantial + portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY + OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN + NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES + OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE.\n\n\n -----------------------------------------------------------------------\n\n + \ Apache License\n Version + 2.0, January 2004\n http://www.apache.org/licenses/\n\n + \ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n + \ \"License\" shall mean the terms and conditions for use, reproduction,\n + \ and distribution as defined by Sections 1 through 9 of this document.\n\n + \ \"Licensor\" shall mean the copyright owner or entity authorized by\n the + copyright owner that is granting the License.\n\n \"Legal Entity\" shall + mean the union of the acting entity and all\n other entities that control, + are controlled by, or are under common\n control with that entity. For the + purposes of this definition,\n \"control\" means (i) the power, direct or + indirect, to cause the\n direction or management of such entity, whether + by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more + of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n + \ \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising + permissions granted by this License.\n\n \"Source\" form shall mean the preferred + form for making modifications,\n including but not limited to software source + code, documentation\n source, and configuration files.\n\n \"Object\" + form shall mean any form resulting from mechanical\n transformation or translation + of a Source form, including but\n not limited to compiled object code, generated + documentation,\n and conversions to other media types.\n\n \"Work\" + shall mean the work of authorship, whether in Source or\n Object form, made + available under the License, as indicated by a\n copyright notice that is + included in or attached to the work\n (an example is provided in the Appendix + below).\n\n \"Derivative Works\" shall mean any work, whether in Source or + Object\n form, that is based on (or derived from) the Work and for which + the\n editorial revisions, annotations, elaborations, or other modifications\n + \ represent, as a whole, an original work of authorship. For the purposes\n + \ of this License, Derivative Works shall not include works that remain\n + \ separable from, or merely link (or bind by name) to the interfaces of,\n + \ the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean + any work of authorship, including\n the original version of the Work and + any modifications or additions\n to that Work or Derivative Works thereof, + that is intentionally\n submitted to Licensor for inclusion in the Work by + the copyright owner\n or by an individual or Legal Entity authorized to submit + on behalf of\n the copyright owner. For the purposes of this definition, + \"submitted\"\n means any form of electronic, verbal, or written communication + sent\n to the Licensor or its representatives, including but not limited + to\n communication on electronic mailing lists, source code control systems,\n + \ and issue tracking systems that are managed by, or on behalf of, the\n Licensor + for the purpose of discussing and improving the Work, but\n excluding communication + that is conspicuously marked or otherwise\n designated in writing by the + copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean + Licensor and any individual or Legal Entity\n on behalf of whom a Contribution + has been received by Licensor and\n subsequently incorporated within the + Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions + of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, + non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to + reproduce, prepare Derivative Works of,\n publicly display, publicly perform, + sublicense, and distribute the\n Work and such Derivative Works in Source + or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions + of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, + non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in + this section) patent license to make, have made,\n use, offer to sell, sell, + import, and otherwise transfer the Work,\n where such license applies only + to those patent claims licensable\n by such Contributor that are necessarily + infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n + \ with the Work to which such Contribution(s) was submitted. If You\n institute + patent litigation against any entity (including a\n cross-claim or counterclaim + in a lawsuit) alleging that the Work\n or a Contribution incorporated within + the Work constitutes direct\n or contributory patent infringement, then any + patent licenses\n granted to You under this License for that Work shall terminate\n + \ as of the date such litigation is filed.\n\n 4. Redistribution. You may + reproduce and distribute copies of the\n Work or Derivative Works thereof + in any medium, with or without\n modifications, and in Source or Object form, + provided that You\n meet the following conditions:\n\n (a) You must + give any other recipients of the Work or\n Derivative Works a copy of + this License; and\n\n (b) You must cause any modified files to carry prominent + notices\n stating that You changed the files; and\n\n (c) You must + retain, in the Source form of any Derivative Works\n that You distribute, + all copyright, patent, trademark, and\n attribution notices from the + Source form of the Work,\n excluding those notices that do not pertain + to any part of\n the Derivative Works; and\n\n (d) If the Work includes + a \"NOTICE\" text file as part of its\n distribution, then any Derivative + Works that You distribute must\n include a readable copy of the attribution + notices contained\n within such NOTICE file, excluding those notices + that do not\n pertain to any part of the Derivative Works, in at least + one\n of the following places: within a NOTICE text file distributed\n + \ as part of the Derivative Works; within the Source form or\n documentation, + if provided along with the Derivative Works; or,\n within a display generated + by the Derivative Works, if and\n wherever such third-party notices normally + appear. The contents\n of the NOTICE file are for informational purposes + only and\n do not modify the License. You may add Your own attribution\n + \ notices within Derivative Works that You distribute, alongside\n or + as an addendum to the NOTICE text from the Work, provided\n that such + additional attribution notices cannot be construed\n as modifying the + License.\n\n You may add Your own copyright statement to Your modifications + and\n may provide additional or different license terms and conditions\n + \ for use, reproduction, or distribution of Your modifications, or\n for + any such Derivative Works as a whole, provided Your use,\n reproduction, + and distribution of the Work otherwise complies with\n the conditions stated + in this License.\n\n 5. Submission of Contributions. Unless You explicitly state + otherwise,\n any Contribution intentionally submitted for inclusion in the + Work\n by You to the Licensor shall be under the terms and conditions of\n + \ this License, without any additional terms or conditions.\n Notwithstanding + the above, nothing herein shall supersede or modify\n the terms of any separate + license agreement you may have executed\n with Licensor regarding such Contributions.\n\n + \ 6. Trademarks. This License does not grant permission to use the trade\n names, + trademarks, service marks, or product names of the Licensor,\n except as + required for reasonable and customary use in describing the\n origin of the + Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. + Unless required by applicable law or\n agreed to in writing, Licensor provides + the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" + BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n + \ implied, including, without limitation, any warranties or conditions\n of + TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. + You are solely responsible for determining the\n appropriateness of using + or redistributing the Work and assume any\n risks associated with Your exercise + of permissions under this License.\n\n 8. Limitation of Liability. In no event + and under no legal theory,\n whether in tort (including negligence), contract, + or otherwise,\n unless required by applicable law (such as deliberate and + grossly\n negligent acts) or agreed to in writing, shall any Contributor + be\n liable to You for damages, including any direct, indirect, special,\n + \ incidental, or consequential damages of any character arising as a\n result + of this License or out of the use or inability to use the\n Work (including + but not limited to damages for loss of goodwill,\n work stoppage, computer + failure or malfunction, or any and all\n other commercial damages or losses), + even if such Contributor\n has been advised of the possibility of such damages.\n\n + \ 9. Accepting Warranty or Additional Liability. While redistributing\n the + Work or Derivative Works thereof, You may choose to offer,\n and charge a + fee for, acceptance of support, warranty, indemnity,\n or other liability + obligations and/or rights consistent with this\n License. However, in accepting + such obligations, You may act only\n on Your own behalf and on Your sole + responsibility, not on behalf\n of any other Contributor, and only if You + agree to indemnify,\n defend, and hold each Contributor harmless for any + liability\n incurred by, or claims asserted against, such Contributor by + reason\n of your accepting any such warranty or additional liability.\n\n + \ END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License + to your work.\n\n To apply the Apache License to your work, attach the following\n + \ boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced + with your own identifying information. (Don't include\n the brackets!) The + text should be enclosed in the appropriate\n comment syntax for the file + format. We also recommend that a\n file or class name and description of + purpose be included on the\n same \"printed page\" as the copyright notice + for easier\n identification within third-party archives.\n\n Copyright + (c) 2013 Dominic Tarr\n\n Licensed under the Apache License, Version 2.0 (the + \"License\");\n you may not use this file except in compliance with the License.\n + \ You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n + \ Unless required by applicable law or agreed to in writing, software\n distributed + under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES + OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for + the specific language governing permissions and\n limitations under the License." +notices: [] diff --git a/.licenses/npm/pend.dep.yml b/.licenses/npm/pend.dep.yml new file mode 100644 index 000000000..53876fff9 --- /dev/null +++ b/.licenses/npm/pend.dep.yml @@ -0,0 +1,34 @@ +--- +name: pend +version: 1.2.0 +type: npm +summary: dead-simple optimistic async helper +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (Expat) + + Copyright (c) 2014 Andrew Kelley + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/perfect-scrollbar.dep.yml b/.licenses/npm/perfect-scrollbar.dep.yml new file mode 100644 index 000000000..bcabbff9d --- /dev/null +++ b/.licenses/npm/perfect-scrollbar.dep.yml @@ -0,0 +1,32 @@ +--- +name: perfect-scrollbar +version: 1.5.5 +type: npm +summary: Minimalistic but perfect custom scrollbar plugin +homepage: https://perfectscrollbar.com/ +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2012-2019 Hyunje Jun, MDBootstrap.com and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/picocolors.dep.yml b/.licenses/npm/picocolors.dep.yml new file mode 100644 index 000000000..4db28cfb1 --- /dev/null +++ b/.licenses/npm/picocolors.dep.yml @@ -0,0 +1,27 @@ +--- +name: picocolors +version: 1.1.1 +type: npm +summary: The tiniest and the fastest library for terminal output formatting with ANSI + colors +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + ISC License + + Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/picomatch.dep.yml b/.licenses/npm/picomatch.dep.yml new file mode 100644 index 000000000..fd4256295 --- /dev/null +++ b/.licenses/npm/picomatch.dep.yml @@ -0,0 +1,38 @@ +--- +name: picomatch +version: 2.3.1 +type: npm +summary: Blazing fast and accurate glob matcher written in JavaScript, with no dependencies + and full support for standard and extended Bash glob features, including braces, + extglobs, POSIX brackets, and regular expressions. +homepage: https://github.com/micromatch/picomatch +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2017-present, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2017-present, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). +notices: [] diff --git a/.licenses/npm/pify-2.3.0.dep.yml b/.licenses/npm/pify-2.3.0.dep.yml new file mode 100644 index 000000000..9db949b92 --- /dev/null +++ b/.licenses/npm/pify-2.3.0.dep.yml @@ -0,0 +1,34 @@ +--- +name: pify +version: 2.3.0 +type: npm +summary: Promisify a callback-style function +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/pify-3.0.0.dep.yml b/.licenses/npm/pify-3.0.0.dep.yml new file mode 100644 index 000000000..aae97163b --- /dev/null +++ b/.licenses/npm/pify-3.0.0.dep.yml @@ -0,0 +1,22 @@ +--- +name: pify +version: 3.0.0 +type: npm +summary: Promisify a callback-style function +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/pinkie-promise.dep.yml b/.licenses/npm/pinkie-promise.dep.yml new file mode 100644 index 000000000..945393896 --- /dev/null +++ b/.licenses/npm/pinkie-promise.dep.yml @@ -0,0 +1,34 @@ +--- +name: pinkie-promise +version: 2.0.1 +type: npm +summary: ES2015 Promise ponyfill +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Vsevolod Strukchinsky (github.com/floatdrop) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Vsevolod Strukchinsky](http://github.com/floatdrop) +notices: [] diff --git a/.licenses/npm/pinkie.dep.yml b/.licenses/npm/pinkie.dep.yml new file mode 100644 index 000000000..b6e70961d --- /dev/null +++ b/.licenses/npm/pinkie.dep.yml @@ -0,0 +1,34 @@ +--- +name: pinkie +version: 2.0.4 +type: npm +summary: Itty bitty little widdle twinkie pinkie ES2015 Promise implementation +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Vsevolod Strukchinsky (github.com/floatdrop) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Vsevolod Strukchinsky](http://github.com/floatdrop) +notices: [] diff --git a/.licenses/npm/pkg-up.dep.yml b/.licenses/npm/pkg-up.dep.yml new file mode 100644 index 000000000..0e4526783 --- /dev/null +++ b/.licenses/npm/pkg-up.dep.yml @@ -0,0 +1,22 @@ +--- +name: pkg-up +version: 3.1.0 +type: npm +summary: Find the closest package.json file +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/please-upgrade-node.dep.yml b/.licenses/npm/please-upgrade-node.dep.yml new file mode 100644 index 000000000..b98c9f5b8 --- /dev/null +++ b/.licenses/npm/please-upgrade-node.dep.yml @@ -0,0 +1,27 @@ +--- +name: please-upgrade-node +version: 3.2.0 +type: npm +summary: Displays a beginner-friendly message telling your user to upgrade their version + of Node +homepage: https://github.com/typicode/please-upgrade-node#readme +license: mit +licenses: +- sources: LICENSE + text: "MIT License\n\nCopyright (c) 2017 \n\nPermission is hereby granted, free + of charge, to any person obtaining a copy\nof this software and associated documentation + files (the \"Software\"), to deal\nin the Software without restriction, including + without limitation the rights\nto use, copy, modify, merge, publish, distribute, + sublicense, and/or sell\ncopies of the Software, and to permit persons to whom + the Software is\nfurnished to do so, subject to the following conditions:\n\nThe + above copyright notice and this permission notice shall be included in all\ncopies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO + THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES + OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE\nSOFTWARE.\n" +- sources: README.md + text: MIT - [Typicode :cactus:](https://github.com/typicode) - [Patreon](https://patreon.com/typicode) +notices: [] diff --git a/.licenses/npm/possible-typed-array-names.dep.yml b/.licenses/npm/possible-typed-array-names.dep.yml new file mode 100644 index 000000000..9e8bb3ab0 --- /dev/null +++ b/.licenses/npm/possible-typed-array-names.dep.yml @@ -0,0 +1,32 @@ +--- +name: possible-typed-array-names +version: 1.1.0 +type: npm +summary: A simple list of possible Typed Array names. +homepage: https://github.com/ljharb/possible-typed-array-names#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/prebuild-install-5.3.6.dep.yml b/.licenses/npm/prebuild-install-5.3.6.dep.yml new file mode 100644 index 000000000..dfe4926e9 --- /dev/null +++ b/.licenses/npm/prebuild-install-5.3.6.dep.yml @@ -0,0 +1,35 @@ +--- +name: prebuild-install +version: 5.3.6 +type: npm +summary: A command line tool to easily install prebuilt binaries for multiple version + of node/iojs on a specific platform +homepage: https://github.com/prebuild/prebuild-install +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/prebuild-install-6.1.4.dep.yml b/.licenses/npm/prebuild-install-6.1.4.dep.yml new file mode 100644 index 000000000..ddd469b36 --- /dev/null +++ b/.licenses/npm/prebuild-install-6.1.4.dep.yml @@ -0,0 +1,35 @@ +--- +name: prebuild-install +version: 6.1.4 +type: npm +summary: A command line tool to easily install prebuilt binaries for multiple version + of node/iojs on a specific platform +homepage: https://github.com/prebuild/prebuild-install +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/process-nextick-args.dep.yml b/.licenses/npm/process-nextick-args.dep.yml new file mode 100644 index 000000000..4d77ee846 --- /dev/null +++ b/.licenses/npm/process-nextick-args.dep.yml @@ -0,0 +1,30 @@ +--- +name: process-nextick-args +version: 2.0.1 +type: npm +summary: process.nextTick but always with args +homepage: https://github.com/calvinmetcalf/process-nextick-args +license: mit +licenses: +- sources: license.md + text: | + # Copyright (c) 2015 Calvin Metcalf + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + **THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE.** +notices: [] diff --git a/.licenses/npm/process.dep.yml b/.licenses/npm/process.dep.yml new file mode 100644 index 000000000..7649512e3 --- /dev/null +++ b/.licenses/npm/process.dep.yml @@ -0,0 +1,33 @@ +--- +name: process +version: 0.11.10 +type: npm +summary: process information for node.js and browsers +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2013 Roman Shtylman + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/progress.dep.yml b/.licenses/npm/progress.dep.yml new file mode 100644 index 000000000..c1d197523 --- /dev/null +++ b/.licenses/npm/progress.dep.yml @@ -0,0 +1,35 @@ +--- +name: progress +version: 2.0.3 +type: npm +summary: Flexible ascii progress bar +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2017 TJ Holowaychuk + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/prop-types.dep.yml b/.licenses/npm/prop-types.dep.yml new file mode 100644 index 000000000..061c80893 --- /dev/null +++ b/.licenses/npm/prop-types.dep.yml @@ -0,0 +1,34 @@ +--- +name: prop-types +version: 15.8.1 +type: npm +summary: Runtime type checking for React props and similar objects. +homepage: https://facebook.github.io/react/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2013-present, Facebook, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: prop-types is [MIT licensed](./LICENSE). +notices: [] diff --git a/.licenses/npm/property-information.dep.yml b/.licenses/npm/property-information.dep.yml new file mode 100644 index 000000000..3486dee4d --- /dev/null +++ b/.licenses/npm/property-information.dep.yml @@ -0,0 +1,87 @@ +--- +name: property-information +version: 6.5.0 +type: npm +summary: Info on the properties and attributes of the web platform +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + Derivative work based on [React][source] licensed under + [MIT][source-license], © Facebook, Inc. + + [build-badge]: https://github.com/wooorm/property-information/workflows/main/badge.svg + + [build]: https://github.com/wooorm/property-information/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/property-information.svg + + [coverage]: https://codecov.io/github/wooorm/property-information + + [downloads-badge]: https://img.shields.io/npm/dm/property-information.svg + + [downloads]: https://www.npmjs.com/package/property-information + + [size-badge]: https://img.shields.io/bundlephobia/minzip/property-information.svg + + [size]: https://bundlephobia.com/result?p=property-information + + [npm]: https://docs.npmjs.com/cli/install + + [esmsh]: https://esm.sh + + [author]: https://wooorm.com + + [license]: license + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [typescript]: https://www.typescriptlang.org + + [contribute]: https://opensource.guide/how-to-contribute/ + + [source]: https://github.com/facebook/react/blob/8ec2ed4089/packages/react-dom/src/shared/DOMProperty.js + + [source-license]: https://github.com/facebook/react/blob/8ec2ed4089/LICENSE + + [data]: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset + + [namespace]: https://github.com/wooorm/web-namespaces + + [info]: #info + + [schema]: #schema + + [normalize]: #normalizename + + [react]: https://github.com/facebook/react + + [hast]: https://github.com/syntax-tree/hast#propertyname +notices: [] diff --git a/.licenses/npm/protobufjs.dep.yml b/.licenses/npm/protobufjs.dep.yml new file mode 100644 index 000000000..2093b4d12 --- /dev/null +++ b/.licenses/npm/protobufjs.dep.yml @@ -0,0 +1,50 @@ +--- +name: protobufjs +version: 7.4.0 +type: npm +summary: Protocol Buffers for JavaScript (& TypeScript). +homepage: https://protobufjs.github.io/protobuf.js/ +license: other +licenses: +- sources: LICENSE + text: | + This license applies to all parts of protobuf.js except those files + either explicitly including or referencing a different license or + located in a directory containing a different LICENSE file. + + --- + + Copyright (c) 2016, Daniel Wirtz All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of its author, nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + --- + + Code generated by the command line utilities is owned by the owner + of the input file used when generating it. This code is not + standalone and requires a support library to be linked with it. This + support library is itself covered by the above license. +notices: [] diff --git a/.licenses/npm/proxy-addr.dep.yml b/.licenses/npm/proxy-addr.dep.yml new file mode 100644 index 000000000..92a568286 --- /dev/null +++ b/.licenses/npm/proxy-addr.dep.yml @@ -0,0 +1,46 @@ +--- +name: proxy-addr +version: 2.0.7 +type: npm +summary: Determine address of proxied request +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/proxy-addr/master?label=ci + [ci-url]: https://github.com/jshttp/proxy-addr/actions?query=workflow%3Aci + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/proxy-addr/master + [coveralls-url]: https://coveralls.io/r/jshttp/proxy-addr?branch=master + [node-image]: https://badgen.net/npm/node/proxy-addr + [node-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/proxy-addr + [npm-url]: https://npmjs.org/package/proxy-addr + [npm-version-image]: https://badgen.net/npm/v/proxy-addr +notices: [] diff --git a/.licenses/npm/proxy-from-env.dep.yml b/.licenses/npm/proxy-from-env.dep.yml new file mode 100644 index 000000000..df6c7f391 --- /dev/null +++ b/.licenses/npm/proxy-from-env.dep.yml @@ -0,0 +1,32 @@ +--- +name: proxy-from-env +version: 1.1.0 +type: npm +summary: Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY + (e.g. HTTP_PROXY) and NO_PROXY environment variables. +homepage: https://github.com/Rob--W/proxy-from-env#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License + + Copyright (C) 2016-2018 Rob Wu + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/ps-tree.dep.yml b/.licenses/npm/ps-tree.dep.yml new file mode 100644 index 000000000..2e63e4d6b --- /dev/null +++ b/.licenses/npm/ps-tree.dep.yml @@ -0,0 +1,32 @@ +--- +name: ps-tree +version: 1.2.0 +type: npm +summary: Get all children of a pid +homepage: http://github.com/indexzero/ps-tree#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Domenic Tarr, Charlie Robbins & the Contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/pseudomap.dep.yml b/.licenses/npm/pseudomap.dep.yml new file mode 100644 index 000000000..50ed4e98d --- /dev/null +++ b/.licenses/npm/pseudomap.dep.yml @@ -0,0 +1,27 @@ +--- +name: pseudomap +version: 1.0.2 +type: npm +summary: A thing that is a lot like ES6 `Map`, but without iterators, for use in environments + where `for..of` syntax and `Map` are not available. +homepage: https://github.com/isaacs/pseudomap#readme +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/psl.dep.yml b/.licenses/npm/psl.dep.yml new file mode 100644 index 000000000..6491b1406 --- /dev/null +++ b/.licenses/npm/psl.dep.yml @@ -0,0 +1,43 @@ +--- +name: psl +version: 1.15.0 +type: npm +summary: Domain name parser based on the Public Suffix List +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2017 Lupo Montero lupomontero@gmail.com + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + The MIT License (MIT) + + Copyright (c) 2014-2024 Lupo Montero + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/public-ip.dep.yml b/.licenses/npm/public-ip.dep.yml new file mode 100644 index 000000000..08522ea4a --- /dev/null +++ b/.licenses/npm/public-ip.dep.yml @@ -0,0 +1,20 @@ +--- +name: public-ip +version: 5.0.0 +type: npm +summary: Get your public IP address — very fast! +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/pump-1.0.3.dep.yml b/.licenses/npm/pump-1.0.3.dep.yml new file mode 100644 index 000000000..f95067295 --- /dev/null +++ b/.licenses/npm/pump-1.0.3.dep.yml @@ -0,0 +1,34 @@ +--- +name: pump +version: 1.0.3 +type: npm +summary: pipe streams together and close all of them if one of them closes +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/pump-3.0.2.dep.yml b/.licenses/npm/pump-3.0.2.dep.yml new file mode 100644 index 000000000..9bf718c09 --- /dev/null +++ b/.licenses/npm/pump-3.0.2.dep.yml @@ -0,0 +1,34 @@ +--- +name: pump +version: 3.0.2 +type: npm +summary: pipe streams together and close all of them if one of them closes +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/punycode.dep.yml b/.licenses/npm/punycode.dep.yml new file mode 100644 index 000000000..a1057e5d1 --- /dev/null +++ b/.licenses/npm/punycode.dep.yml @@ -0,0 +1,34 @@ +--- +name: punycode +version: 2.3.1 +type: npm +summary: A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, + and works on nearly all JavaScript platforms. +homepage: https://mths.be/punycode +license: mit +licenses: +- sources: LICENSE-MIT.txt + text: | + Copyright Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: Punycode.js is available under the [MIT](https://mths.be/mit) license. +notices: [] diff --git a/.licenses/npm/qs-6.13.0.dep.yml b/.licenses/npm/qs-6.13.0.dep.yml new file mode 100644 index 000000000..d017dcf47 --- /dev/null +++ b/.licenses/npm/qs-6.13.0.dep.yml @@ -0,0 +1,40 @@ +--- +name: qs +version: 6.13.0 +type: npm +summary: A querystring parser that supports nesting and arrays, with a depth limit +homepage: https://github.com/ljharb/qs +license: bsd-3-clause +licenses: +- sources: LICENSE.md + text: | + BSD 3-Clause License + + Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/qs-6.14.0.dep.yml b/.licenses/npm/qs-6.14.0.dep.yml new file mode 100644 index 000000000..a644bc59f --- /dev/null +++ b/.licenses/npm/qs-6.14.0.dep.yml @@ -0,0 +1,40 @@ +--- +name: qs +version: 6.14.0 +type: npm +summary: A querystring parser that supports nesting and arrays, with a depth limit +homepage: https://github.com/ljharb/qs +license: bsd-3-clause +licenses: +- sources: LICENSE.md + text: | + BSD 3-Clause License + + Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/query-string.dep.yml b/.licenses/npm/query-string.dep.yml new file mode 100644 index 000000000..03a2db35e --- /dev/null +++ b/.licenses/npm/query-string.dep.yml @@ -0,0 +1,20 @@ +--- +name: query-string +version: 7.1.3 +type: npm +summary: Parse and stringify URL query strings +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (http://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/querystringify.dep.yml b/.licenses/npm/querystringify.dep.yml new file mode 100644 index 000000000..a9e82b8ae --- /dev/null +++ b/.licenses/npm/querystringify.dep.yml @@ -0,0 +1,36 @@ +--- +name: querystringify +version: 2.2.0 +type: npm +summary: Querystringify - Small, simple but powerful query string parser. +homepage: https://github.com/unshiftio/querystringify +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: MIT +notices: [] +... diff --git a/.licenses/npm/quick-lru.dep.yml b/.licenses/npm/quick-lru.dep.yml new file mode 100644 index 000000000..0284be273 --- /dev/null +++ b/.licenses/npm/quick-lru.dep.yml @@ -0,0 +1,20 @@ +--- +name: quick-lru +version: 5.1.1 +type: npm +summary: Simple “Least Recently Used” (LRU) cache +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/range-parser.dep.yml b/.licenses/npm/range-parser.dep.yml new file mode 100644 index 000000000..15f5314fa --- /dev/null +++ b/.licenses/npm/range-parser.dep.yml @@ -0,0 +1,47 @@ +--- +name: range-parser +version: 1.2.1 +type: npm +summary: Range header field string parser +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012-2014 TJ Holowaychuk + Copyright (c) 2015-2016 Douglas Christopher Wilson + Copyright (c) 2014-2022 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/raw-body.svg + [npm-url]: https://npmjs.org/package/raw-body + [node-version-image]: https://img.shields.io/node/v/raw-body.svg + [node-version-url]: https://nodejs.org/en/download/ + [coveralls-image]: https://img.shields.io/coveralls/stream-utils/raw-body/master.svg + [coveralls-url]: https://coveralls.io/r/stream-utils/raw-body?branch=master + [downloads-image]: https://img.shields.io/npm/dm/raw-body.svg + [downloads-url]: https://npmjs.org/package/raw-body + [github-actions-ci-image]: https://img.shields.io/github/actions/workflow/status/stream-utils/raw-body/ci.yml?branch=master&label=ci + [github-actions-ci-url]: https://github.com/jshttp/stream-utils/raw-body?query=workflow%3Aci +notices: [] diff --git a/.licenses/npm/rc.dep.yml b/.licenses/npm/rc.dep.yml new file mode 100644 index 000000000..d4d7c6f5c --- /dev/null +++ b/.licenses/npm/rc.dep.yml @@ -0,0 +1,64 @@ +--- +name: rc +version: 1.2.8 +type: npm +summary: hardwired configuration loader +homepage: +license: other +licenses: +- sources: LICENSE.APACHE2 + text: | + Apache License, Version 2.0 + + Copyright (c) 2011 Dominic Tarr + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +- sources: LICENSE.BSD + text: "Copyright (c) 2013, Dominic Tarr\nAll rights reserved.\n\nRedistribution + and use in source and binary forms, with or without\nmodification, are permitted + provided that the following conditions are met: \n\n1. Redistributions of source + code must retain the above copyright notice, this\n list of conditions and the + following disclaimer. \n2. Redistributions in binary form must reproduce the above + copyright notice,\n this list of conditions and the following disclaimer in + the documentation\n and/or other materials provided with the distribution. \n\nTHIS + SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO + EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE.\n\nThe views and conclusions contained in the software and documentation + are those\nof the authors and should not be interpreted as representing official + policies, \neither expressed or implied, of the FreeBSD Project.\n" +- sources: LICENSE.MIT + text: "The MIT License\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby + granted, free of charge, \nto any person obtaining a copy of this software and + \nassociated documentation files (the \"Software\"), to \ndeal in the Software + without restriction, including \nwithout limitation the rights to use, copy, modify, + \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, + and to permit persons to whom \nthe Software is furnished to do so, \nsubject + to the following conditions:\n\nThe above copyright notice and this permission + notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE + SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" +- sources: README.md + text: Multi-licensed under the two-clause BSD License, MIT License, or Apache License, + version 2.0 +notices: [] diff --git a/.licenses/npm/react-autosize-textarea.dep.yml b/.licenses/npm/react-autosize-textarea.dep.yml new file mode 100644 index 000000000..8f92efaab --- /dev/null +++ b/.licenses/npm/react-autosize-textarea.dep.yml @@ -0,0 +1,32 @@ +--- +name: react-autosize-textarea +version: 7.1.0 +type: npm +summary: replacement for built-in textarea which auto resizes itself +homepage: https://github.com/buildo/react-autosize-textarea +license: mit +licenses: +- sources: LICENSE.txt + text: | + The MIT License (MIT) + + Copyright (c) 2016 buildo s.r.l.s. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/react-disable.dep.yml b/.licenses/npm/react-disable.dep.yml new file mode 100644 index 000000000..162f25292 --- /dev/null +++ b/.licenses/npm/react-disable.dep.yml @@ -0,0 +1,32 @@ +--- +name: react-disable +version: 0.1.1 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + MIT License + + Copyright (c) 2019 Kristijan Ristovski + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/react-dom.dep.yml b/.licenses/npm/react-dom.dep.yml new file mode 100644 index 000000000..6215a857a --- /dev/null +++ b/.licenses/npm/react-dom.dep.yml @@ -0,0 +1,32 @@ +--- +name: react-dom +version: 18.3.1 +type: npm +summary: React package for working with the DOM. +homepage: https://reactjs.org/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Facebook, Inc. and its affiliates. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/react-is-16.13.1.dep.yml b/.licenses/npm/react-is-16.13.1.dep.yml new file mode 100644 index 000000000..a67d5bad6 --- /dev/null +++ b/.licenses/npm/react-is-16.13.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: react-is +version: 16.13.1 +type: npm +summary: Brand checking of React Elements. +homepage: https://reactjs.org/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Facebook, Inc. and its affiliates. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/react-is-18.3.1.dep.yml b/.licenses/npm/react-is-18.3.1.dep.yml new file mode 100644 index 000000000..1a5c6b50f --- /dev/null +++ b/.licenses/npm/react-is-18.3.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: react-is +version: 18.3.1 +type: npm +summary: Brand checking of React Elements. +homepage: https://reactjs.org/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Facebook, Inc. and its affiliates. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/react-markdown.dep.yml b/.licenses/npm/react-markdown.dep.yml new file mode 100644 index 000000000..b627c7aef --- /dev/null +++ b/.licenses/npm/react-markdown.dep.yml @@ -0,0 +1,145 @@ +--- +name: react-markdown +version: 8.0.7 +type: npm +summary: React component to render markdown +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) 2015 Espen Hovlandsdal + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Espen Hovlandsdal][author] + + [build-badge]: https://github.com/remarkjs/react-markdown/workflows/main/badge.svg + + [build]: https://github.com/remarkjs/react-markdown/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/react-markdown.svg + + [coverage]: https://codecov.io/github/remarkjs/react-markdown + + [downloads-badge]: https://img.shields.io/npm/dm/react-markdown.svg + + [downloads]: https://www.npmjs.com/package/react-markdown + + [size-badge]: https://img.shields.io/bundlephobia/minzip/react-markdown.svg + + [size]: https://bundlephobia.com/result?p=react-markdown + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/remarkjs/remark/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esmsh]: https://esm.sh + + [health]: https://github.com/remarkjs/.github + + [contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md + + [support]: https://github.com/remarkjs/.github/blob/HEAD/support.md + + [coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md + + [license]: license + + [author]: https://espen.codes/ + + [micromark]: https://github.com/micromark/micromark + + [remark]: https://github.com/remarkjs/remark + + [demo]: https://remarkjs.github.io/react-markdown/ + + [position]: https://github.com/syntax-tree/unist#position + + [gfm]: https://github.com/remarkjs/remark-gfm + + [math]: https://github.com/remarkjs/remark-math + + [katex]: https://github.com/remarkjs/remark-math/tree/main/packages/rehype-katex + + [raw]: https://github.com/rehypejs/rehype-raw + + [sanitize]: https://github.com/rehypejs/rehype-sanitize + + [remark-plugins]: https://github.com/remarkjs/remark/blob/main/doc/plugins.md#list-of-plugins + + [rehype-plugins]: https://github.com/rehypejs/rehype/blob/main/doc/plugins.md#list-of-plugins + + [remark-rehype]: https://github.com/remarkjs/remark-rehype + + [awesome-remark]: https://github.com/remarkjs/awesome-remark + + [awesome-rehype]: https://github.com/rehypejs/awesome-rehype + + [remark-plugin]: https://github.com/topics/remark-plugin + + [rehype-plugin]: https://github.com/topics/rehype-plugin + + [cm-html]: https://spec.commonmark.org/0.30/#html-blocks + + [uri]: https://github.com/remarkjs/react-markdown/blob/main/lib/uri-transformer.js + + [uri-transformer]: #uritransformer + + [react]: http://reactjs.org + + [cheat]: https://commonmark.org/help/ + + [unified]: https://github.com/unifiedjs/unified + + [rehype]: https://github.com/rehypejs/rehype + + [react-remark]: https://github.com/remarkjs/react-remark + + [rehype-react]: https://github.com/rehypejs/rehype-react + + [mdx]: https://github.com/mdx-js/mdx/ + + [typescript]: https://www.typescriptlang.org + + [security]: #security + + [components]: #appendix-b-components + + [plugins]: #plugins + + [syntax]: #syntax + + [react-syntax-highlighter]: https://github.com/react-syntax-highlighter/react-syntax-highlighter + + [conor]: https://github.com/conorhastings + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c +notices: [] diff --git a/.licenses/npm/react-perfect-scrollbar.dep.yml b/.licenses/npm/react-perfect-scrollbar.dep.yml new file mode 100644 index 000000000..f6b559049 --- /dev/null +++ b/.licenses/npm/react-perfect-scrollbar.dep.yml @@ -0,0 +1,34 @@ +--- +name: react-perfect-scrollbar +version: 1.5.8 +type: npm +summary: A react wrapper for perfect-scrollbar +homepage: https://github.com/goldenyz/react-perfect-scrollbar +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2016 Allen Yang + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/react-select.dep.yml b/.licenses/npm/react-select.dep.yml new file mode 100644 index 000000000..1ffba3bdf --- /dev/null +++ b/.licenses/npm/react-select.dep.yml @@ -0,0 +1,34 @@ +--- +name: react-select +version: 5.10.1 +type: npm +summary: A Select control built with and for ReactJS +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2022 Jed Watson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT Licensed. Copyright (c) Jed Watson 2022. +notices: [] diff --git a/.licenses/npm/react-tabs.dep.yml b/.licenses/npm/react-tabs.dep.yml new file mode 100644 index 000000000..b55fb9448 --- /dev/null +++ b/.licenses/npm/react-tabs.dep.yml @@ -0,0 +1,32 @@ +--- +name: react-tabs +version: 6.1.0 +type: npm +summary: An accessible and easy tab component for ReactJS +homepage: https://github.com/reactjs/react-tabs +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Matt Zabriskie and Daniel Tschinder + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/react-tooltip.dep.yml b/.licenses/npm/react-tooltip.dep.yml new file mode 100644 index 000000000..1f09b3a26 --- /dev/null +++ b/.licenses/npm/react-tooltip.dep.yml @@ -0,0 +1,36 @@ +--- +name: react-tooltip +version: 4.5.1 +type: npm +summary: react tooltip component +homepage: https://github.com/ReactTooltip/react-tooltip#readme +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Wang Zixiao + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: MIT +notices: [] +... diff --git a/.licenses/npm/react-transition-group.dep.yml b/.licenses/npm/react-transition-group.dep.yml new file mode 100644 index 000000000..022d9c18e --- /dev/null +++ b/.licenses/npm/react-transition-group.dep.yml @@ -0,0 +1,41 @@ +--- +name: react-transition-group +version: 4.4.5 +type: npm +summary: A react component toolset for managing animations +homepage: https://github.com/reactjs/react-transition-group#readme +license: other +licenses: +- sources: LICENSE + text: | + BSD 3-Clause License + + Copyright (c) 2018, React Community + Forked from React (https://github.com/facebook/react) Copyright 2013-present, Facebook, Inc. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/react-virtuoso.dep.yml b/.licenses/npm/react-virtuoso.dep.yml new file mode 100644 index 000000000..d96abda56 --- /dev/null +++ b/.licenses/npm/react-virtuoso.dep.yml @@ -0,0 +1,34 @@ +--- +name: react-virtuoso +version: 2.19.1 +type: npm +summary: +homepage: https://virtuoso.dev/ +license: mit +licenses: +- sources: LICENSE + text: |- + MIT License + + Copyright (c) 2020 Petyo Ivanov + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT License. +notices: [] diff --git a/.licenses/npm/react-window.dep.yml b/.licenses/npm/react-window.dep.yml new file mode 100644 index 000000000..24242f23b --- /dev/null +++ b/.licenses/npm/react-window.dep.yml @@ -0,0 +1,35 @@ +--- +name: react-window +version: 1.8.11 +type: npm +summary: React components for efficiently rendering large, scrollable lists and tabular + data +homepage: http://react-window.now.sh/ +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2018 Brian Vaughn + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT © [bvaughn](https://github.com/bvaughn) +notices: [] diff --git a/.licenses/npm/react.dep.yml b/.licenses/npm/react.dep.yml new file mode 100644 index 000000000..d6d68c814 --- /dev/null +++ b/.licenses/npm/react.dep.yml @@ -0,0 +1,32 @@ +--- +name: react +version: 18.3.1 +type: npm +summary: React is a JavaScript library for building user interfaces. +homepage: https://reactjs.org/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Facebook, Inc. and its affiliates. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/readable-stream-2.3.8.dep.yml b/.licenses/npm/readable-stream-2.3.8.dep.yml new file mode 100644 index 000000000..7cf8551a4 --- /dev/null +++ b/.licenses/npm/readable-stream-2.3.8.dep.yml @@ -0,0 +1,58 @@ +--- +name: readable-stream +version: 2.3.8 +type: npm +summary: Streams3, a user-land copy of the stream library from Node.js +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Node.js is licensed for use as follows: + + """ + Copyright Node.js contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ + + This license applies to parts of Node.js originating from the + https://github.com/joyent/node repository: + + """ + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ +notices: [] diff --git a/.licenses/npm/readable-stream-3.6.2.dep.yml b/.licenses/npm/readable-stream-3.6.2.dep.yml new file mode 100644 index 000000000..ffe196f6e --- /dev/null +++ b/.licenses/npm/readable-stream-3.6.2.dep.yml @@ -0,0 +1,58 @@ +--- +name: readable-stream +version: 3.6.2 +type: npm +summary: Streams3, a user-land copy of the stream library from Node.js +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Node.js is licensed for use as follows: + + """ + Copyright Node.js contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ + + This license applies to parts of Node.js originating from the + https://github.com/joyent/node repository: + + """ + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ +notices: [] diff --git a/.licenses/npm/reflect-metadata.dep.yml b/.licenses/npm/reflect-metadata.dep.yml new file mode 100644 index 000000000..8108bdf27 --- /dev/null +++ b/.licenses/npm/reflect-metadata.dep.yml @@ -0,0 +1,126 @@ +--- +name: reflect-metadata +version: 0.1.14 +type: npm +summary: Polyfill for Metadata Reflection API +homepage: http://rbuckton.github.io/reflect-metadata +license: apache-2.0 +licenses: +- sources: LICENSE + text: "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/ + \n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" + shall mean the terms and conditions for use, reproduction, and distribution as + defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the + copyright owner or entity authorized by the copyright owner that is granting the + License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common control with + that entity. For the purposes of this definition, \"control\" means (i) the power, + direct or indirect, to cause the direction or management of such entity, whether + by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of + the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" + (or \"Your\") shall mean an individual or Legal Entity exercising permissions + granted by this License.\n\n\"Source\" form shall mean the preferred form for + making modifications, including but not limited to software source code, documentation + source, and configuration files.\n\n\"Object\" form shall mean any form resulting + from mechanical transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, and conversions + to other media types.\n\n\"Work\" shall mean the work of authorship, whether in + Source or Object form, made available under the License, as indicated by a copyright + notice that is included in or attached to the work (an example is provided in + the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source + or Object form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications represent, + as a whole, an original work of authorship. For the purposes of this License, + Derivative Works shall not include works that remain separable from, or merely + link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" + shall mean any work of authorship, including the original version of the Work + and any modifications or additions to that Work or Derivative Works thereof, that + is intentionally submitted to Licensor for inclusion in the Work by the copyright + owner or by an individual or Legal Entity authorized to submit on behalf of the + copyright owner. For the purposes of this definition, \"submitted\" means any + form of electronic, verbal, or written communication sent to the Licensor or its + representatives, including but not limited to communication on electronic mailing + lists, source code control systems, and issue tracking systems that are managed + by, or on behalf of, the Licensor for the purpose of discussing and improving + the Work, but excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" + shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution + has been received by Licensor and subsequently incorporated within the Work.\n\n2. + Grant of Copyright License. Subject to the terms and conditions of this License, + each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, + royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works + of, publicly display, publicly perform, sublicense, and distribute the Work and + such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. + Subject to the terms and conditions of this License, each Contributor hereby grants + to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, use, offer + to sell, sell, import, and otherwise transfer the Work, where such license applies + only to those patent claims licensable by such Contributor that are necessarily + infringed by their Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You institute patent + litigation against any entity (including a cross-claim or counterclaim in a lawsuit) + alleging that the Work or a Contribution incorporated within the Work constitutes + direct or contributory patent infringement, then any patent licenses granted to + You under this License for that Work shall terminate as of the date such litigation + is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without modifications, + and in Source or Object form, provided that You meet the following conditions:\n\nYou + must give any other recipients of the Work or Derivative Works a copy of this + License; and\n\nYou must cause any modified files to carry prominent notices stating + that You changed the files; and\n\nYou must retain, in the Source form of any + Derivative Works that You distribute, all copyright, patent, trademark, and attribution + notices from the Source form of the Work, excluding those notices that do not + pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" + text file as part of its distribution, then any Derivative Works that You distribute + must include a readable copy of the attribution notices contained within such + NOTICE file, excluding those notices that do not pertain to any part of the Derivative + Works, in at least one of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or documentation, if provided + along with the Derivative Works; or, within a display generated by the Derivative + Works, if and wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and do not modify the License. + You may add Your own attribution notices within Derivative Works that You distribute, + alongside or as an addendum to the NOTICE text from the Work, provided that such + additional attribution notices cannot be construed as modifying the License. You + may add Your own copyright statement to Your modifications and may provide additional + or different license terms and conditions for use, reproduction, or distribution + of Your modifications, or for any such Derivative Works as a whole, provided Your + use, reproduction, and distribution of the Work otherwise complies with the conditions + stated in this License.\n\n5. Submission of Contributions. Unless You explicitly + state otherwise, any Contribution intentionally submitted for inclusion in the + Work by You to the Licensor shall be under the terms and conditions of this License, + without any additional terms or conditions. Notwithstanding the above, nothing + herein shall supersede or modify the terms of any separate license agreement you + may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. + This License does not grant permission to use the trade names, trademarks, service + marks, or product names of the Licensor, except as required for reasonable and + customary use in describing the origin of the Work and reproducing the content + of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable + law or agreed to in writing, Licensor provides the Work (and each Contributor + provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS + OF ANY KIND, either express or implied, including, without limitation, any warranties + or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR + PURPOSE. You are solely responsible for determining the appropriateness of using + or redistributing the Work and assume any risks associated with Your exercise + of permissions under this License.\n\n8. Limitation of Liability. In no event + and under no legal theory, whether in tort (including negligence), contract, or + otherwise, unless required by applicable law (such as deliberate and grossly negligent + acts) or agreed to in writing, shall any Contributor be liable to You for damages, + including any direct, indirect, special, incidental, or consequential damages + of any character arising as a result of this License or out of the use or inability + to use the Work (including but not limited to damages for loss of goodwill, work + stoppage, computer failure or malfunction, or any and all other commercial damages + or losses), even if such Contributor has been advised of the possibility of such + damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, and charge a fee + for, acceptance of support, warranty, indemnity, or other liability obligations + and/or rights consistent with this License. However, in accepting such obligations, + You may act only on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, defend, and hold + each Contributor harmless for any liability incurred by, or claims asserted against, + such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND + OF TERMS AND CONDITIONS" +notices: +- sources: AUTHORS.md + text: "reflect-metadata is authored by:\r\n* Cy Brown\r\n* Oleh Dokuka\r\n* Ron + Buckton\r\n* William Buchwalter" diff --git a/.licenses/npm/regenerator-runtime.dep.yml b/.licenses/npm/regenerator-runtime.dep.yml new file mode 100644 index 000000000..b0460ceff --- /dev/null +++ b/.licenses/npm/regenerator-runtime.dep.yml @@ -0,0 +1,32 @@ +--- +name: regenerator-runtime +version: 0.14.1 +type: npm +summary: Runtime for Regenerator-compiled generator and async functions. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2014-present, Facebook, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/regexp.prototype.flags.dep.yml b/.licenses/npm/regexp.prototype.flags.dep.yml new file mode 100644 index 000000000..cbf691fad --- /dev/null +++ b/.licenses/npm/regexp.prototype.flags.dep.yml @@ -0,0 +1,34 @@ +--- +name: regexp.prototype.flags +version: 1.5.4 +type: npm +summary: ES6 spec-compliant RegExp.prototype.flags shim. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (C) 2014 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/remark-parse.dep.yml b/.licenses/npm/remark-parse.dep.yml new file mode 100644 index 000000000..6d6637b27 --- /dev/null +++ b/.licenses/npm/remark-parse.dep.yml @@ -0,0 +1,120 @@ +--- +name: remark-parse +version: 10.0.2 +type: npm +summary: remark plugin to add support for parsing markdown input +homepage: https://remark.js.org +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2014-2020 Titus Wormer + Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/remarkjs/remark/workflows/main/badge.svg + + [build]: https://github.com/remarkjs/remark/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark.svg + + [coverage]: https://codecov.io/github/remarkjs/remark + + [downloads-badge]: https://img.shields.io/npm/dm/remark-parse.svg + + [downloads]: https://www.npmjs.com/package/remark-parse + + [size-badge]: https://img.shields.io/bundlephobia/minzip/remark-parse.svg + + [size]: https://bundlephobia.com/result?p=remark-parse + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/remarkjs/remark/discussions + + [security]: https://github.com/remarkjs/.github/blob/main/security.md + + [health]: https://github.com/remarkjs/.github + + [contributing]: https://github.com/remarkjs/.github/blob/main/contributing.md + + [support]: https://github.com/remarkjs/.github/blob/main/support.md + + [coc]: https://github.com/remarkjs/.github/blob/main/code-of-conduct.md + + [license]: https://github.com/remarkjs/remark/blob/main/license + + [author]: https://wooorm.com + + [npm]: https://docs.npmjs.com/cli/install + + [esmsh]: https://esm.sh + + [unified]: https://github.com/unifiedjs/unified + + [remark]: https://github.com/remarkjs/remark + + [mdast]: https://github.com/syntax-tree/mdast + + [xss]: https://en.wikipedia.org/wiki/Cross-site_scripting + + [typescript]: https://www.typescriptlang.org + + [rehype]: https://github.com/rehypejs/rehype + + [rehype-sanitize]: https://github.com/rehypejs/rehype-sanitize + + [mdast-util-from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown + + [micromark]: https://github.com/micromark/micromark + + [micromark-extend]: https://github.com/micromark/micromark#extensions + + [remark-gfm]: https://github.com/remarkjs/remark-gfm + + [remark-mdx]: https://github.com/mdx-js/mdx/tree/main/packages/remark-mdx + + [remark-frontmatter]: https://github.com/remarkjs/remark-frontmatter + + [remark-math]: https://github.com/remarkjs/remark-math + + [remark-man]: https://github.com/remarkjs/remark-man + + [remark-directive]: https://github.com/remarkjs/remark-directive + + [remark-stringify]: ../remark-stringify/ + + [remark-core]: ../remark/ + + [plugin]: https://github.com/remarkjs/remark#plugin +notices: [] diff --git a/.licenses/npm/remark-rehype.dep.yml b/.licenses/npm/remark-rehype.dep.yml new file mode 100644 index 000000000..db09bd029 --- /dev/null +++ b/.licenses/npm/remark-rehype.dep.yml @@ -0,0 +1,120 @@ +--- +name: remark-rehype +version: 10.1.0 +type: npm +summary: remark plugin that turns markdown into HTML to support rehype +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/remarkjs/remark-rehype/workflows/main/badge.svg + + [build]: https://github.com/remarkjs/remark-rehype/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/remarkjs/remark-rehype.svg + + [coverage]: https://codecov.io/github/remarkjs/remark-rehype + + [downloads-badge]: https://img.shields.io/npm/dm/remark-rehype.svg + + [downloads]: https://www.npmjs.com/package/remark-rehype + + [size-badge]: https://img.shields.io/bundlephobia/minzip/remark-rehype.svg + + [size]: https://bundlephobia.com/result?p=remark-rehype + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/remarkjs/remark/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [skypack]: https://www.skypack.dev + + [health]: https://github.com/remarkjs/.github + + [contributing]: https://github.com/remarkjs/.github/blob/HEAD/contributing.md + + [support]: https://github.com/remarkjs/.github/blob/HEAD/support.md + + [coc]: https://github.com/remarkjs/.github/blob/HEAD/code-of-conduct.md + + [license]: license + + [author]: https://wooorm.com + + [processor]: https://github.com/unifiedjs/unified#processor + + [remark]: https://github.com/remarkjs/remark + + [rehype]: https://github.com/rehypejs/rehype + + [unified]: https://github.com/unifiedjs/unified + + [xss]: https://en.wikipedia.org/wiki/Cross-site_scripting + + [typescript]: https://www.typescriptlang.org + + [rehype-minify]: https://github.com/rehypejs/rehype-minify + + [rehype-format]: https://github.com/rehypejs/rehype-format + + [rehype-sanitize]: https://github.com/rehypejs/rehype-sanitize + + [rehype-highlight]: https://github.com/rehypejs/rehype-highlight + + [rehype-meta]: https://github.com/rehypejs/rehype-meta + + [rehype-raw]: https://github.com/rehypejs/rehype-raw + + [rehype-remark]: https://github.com/rehypejs/rehype-remark + + [rehype-stringify]: https://github.com/rehypejs/rehype/tree/main/packages/rehype-stringify + + [mdast-html]: https://github.com/syntax-tree/mdast#html + + [remark-gfm]: https://github.com/remarkjs/remark-gfm + + [mdast-util-to-hast]: https://github.com/syntax-tree/mdast-util-to-hast + + [mdast]: https://github.com/syntax-tree/mdast + + [hast]: https://github.com/syntax-tree/hast + + [github-markdown-css]: https://github.com/sindresorhus/github-markdown-css +notices: [] diff --git a/.licenses/npm/remove-trailing-separator.dep.yml b/.licenses/npm/remove-trailing-separator.dep.yml new file mode 100644 index 000000000..df4b7a2da --- /dev/null +++ b/.licenses/npm/remove-trailing-separator.dep.yml @@ -0,0 +1,14 @@ +--- +name: remove-trailing-separator +version: 1.1.0 +type: npm +summary: Removes separators from the end of the string. +homepage: https://github.com/darsain/remove-trailing-separator#readme +license: isc +licenses: +- sources: license + text: |- + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/replace-ext.dep.yml b/.licenses/npm/replace-ext.dep.yml new file mode 100644 index 000000000..410d18a29 --- /dev/null +++ b/.licenses/npm/replace-ext.dep.yml @@ -0,0 +1,54 @@ +--- +name: replace-ext +version: 1.0.1 +type: npm +summary: Replaces a file extension with another one +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Blaine Bublitz , Eric Schoffstall and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + MIT + + [downloads-image]: http://img.shields.io/npm/dm/replace-ext.svg + [npm-url]: https://www.npmjs.com/package/replace-ext + [npm-image]: http://img.shields.io/npm/v/replace-ext.svg + + [azure-pipelines-url]: https://dev.azure.com/gulpjs/replace-ext/_build/latest?branchName=master + [azure-pipelines-image]: https://dev.azure.com/gulpjs/replace-ext/_apis/build/status/replace-ext?branchName=master + + [travis-url]: https://travis-ci.org/gulpjs/replace-ext + [travis-image]: http://img.shields.io/travis/gulpjs/replace-ext.svg?label=travis-ci + + [appveyor-url]: https://ci.appveyor.com/project/gulpjs/replace-ext + [appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/replace-ext.svg?label=appveyor + + [coveralls-url]: https://coveralls.io/r/gulpjs/replace-ext + [coveralls-image]: http://img.shields.io/coveralls/gulpjs/replace-ext/master.svg + + [gitter-url]: https://gitter.im/gulpjs/gulp + [gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg +notices: [] diff --git a/.licenses/npm/require-directory.dep.yml b/.licenses/npm/require-directory.dep.yml new file mode 100644 index 000000000..597277434 --- /dev/null +++ b/.licenses/npm/require-directory.dep.yml @@ -0,0 +1,36 @@ +--- +name: require-directory +version: 2.1.1 +type: npm +summary: Recursively iterates over specified directory, require()'ing each file, and + returning a nested hash structure containing those modules. +homepage: https://github.com/troygoode/node-require-directory/ +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2011 Troy Goode + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.markdown + text: "[MIT License](http://www.opensource.org/licenses/mit-license.php)" +notices: [] diff --git a/.licenses/npm/require-from-string.dep.yml b/.licenses/npm/require-from-string.dep.yml new file mode 100644 index 000000000..56800089a --- /dev/null +++ b/.licenses/npm/require-from-string.dep.yml @@ -0,0 +1,34 @@ +--- +name: require-from-string +version: 2.0.2 +type: npm +summary: Require module from string +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Vsevolod Strukchinsky (github.com/floatdrop) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Vsevolod Strukchinsky](http://github.com/floatdrop) +notices: [] diff --git a/.licenses/npm/require-main-filename.dep.yml b/.licenses/npm/require-main-filename.dep.yml new file mode 100644 index 000000000..094ae6609 --- /dev/null +++ b/.licenses/npm/require-main-filename.dep.yml @@ -0,0 +1,27 @@ +--- +name: require-main-filename +version: 2.0.0 +type: npm +summary: shim for require.main.filename() that works in as many environments as possible +homepage: https://github.com/yargs/require-main-filename#readme +license: isc +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2016, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +- sources: README.md + text: ISC +notices: [] diff --git a/.licenses/npm/requires-port.dep.yml b/.licenses/npm/requires-port.dep.yml new file mode 100644 index 000000000..65be2a363 --- /dev/null +++ b/.licenses/npm/requires-port.dep.yml @@ -0,0 +1,36 @@ +--- +name: requires-port +version: 1.0.0 +type: npm +summary: Check if a protocol requires a certain port number to be added to an URL. +homepage: https://github.com/unshiftio/requires-port +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: MIT +notices: [] +... diff --git a/.licenses/npm/resolve-alpn.dep.yml b/.licenses/npm/resolve-alpn.dep.yml new file mode 100644 index 000000000..13864790d --- /dev/null +++ b/.licenses/npm/resolve-alpn.dep.yml @@ -0,0 +1,36 @@ +--- +name: resolve-alpn +version: 1.2.1 +type: npm +summary: Detects the ALPN protocol +homepage: https://github.com/szmarczak/resolve-alpn#readme +license: mit +licenses: +- sources: LICENSE + text: |+ + MIT License + + Copyright (c) 2018 Szymon Marczak + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: MIT +notices: [] +... diff --git a/.licenses/npm/resolve-from.dep.yml b/.licenses/npm/resolve-from.dep.yml new file mode 100644 index 000000000..ca1346e92 --- /dev/null +++ b/.licenses/npm/resolve-from.dep.yml @@ -0,0 +1,22 @@ +--- +name: resolve-from +version: 4.0.0 +type: npm +summary: Resolve the path of a module like `require.resolve()` but from a given path +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/resolve-package-path.dep.yml b/.licenses/npm/resolve-package-path.dep.yml new file mode 100644 index 000000000..be111b401 --- /dev/null +++ b/.licenses/npm/resolve-package-path.dep.yml @@ -0,0 +1,30 @@ +--- +name: resolve-package-path +version: 4.0.3 +type: npm +summary: a special purpose fast memoizing way to resolve a node modules package.json +homepage: +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/resolve.dep.yml b/.licenses/npm/resolve.dep.yml new file mode 100644 index 000000000..efefebd4f --- /dev/null +++ b/.licenses/npm/resolve.dep.yml @@ -0,0 +1,51 @@ +--- +name: resolve +version: 1.22.10 +type: npm +summary: resolve like require.resolve() on behalf of files asynchronously and synchronously +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2012 James Halliday + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: readme.markdown + text: |- + MIT + + [1]: https://npmjs.org/package/resolve + [2]: https://versionbadg.es/browserify/resolve.svg + [5]: https://david-dm.org/browserify/resolve.svg + [6]: https://david-dm.org/browserify/resolve + [7]: https://david-dm.org/browserify/resolve/dev-status.svg + [8]: https://david-dm.org/browserify/resolve#info=devDependencies + [11]: https://nodei.co/npm/resolve.png?downloads=true&stars=true + [license-image]: https://img.shields.io/npm/l/resolve.svg + [license-url]: LICENSE + [downloads-image]: https://img.shields.io/npm/dm/resolve.svg + [downloads-url]: https://npm-stat.com/charts.html?package=resolve + [codecov-image]: https://codecov.io/gh/browserify/resolve/branch/main/graphs/badge.svg + [codecov-url]: https://app.codecov.io/gh/browserify/resolve/ + [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/browserify/resolve + [actions-url]: https://github.com/browserify/resolve/actions +notices: [] diff --git a/.licenses/npm/responselike-2.0.1.dep.yml b/.licenses/npm/responselike-2.0.1.dep.yml new file mode 100644 index 000000000..b33940b08 --- /dev/null +++ b/.licenses/npm/responselike-2.0.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: responselike +version: 2.0.1 +type: npm +summary: A response-like object for mocking a Node.js HTTP response stream +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2017 Luke Childs + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT © Luke Childs +notices: [] diff --git a/.licenses/npm/responselike-3.0.0.dep.yml b/.licenses/npm/responselike-3.0.0.dep.yml new file mode 100644 index 000000000..2df715d55 --- /dev/null +++ b/.licenses/npm/responselike-3.0.0.dep.yml @@ -0,0 +1,21 @@ +--- +name: responselike +version: 3.0.0 +type: npm +summary: A response-like object for mocking a Node.js HTTP response stream +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + Copyright (c) Luke Childs (https://lukechilds.co.uk) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/restore-cursor.dep.yml b/.licenses/npm/restore-cursor.dep.yml new file mode 100644 index 000000000..48d237707 --- /dev/null +++ b/.licenses/npm/restore-cursor.dep.yml @@ -0,0 +1,22 @@ +--- +name: restore-cursor +version: 3.1.0 +type: npm +summary: Gracefully restore the CLI cursor on exit +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/rfdc.dep.yml b/.licenses/npm/rfdc.dep.yml new file mode 100644 index 000000000..617e0c178 --- /dev/null +++ b/.licenses/npm/rfdc.dep.yml @@ -0,0 +1,26 @@ +--- +name: rfdc +version: 1.4.1 +type: npm +summary: Really Fast Deep Clone +homepage: https://github.com/davidmarkclements/rfdc#readme +license: mit +licenses: +- sources: LICENSE + text: "Copyright 2019 \"David Mark Clements \"\n\nPermission + is hereby granted, free of charge, to any person obtaining a copy of this software + and associated \ndocumentation files (the \"Software\"), to deal in the Software + without restriction, including without limitation \nthe rights to use, copy, modify, + merge, publish, distribute, sublicense, and/or sell copies of the Software, and + \nto permit persons to whom the Software is furnished to do so, subject to the + following conditions:\n\nThe above copyright notice and this permission notice + shall be included in all copies or substantial portions \nof the Software.\n\nTHE + SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED \nTO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \nTHE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF \nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS \nIN THE SOFTWARE.\n" +- sources: readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/rimraf-2.6.3.dep.yml b/.licenses/npm/rimraf-2.6.3.dep.yml new file mode 100644 index 000000000..0b4fc541e --- /dev/null +++ b/.licenses/npm/rimraf-2.6.3.dep.yml @@ -0,0 +1,26 @@ +--- +name: rimraf +version: 2.6.3 +type: npm +summary: A deep deletion module for node (like `rm -rf`) +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/rimraf-2.7.1.dep.yml b/.licenses/npm/rimraf-2.7.1.dep.yml new file mode 100644 index 000000000..1a576a4dd --- /dev/null +++ b/.licenses/npm/rimraf-2.7.1.dep.yml @@ -0,0 +1,26 @@ +--- +name: rimraf +version: 2.7.1 +type: npm +summary: A deep deletion module for node (like `rm -rf`) +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/rimraf-3.0.2.dep.yml b/.licenses/npm/rimraf-3.0.2.dep.yml new file mode 100644 index 000000000..0a57321b5 --- /dev/null +++ b/.licenses/npm/rimraf-3.0.2.dep.yml @@ -0,0 +1,26 @@ +--- +name: rimraf +version: 3.0.2 +type: npm +summary: A deep deletion module for node (like `rm -rf`) +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/rimraf-5.0.10.dep.yml b/.licenses/npm/rimraf-5.0.10.dep.yml new file mode 100644 index 000000000..42a345317 --- /dev/null +++ b/.licenses/npm/rimraf-5.0.10.dep.yml @@ -0,0 +1,26 @@ +--- +name: rimraf +version: 5.0.10 +type: npm +summary: A deep deletion module for node (like `rm -rf`) +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/roarr.dep.yml b/.licenses/npm/roarr.dep.yml new file mode 100644 index 000000000..0ef2c2051 --- /dev/null +++ b/.licenses/npm/roarr.dep.yml @@ -0,0 +1,35 @@ +--- +name: roarr +version: 2.15.4 +type: npm +summary: JSON logger for Node.js and browser. +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright (c) 2019, Gajus Kuizinas (http://gajus.com/) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/route-parser.dep.yml b/.licenses/npm/route-parser.dep.yml new file mode 100644 index 000000000..5d382ea1c --- /dev/null +++ b/.licenses/npm/route-parser.dep.yml @@ -0,0 +1,33 @@ +--- +name: route-parser +version: 0.0.5 +type: npm +summary: 'A isomorphic, bullet-proof, ninja-ready route parsing, matching, and reversing + library for Javascript in Node and the browser. ' +homepage: http://github.com/rcs/route-parser +license: mit +licenses: +- sources: LICENSE.md + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Ryan Sorensen + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/rrweb-cssom.dep.yml b/.licenses/npm/rrweb-cssom.dep.yml new file mode 100644 index 000000000..d0943b903 --- /dev/null +++ b/.licenses/npm/rrweb-cssom.dep.yml @@ -0,0 +1,31 @@ +--- +name: rrweb-cssom +version: 0.6.0 +type: npm +summary: CSS Object Model implementation and CSS parser +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) Nikita Vasilyev + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/rxjs.dep.yml b/.licenses/npm/rxjs.dep.yml new file mode 100644 index 000000000..dde1baad3 --- /dev/null +++ b/.licenses/npm/rxjs.dep.yml @@ -0,0 +1,148 @@ +--- +name: rxjs +version: 7.8.2 +type: npm +summary: Reactive Extensions for modern JavaScript +homepage: https://rxjs.dev +license: apache-2.0 +licenses: +- sources: LICENSE.txt + text: " Apache License\n Version + 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS + AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n + \ \"License\" shall mean the terms and conditions for use, reproduction,\n and + distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" + shall mean the copyright owner or entity authorized by\n the copyright owner + that is granting the License.\n\n \"Legal Entity\" shall mean the union of + the acting entity and all\n other entities that control, are controlled by, + or are under common\n control with that entity. For the purposes of this definition,\n + \ \"control\" means (i) the power, direct or indirect, to cause the\n direction + or management of such entity, whether by contract or\n otherwise, or (ii) ownership + of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial + ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual + or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" + form shall mean the preferred form for making modifications,\n including but + not limited to software source code, documentation\n source, and configuration + files.\n\n \"Object\" form shall mean any form resulting from mechanical\n + \ transformation or translation of a Source form, including but\n not limited + to compiled object code, generated documentation,\n and conversions to other + media types.\n\n \"Work\" shall mean the work of authorship, whether in Source + or\n Object form, made available under the License, as indicated by a\n copyright + notice that is included in or attached to the work\n (an example is provided + in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether + in Source or Object\n form, that is based on (or derived from) the Work and + for which the\n editorial revisions, annotations, elaborations, or other modifications\n + \ represent, as a whole, an original work of authorship. For the purposes\n + \ of this License, Derivative Works shall not include works that remain\n separable + from, or merely link (or bind by name) to the interfaces of,\n the Work and + Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, + including\n the original version of the Work and any modifications or additions\n + \ to that Work or Derivative Works thereof, that is intentionally\n submitted + to Licensor for inclusion in the Work by the copyright owner\n or by an individual + or Legal Entity authorized to submit on behalf of\n the copyright owner. For + the purposes of this definition, \"submitted\"\n means any form of electronic, + verbal, or written communication sent\n to the Licensor or its representatives, + including but not limited to\n communication on electronic mailing lists, source + code control systems,\n and issue tracking systems that are managed by, or + on behalf of, the\n Licensor for the purpose of discussing and improving the + Work, but\n excluding communication that is conspicuously marked or otherwise\n + \ designated in writing by the copyright owner as \"Not a Contribution.\"\n\n + \ \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on + behalf of whom a Contribution has been received by Licensor and\n subsequently + incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the + terms and conditions of\n this License, each Contributor hereby grants to You + a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n + \ copyright license to reproduce, prepare Derivative Works of,\n publicly + display, publicly perform, sublicense, and distribute the\n Work and such Derivative + Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the + terms and conditions of\n this License, each Contributor hereby grants to You + a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n + \ (except as stated in this section) patent license to make, have made,\n use, + offer to sell, sell, import, and otherwise transfer the Work,\n where such + license applies only to those patent claims licensable\n by such Contributor + that are necessarily infringed by their\n Contribution(s) alone or by combination + of their Contribution(s)\n with the Work to which such Contribution(s) was + submitted. If You\n institute patent litigation against any entity (including + a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or + a Contribution incorporated within the Work constitutes direct\n or contributory + patent infringement, then any patent licenses\n granted to You under this License + for that Work shall terminate\n as of the date such litigation is filed.\n\n + 4. Redistribution. You may reproduce and distribute copies of the\n Work or + Derivative Works thereof in any medium, with or without\n modifications, and + in Source or Object form, provided that You\n meet the following conditions:\n\n + \ (a) You must give any other recipients of the Work or\n Derivative + Works a copy of this License; and\n\n (b) You must cause any modified files + to carry prominent notices\n stating that You changed the files; and\n\n + \ (c) You must retain, in the Source form of any Derivative Works\n that + You distribute, all copyright, patent, trademark, and\n attribution notices + from the Source form of the Work,\n excluding those notices that do not + pertain to any part of\n the Derivative Works; and\n\n (d) If the Work + includes a \"NOTICE\" text file as part of its\n distribution, then any + Derivative Works that You distribute must\n include a readable copy of + the attribution notices contained\n within such NOTICE file, excluding + those notices that do not\n pertain to any part of the Derivative Works, + in at least one\n of the following places: within a NOTICE text file distributed\n + \ as part of the Derivative Works; within the Source form or\n documentation, + if provided along with the Derivative Works; or,\n within a display generated + by the Derivative Works, if and\n wherever such third-party notices normally + appear. The contents\n of the NOTICE file are for informational purposes + only and\n do not modify the License. You may add Your own attribution\n + \ notices within Derivative Works that You distribute, alongside\n or + as an addendum to the NOTICE text from the Work, provided\n that such additional + attribution notices cannot be construed\n as modifying the License.\n\n + \ You may add Your own copyright statement to Your modifications and\n may + provide additional or different license terms and conditions\n for use, reproduction, + or distribution of Your modifications, or\n for any such Derivative Works as + a whole, provided Your use,\n reproduction, and distribution of the Work otherwise + complies with\n the conditions stated in this License.\n\n 5. Submission of + Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally + submitted for inclusion in the Work\n by You to the Licensor shall be under + the terms and conditions of\n this License, without any additional terms or + conditions.\n Notwithstanding the above, nothing herein shall supersede or + modify\n the terms of any separate license agreement you may have executed\n + \ with Licensor regarding such Contributions.\n\n 6. Trademarks. This License + does not grant permission to use the trade\n names, trademarks, service marks, + or product names of the Licensor,\n except as required for reasonable and customary + use in describing the\n origin of the Work and reproducing the content of the + NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law + or\n agreed to in writing, Licensor provides the Work (and each\n Contributor + provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, + any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, + or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining + the\n appropriateness of using or redistributing the Work and assume any\n + \ risks associated with Your exercise of permissions under this License.\n\n + 8. Limitation of Liability. In no event and under no legal theory,\n whether + in tort (including negligence), contract, or otherwise,\n unless required by + applicable law (such as deliberate and grossly\n negligent acts) or agreed + to in writing, shall any Contributor be\n liable to You for damages, including + any direct, indirect, special,\n incidental, or consequential damages of any + character arising as a\n result of this License or out of the use or inability + to use the\n Work (including but not limited to damages for loss of goodwill,\n + \ work stoppage, computer failure or malfunction, or any and all\n other + commercial damages or losses), even if such Contributor\n has been advised + of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. + While redistributing\n the Work or Derivative Works thereof, You may choose + to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n + \ or other liability obligations and/or rights consistent with this\n License. + However, in accepting such obligations, You may act only\n on Your own behalf + and on Your sole responsibility, not on behalf\n of any other Contributor, + and only if You agree to indemnify,\n defend, and hold each Contributor harmless + for any liability\n incurred by, or claims asserted against, such Contributor + by reason\n of your accepting any such warranty or additional liability.\n\n + END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your + work.\n\n To apply the Apache License to your work, attach the following\n + \ boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced + with your own identifying information. (Don't include\n the brackets!) The + text should be enclosed in the appropriate\n comment syntax for the file format. + We also recommend that a\n file or class name and description of purpose be + included on the\n same \"printed page\" as the copyright notice for easier\n + \ identification within third-party archives.\n\n Copyright (c) 2015-2018 Google, + Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache + License, Version 2.0 (the \"License\");\n you may not use this file except in + compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n + Unless required by applicable law or agreed to in writing, software\n distributed + under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific + language governing permissions and\n limitations under the License.\n \n" +notices: [] diff --git a/.licenses/npm/sade.dep.yml b/.licenses/npm/sade.dep.yml new file mode 100644 index 000000000..2a48dbff7 --- /dev/null +++ b/.licenses/npm/sade.dep.yml @@ -0,0 +1,34 @@ +--- +name: sade +version: 1.8.1 +type: npm +summary: "Smooth (CLI) operator \U0001F3B6" +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Luke Edwards (https://lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/safe-buffer-5.1.2.dep.yml b/.licenses/npm/safe-buffer-5.1.2.dep.yml new file mode 100644 index 000000000..193d9e89d --- /dev/null +++ b/.licenses/npm/safe-buffer-5.1.2.dep.yml @@ -0,0 +1,34 @@ +--- +name: safe-buffer +version: 5.1.2 +type: npm +summary: Safer Node.js Buffer API +homepage: https://github.com/feross/safe-buffer +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Feross Aboukhadijeh + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org) +notices: [] diff --git a/.licenses/npm/safe-buffer-5.2.1.dep.yml b/.licenses/npm/safe-buffer-5.2.1.dep.yml new file mode 100644 index 000000000..a6499e34d --- /dev/null +++ b/.licenses/npm/safe-buffer-5.2.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: safe-buffer +version: 5.2.1 +type: npm +summary: Safer Node.js Buffer API +homepage: https://github.com/feross/safe-buffer +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Feross Aboukhadijeh + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT. Copyright (C) [Feross Aboukhadijeh](http://feross.org) +notices: [] diff --git a/.licenses/npm/safe-regex-test.dep.yml b/.licenses/npm/safe-regex-test.dep.yml new file mode 100644 index 000000000..7e7258274 --- /dev/null +++ b/.licenses/npm/safe-regex-test.dep.yml @@ -0,0 +1,32 @@ +--- +name: safe-regex-test +version: 1.1.0 +type: npm +summary: Give a regex, get a robust predicate function that tests it against a string. +homepage: https://github.com/ljharb/safe-regex-test#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2022 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/safe-stable-stringify.dep.yml b/.licenses/npm/safe-stable-stringify.dep.yml new file mode 100644 index 000000000..58d06be4a --- /dev/null +++ b/.licenses/npm/safe-stable-stringify.dep.yml @@ -0,0 +1,40 @@ +--- +name: safe-stable-stringify +version: 2.5.0 +type: npm +summary: Deterministic and safely JSON.stringify to quickly serialize JavaScript objects +homepage: https://github.com/BridgeAR/safe-stable-stringify#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Ruben Bridgewater + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: readme.md + text: |- + MIT + + [`replacer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The%20replacer%20parameter + [`spacer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The%20space%20argument + [`toJSON`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON()_behavior + [JSON.stringify]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify +notices: [] diff --git a/.licenses/npm/safer-buffer.dep.yml b/.licenses/npm/safer-buffer.dep.yml new file mode 100644 index 000000000..315c165f5 --- /dev/null +++ b/.licenses/npm/safer-buffer.dep.yml @@ -0,0 +1,32 @@ +--- +name: safer-buffer +version: 2.1.2 +type: npm +summary: Modern Buffer API polyfill without footguns +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Nikita Skovoroda + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/sax.dep.yml b/.licenses/npm/sax.dep.yml new file mode 100644 index 000000000..096f4ae4f --- /dev/null +++ b/.licenses/npm/sax.dep.yml @@ -0,0 +1,52 @@ +--- +name: sax +version: 1.4.1 +type: npm +summary: An evented streaming XML parser in JavaScript +homepage: +license: other +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) 2010-2024 Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + ==== + + `String.fromCodePoint` by Mathias Bynens used according to terms of MIT + License, as follows: + + Copyright (c) 2010-2024 Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/saxes.dep.yml b/.licenses/npm/saxes.dep.yml new file mode 100644 index 000000000..88a8cf8ea --- /dev/null +++ b/.licenses/npm/saxes.dep.yml @@ -0,0 +1,23 @@ +--- +name: saxes +version: 6.0.0 +type: npm +summary: An evented streaming XML parser in JavaScript +homepage: +license: isc +licenses: +- sources: Auto-generated ISC license text + text: | + ISC License + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/scheduler.dep.yml b/.licenses/npm/scheduler.dep.yml new file mode 100644 index 000000000..702080f55 --- /dev/null +++ b/.licenses/npm/scheduler.dep.yml @@ -0,0 +1,32 @@ +--- +name: scheduler +version: 0.23.2 +type: npm +summary: Cooperative scheduler for the browser environment. +homepage: https://reactjs.org/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Facebook, Inc. and its affiliates. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/seek-bzip.dep.yml b/.licenses/npm/seek-bzip.dep.yml new file mode 100644 index 000000000..a68b286ca --- /dev/null +++ b/.licenses/npm/seek-bzip.dep.yml @@ -0,0 +1,39 @@ +--- +name: seek-bzip +version: 1.0.6 +type: npm +summary: a pure-JavaScript Node.JS module for random-access decoding bzip2 data +homepage: +license: other +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright © 2013-2015 C. Scott Ananian + + Copyright © 2012-2015 Eli Skeggs + + Copyright © 2011 Kevin Kwok + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: '' +notices: [] diff --git a/.licenses/npm/semver-5.7.2.dep.yml b/.licenses/npm/semver-5.7.2.dep.yml new file mode 100644 index 000000000..0dbff3296 --- /dev/null +++ b/.licenses/npm/semver-5.7.2.dep.yml @@ -0,0 +1,26 @@ +--- +name: semver +version: 5.7.2 +type: npm +summary: The semantic version parser used by npm. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/semver-6.3.1.dep.yml b/.licenses/npm/semver-6.3.1.dep.yml new file mode 100644 index 000000000..fb7c69022 --- /dev/null +++ b/.licenses/npm/semver-6.3.1.dep.yml @@ -0,0 +1,26 @@ +--- +name: semver +version: 6.3.1 +type: npm +summary: The semantic version parser used by npm. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/semver-7.7.1.dep.yml b/.licenses/npm/semver-7.7.1.dep.yml new file mode 100644 index 000000000..3194cf4ae --- /dev/null +++ b/.licenses/npm/semver-7.7.1.dep.yml @@ -0,0 +1,26 @@ +--- +name: semver +version: 7.7.1 +type: npm +summary: The semantic version parser used by npm. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/semver-compare.dep.yml b/.licenses/npm/semver-compare.dep.yml new file mode 100644 index 000000000..f459f178c --- /dev/null +++ b/.licenses/npm/semver-compare.dep.yml @@ -0,0 +1,31 @@ +--- +name: semver-compare +version: 1.0.0 +type: npm +summary: compare two semver version strings, returning -1, 0, or 1 +homepage: https://github.com/substack/semver-compare +license: other +licenses: +- sources: LICENSE + text: | + This software is released under the MIT license: + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/send.dep.yml b/.licenses/npm/send.dep.yml new file mode 100644 index 000000000..d11c6c354 --- /dev/null +++ b/.licenses/npm/send.dep.yml @@ -0,0 +1,49 @@ +--- +name: send +version: 0.19.0 +type: npm +summary: Better streaming static file server with Range and conditional-GET support +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2012 TJ Holowaychuk + Copyright (c) 2014-2022 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/send/master?label=windows + [appveyor-url]: https://ci.appveyor.com/project/dougwilson/send + [coveralls-image]: https://badgen.net/coveralls/c/github/pillarjs/send/master + [coveralls-url]: https://coveralls.io/r/pillarjs/send?branch=master + [github-actions-ci-image]: https://badgen.net/github/checks/pillarjs/send/master?label=linux + [github-actions-ci-url]: https://github.com/pillarjs/send/actions/workflows/ci.yml + [node-image]: https://badgen.net/npm/node/send + [node-url]: https://nodejs.org/en/download/ + [npm-downloads-image]: https://badgen.net/npm/dm/send + [npm-url]: https://npmjs.org/package/send + [npm-version-image]: https://badgen.net/npm/v/send +notices: [] diff --git a/.licenses/npm/serialize-error.dep.yml b/.licenses/npm/serialize-error.dep.yml new file mode 100644 index 000000000..68f225d78 --- /dev/null +++ b/.licenses/npm/serialize-error.dep.yml @@ -0,0 +1,20 @@ +--- +name: serialize-error +version: 7.0.1 +type: npm +summary: Serialize/deserialize an error into a plain object +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/serve-static.dep.yml b/.licenses/npm/serve-static.dep.yml new file mode 100644 index 000000000..9a0ce6988 --- /dev/null +++ b/.licenses/npm/serve-static.dep.yml @@ -0,0 +1,51 @@ +--- +name: serve-static +version: 1.16.2 +type: npm +summary: Serve static files +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2010 Sencha Inc. + Copyright (c) 2011 LearnBoost + Copyright (c) 2011 TJ Holowaychuk + Copyright (c) 2014-2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/serve-static/master?label=windows + [appveyor-url]: https://ci.appveyor.com/project/dougwilson/serve-static + [coveralls-image]: https://badgen.net/coveralls/c/github/expressjs/serve-static/master + [coveralls-url]: https://coveralls.io/r/expressjs/serve-static?branch=master + [github-actions-ci-image]: https://badgen.net/github/checks/expressjs/serve-static/master?label=linux + [github-actions-ci-url]: https://github.com/expressjs/serve-static/actions/workflows/ci.yml + [node-image]: https://badgen.net/npm/node/serve-static + [node-url]: https://nodejs.org/en/download/ + [npm-downloads-image]: https://badgen.net/npm/dm/serve-static + [npm-url]: https://npmjs.org/package/serve-static + [npm-version-image]: https://badgen.net/npm/v/serve-static +notices: [] diff --git a/.licenses/npm/set-blocking.dep.yml b/.licenses/npm/set-blocking.dep.yml new file mode 100644 index 000000000..7be602e23 --- /dev/null +++ b/.licenses/npm/set-blocking.dep.yml @@ -0,0 +1,27 @@ +--- +name: set-blocking +version: 2.0.0 +type: npm +summary: set blocking stdio and stderr ensuring that terminal output does not truncate +homepage: https://github.com/yargs/set-blocking#readme +license: isc +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2016, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +- sources: README.md + text: ISC +notices: [] diff --git a/.licenses/npm/set-function-length.dep.yml b/.licenses/npm/set-function-length.dep.yml new file mode 100644 index 000000000..668245a0f --- /dev/null +++ b/.licenses/npm/set-function-length.dep.yml @@ -0,0 +1,32 @@ +--- +name: set-function-length +version: 1.2.2 +type: npm +summary: Set a function's length property +homepage: https://github.com/ljharb/set-function-length#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Jordan Harband and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/set-function-name.dep.yml b/.licenses/npm/set-function-name.dep.yml new file mode 100644 index 000000000..e99264229 --- /dev/null +++ b/.licenses/npm/set-function-name.dep.yml @@ -0,0 +1,32 @@ +--- +name: set-function-name +version: 2.0.2 +type: npm +summary: Set a function's name property +homepage: https://github.com/ljharb/set-function-name#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Jordan Harband and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/setimmediate.dep.yml b/.licenses/npm/setimmediate.dep.yml new file mode 100644 index 000000000..33863189d --- /dev/null +++ b/.licenses/npm/setimmediate.dep.yml @@ -0,0 +1,31 @@ +--- +name: setimmediate +version: 1.0.5 +type: npm +summary: A shim for the setImmediate efficient script yielding API +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/setprototypeof.dep.yml b/.licenses/npm/setprototypeof.dep.yml new file mode 100644 index 000000000..57df8d2cb --- /dev/null +++ b/.licenses/npm/setprototypeof.dep.yml @@ -0,0 +1,24 @@ +--- +name: setprototypeof +version: 1.2.0 +type: npm +summary: A small polyfill for Object.setprototypeof +homepage: https://github.com/wesleytodd/setprototypeof +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015, Wes Todd + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY + SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION + OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/shebang-command.dep.yml b/.licenses/npm/shebang-command.dep.yml new file mode 100644 index 000000000..d95f0cbb0 --- /dev/null +++ b/.licenses/npm/shebang-command.dep.yml @@ -0,0 +1,20 @@ +--- +name: shebang-command +version: 2.0.0 +type: npm +summary: Get the command from a shebang +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/shebang-regex.dep.yml b/.licenses/npm/shebang-regex.dep.yml new file mode 100644 index 000000000..4edc1f9bf --- /dev/null +++ b/.licenses/npm/shebang-regex.dep.yml @@ -0,0 +1,22 @@ +--- +name: shebang-regex +version: 3.0.0 +type: npm +summary: Regular expression for matching a shebang line +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/shell-env.dep.yml b/.licenses/npm/shell-env.dep.yml new file mode 100644 index 000000000..6eae11e54 --- /dev/null +++ b/.licenses/npm/shell-env.dep.yml @@ -0,0 +1,34 @@ +--- +name: shell-env +version: 0.3.0 +type: npm +summary: Get environment variables from the shell +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/shell-path.dep.yml b/.licenses/npm/shell-path.dep.yml new file mode 100644 index 000000000..4c5da69e2 --- /dev/null +++ b/.licenses/npm/shell-path.dep.yml @@ -0,0 +1,34 @@ +--- +name: shell-path +version: 2.1.0 +type: npm +summary: Get the $PATH from the shell +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/side-channel-list.dep.yml b/.licenses/npm/side-channel-list.dep.yml new file mode 100644 index 000000000..7b05cf94e --- /dev/null +++ b/.licenses/npm/side-channel-list.dep.yml @@ -0,0 +1,32 @@ +--- +name: side-channel-list +version: 1.0.0 +type: npm +summary: Store information about any JS value in a side channel, using a linked list +homepage: https://github.com/ljharb/side-channel-list#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/side-channel-map.dep.yml b/.licenses/npm/side-channel-map.dep.yml new file mode 100644 index 000000000..b56abab63 --- /dev/null +++ b/.licenses/npm/side-channel-map.dep.yml @@ -0,0 +1,32 @@ +--- +name: side-channel-map +version: 1.0.1 +type: npm +summary: Store information about any JS value in a side channel, using a Map +homepage: https://github.com/ljharb/side-channel-map#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/side-channel-weakmap.dep.yml b/.licenses/npm/side-channel-weakmap.dep.yml new file mode 100644 index 000000000..cfe58b010 --- /dev/null +++ b/.licenses/npm/side-channel-weakmap.dep.yml @@ -0,0 +1,32 @@ +--- +name: side-channel-weakmap +version: 1.0.2 +type: npm +summary: Store information about any JS value in a side channel. Uses WeakMap if available. +homepage: https://github.com/ljharb/side-channel-weakmap#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/side-channel.dep.yml b/.licenses/npm/side-channel.dep.yml new file mode 100644 index 000000000..7fbc97f8b --- /dev/null +++ b/.licenses/npm/side-channel.dep.yml @@ -0,0 +1,32 @@ +--- +name: side-channel +version: 1.1.0 +type: npm +summary: Store information about any JS value in a side channel. Uses WeakMap if available. +homepage: https://github.com/ljharb/side-channel#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/signal-exit-3.0.7.dep.yml b/.licenses/npm/signal-exit-3.0.7.dep.yml new file mode 100644 index 000000000..53a7b811c --- /dev/null +++ b/.licenses/npm/signal-exit-3.0.7.dep.yml @@ -0,0 +1,27 @@ +--- +name: signal-exit +version: 3.0.7 +type: npm +summary: when you want to fire an event no matter how a process exits. +homepage: https://github.com/tapjs/signal-exit +license: isc +licenses: +- sources: LICENSE.txt + text: | + The ISC License + + Copyright (c) 2015, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/signal-exit-4.1.0.dep.yml b/.licenses/npm/signal-exit-4.1.0.dep.yml new file mode 100644 index 000000000..5257c46db --- /dev/null +++ b/.licenses/npm/signal-exit-4.1.0.dep.yml @@ -0,0 +1,27 @@ +--- +name: signal-exit +version: 4.1.0 +type: npm +summary: when you want to fire an event no matter how a process exits. +homepage: +license: isc +licenses: +- sources: LICENSE.txt + text: | + The ISC License + + Copyright (c) 2015-2023 Benjamin Coe, Isaac Z. Schlueter, and Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/simple-concat.dep.yml b/.licenses/npm/simple-concat.dep.yml new file mode 100644 index 000000000..2a57dba2e --- /dev/null +++ b/.licenses/npm/simple-concat.dep.yml @@ -0,0 +1,33 @@ +--- +name: simple-concat +version: 1.0.1 +type: npm +summary: Super-minimalist version of `concat-stream`. Less than 15 lines! +homepage: https://github.com/feross/simple-concat +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Feross Aboukhadijeh + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org). +notices: [] diff --git a/.licenses/npm/simple-get.dep.yml b/.licenses/npm/simple-get.dep.yml new file mode 100644 index 000000000..28ba6595a --- /dev/null +++ b/.licenses/npm/simple-get.dep.yml @@ -0,0 +1,34 @@ +--- +name: simple-get +version: 3.1.1 +type: npm +summary: Simplest way to make http get requests. Supports HTTPS, redirects, gzip/deflate, + streams in < 100 lines. +homepage: https://github.com/feross/simple-get +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) Feross Aboukhadijeh + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org). +notices: [] diff --git a/.licenses/npm/slash.dep.yml b/.licenses/npm/slash.dep.yml new file mode 100644 index 000000000..ee51f74b9 --- /dev/null +++ b/.licenses/npm/slash.dep.yml @@ -0,0 +1,11 @@ +--- +name: slash +version: 1.0.0 +type: npm +summary: Convert Windows backslash paths to slash paths +homepage: +license: mit +licenses: +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/slice-ansi-3.0.0.dep.yml b/.licenses/npm/slice-ansi-3.0.0.dep.yml new file mode 100644 index 000000000..35e34b7fe --- /dev/null +++ b/.licenses/npm/slice-ansi-3.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: slice-ansi +version: 3.0.0 +type: npm +summary: Slice a string with ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) DC + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/slice-ansi-4.0.0.dep.yml b/.licenses/npm/slice-ansi-4.0.0.dep.yml new file mode 100644 index 000000000..880f7971d --- /dev/null +++ b/.licenses/npm/slice-ansi-4.0.0.dep.yml @@ -0,0 +1,21 @@ +--- +name: slice-ansi +version: 4.0.0 +type: npm +summary: Slice a string with ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) DC + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/smart-buffer.dep.yml b/.licenses/npm/smart-buffer.dep.yml new file mode 100644 index 000000000..7ff145897 --- /dev/null +++ b/.licenses/npm/smart-buffer.dep.yml @@ -0,0 +1,34 @@ +--- +name: smart-buffer +version: 4.2.0 +type: npm +summary: smart-buffer is a Buffer wrapper that adds automatic read & write offset + tracking, string operations, data insertions, and more. +homepage: https://github.com/JoshGlazebrook/smart-buffer/ +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2013-2017 Josh Glazebrook + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: This work is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License). +notices: [] diff --git a/.licenses/npm/socket.io-adapter.dep.yml b/.licenses/npm/socket.io-adapter.dep.yml new file mode 100644 index 000000000..b76e74523 --- /dev/null +++ b/.licenses/npm/socket.io-adapter.dep.yml @@ -0,0 +1,33 @@ +--- +name: socket.io-adapter +version: 2.5.5 +type: npm +summary: default socket.io in-memory adapter +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Guillermo Rauch + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the 'Software'), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/socket.io-client.dep.yml b/.licenses/npm/socket.io-client.dep.yml new file mode 100644 index 000000000..610895f59 --- /dev/null +++ b/.licenses/npm/socket.io-client.dep.yml @@ -0,0 +1,34 @@ +--- +name: socket.io-client +version: 4.8.1 +type: npm +summary: Realtime application framework client +homepage: https://github.com/socketio/socket.io/tree/main/packages/socket.io-client#readme +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014-present Guillermo Rauch and Socket.IO contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: "[MIT](/LICENSE)" +notices: [] diff --git a/.licenses/npm/socket.io-parser.dep.yml b/.licenses/npm/socket.io-parser.dep.yml new file mode 100644 index 000000000..6b4adc440 --- /dev/null +++ b/.licenses/npm/socket.io-parser.dep.yml @@ -0,0 +1,33 @@ +--- +name: socket.io-parser +version: 4.2.4 +type: npm +summary: socket.io protocol parser +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Guillermo Rauch + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the 'Software'), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: MIT +notices: [] diff --git a/.licenses/npm/socket.io.dep.yml b/.licenses/npm/socket.io.dep.yml new file mode 100644 index 000000000..4cc8a91bc --- /dev/null +++ b/.licenses/npm/socket.io.dep.yml @@ -0,0 +1,35 @@ +--- +name: socket.io +version: 4.8.1 +type: npm +summary: node.js realtime framework server +homepage: https://github.com/socketio/socket.io/tree/main/packages/socket.io#readme +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-present Guillermo Rauch and Socket.IO contributors + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: Readme.md + text: "[MIT](LICENSE)" +notices: [] diff --git a/.licenses/npm/socks-proxy-agent.dep.yml b/.licenses/npm/socks-proxy-agent.dep.yml new file mode 100644 index 000000000..58b76f699 --- /dev/null +++ b/.licenses/npm/socks-proxy-agent.dep.yml @@ -0,0 +1,33 @@ +--- +name: socks-proxy-agent +version: 5.0.1 +type: npm +summary: A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS +homepage: +license: mit +licenses: +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net> + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/socks.dep.yml b/.licenses/npm/socks.dep.yml new file mode 100644 index 000000000..fdbd641e9 --- /dev/null +++ b/.licenses/npm/socks.dep.yml @@ -0,0 +1,34 @@ +--- +name: socks +version: 2.8.4 +type: npm +summary: Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. + Includes Bind and Associate functionality. +homepage: https://github.com/JoshGlazebrook/socks/ +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2013 Josh Glazebrook + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: This work is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License). +notices: [] diff --git a/.licenses/npm/sort-keys.dep.yml b/.licenses/npm/sort-keys.dep.yml new file mode 100644 index 000000000..f883466e1 --- /dev/null +++ b/.licenses/npm/sort-keys.dep.yml @@ -0,0 +1,22 @@ +--- +name: sort-keys +version: 2.0.0 +type: npm +summary: Sort the keys of an object +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/source-map-0.5.7.dep.yml b/.licenses/npm/source-map-0.5.7.dep.yml new file mode 100644 index 000000000..dc4feb762 --- /dev/null +++ b/.licenses/npm/source-map-0.5.7.dep.yml @@ -0,0 +1,39 @@ +--- +name: source-map +version: 0.5.7 +type: npm +summary: Generates and consumes source maps +homepage: https://github.com/mozilla/source-map +license: other +licenses: +- sources: LICENSE + text: |2 + + Copyright (c) 2009-2011, Mozilla Foundation and contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the names of the Mozilla Foundation nor the names of project + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/source-map-0.6.1.dep.yml b/.licenses/npm/source-map-0.6.1.dep.yml new file mode 100644 index 000000000..e442ede9f --- /dev/null +++ b/.licenses/npm/source-map-0.6.1.dep.yml @@ -0,0 +1,39 @@ +--- +name: source-map +version: 0.6.1 +type: npm +summary: Generates and consumes source maps +homepage: https://github.com/mozilla/source-map +license: other +licenses: +- sources: LICENSE + text: |2 + + Copyright (c) 2009-2011, Mozilla Foundation and contributors + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the names of the Mozilla Foundation nor the names of project + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/space-separated-tokens.dep.yml b/.licenses/npm/space-separated-tokens.dep.yml new file mode 100644 index 000000000..dd5d81762 --- /dev/null +++ b/.licenses/npm/space-separated-tokens.dep.yml @@ -0,0 +1,72 @@ +--- +name: space-separated-tokens +version: 2.0.2 +type: npm +summary: Parse and stringify space separated tokens +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/wooorm/space-separated-tokens/workflows/main/badge.svg + + [build]: https://github.com/wooorm/space-separated-tokens/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/space-separated-tokens.svg + + [coverage]: https://codecov.io/github/wooorm/space-separated-tokens + + [downloads-badge]: https://img.shields.io/npm/dm/space-separated-tokens.svg + + [downloads]: https://www.npmjs.com/package/space-separated-tokens + + [size-badge]: https://img.shields.io/bundlephobia/minzip/space-separated-tokens.svg + + [size]: https://bundlephobia.com/result?p=space-separated-tokens + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [contribute]: https://opensource.guide/how-to-contribute/ + + [license]: license + + [author]: https://wooorm.com + + [spec]: https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#space-separated-tokens + + [hast]: https://github.com/syntax-tree/hast +notices: [] diff --git a/.licenses/npm/split-on-first.dep.yml b/.licenses/npm/split-on-first.dep.yml new file mode 100644 index 000000000..f9f917bec --- /dev/null +++ b/.licenses/npm/split-on-first.dep.yml @@ -0,0 +1,22 @@ +--- +name: split-on-first +version: 1.1.0 +type: npm +summary: Split a string on the first occurance of a given separator +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/split.dep.yml b/.licenses/npm/split.dep.yml new file mode 100644 index 000000000..931d0e7f7 --- /dev/null +++ b/.licenses/npm/split.dep.yml @@ -0,0 +1,26 @@ +--- +name: split +version: 0.3.3 +type: npm +summary: split a Text Stream into a Line Stream +homepage: http://github.com/dominictarr/split +license: mit +licenses: +- sources: LICENCE + text: "Copyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of + charge, \nto any person obtaining a copy of this software and \nassociated documentation + files (the \"Software\"), to \ndeal in the Software without restriction, including + \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, + sublicense, and/or sell \ncopies of the Software, and to permit persons to whom + \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe + above copyright notice and this permission notice \nshall be included in all copies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE." +- sources: readme.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/sprintf-js-1.0.3.dep.yml b/.licenses/npm/sprintf-js-1.0.3.dep.yml new file mode 100644 index 000000000..0b10755e8 --- /dev/null +++ b/.licenses/npm/sprintf-js-1.0.3.dep.yml @@ -0,0 +1,37 @@ +--- +name: sprintf-js +version: 1.0.3 +type: npm +summary: JavaScript sprintf implementation +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright (c) 2007-2014, Alexandru Marasteanu + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of this software nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: "**sprintf.js** is licensed under the terms of the 3-clause BSD license." +notices: [] diff --git a/.licenses/npm/sprintf-js-1.1.3.dep.yml b/.licenses/npm/sprintf-js-1.1.3.dep.yml new file mode 100644 index 000000000..2419eb398 --- /dev/null +++ b/.licenses/npm/sprintf-js-1.1.3.dep.yml @@ -0,0 +1,37 @@ +--- +name: sprintf-js +version: 1.1.3 +type: npm +summary: JavaScript sprintf implementation +homepage: +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2007-present, Alexandru Mărășteanu + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of this software nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: README.md + text: "**sprintf-js** is licensed under the terms of the BSD 3-Clause License." +notices: [] diff --git a/.licenses/npm/stat-mode.dep.yml b/.licenses/npm/stat-mode.dep.yml new file mode 100644 index 000000000..b54e29ff1 --- /dev/null +++ b/.licenses/npm/stat-mode.dep.yml @@ -0,0 +1,35 @@ +--- +name: stat-mode +version: 1.0.0 +type: npm +summary: Offers convenient getters and setters for the stat `mode` +homepage: https://github.com/TooTallNate/stat-mode +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2016 Nathan Rajlich + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/statuses.dep.yml b/.licenses/npm/statuses.dep.yml new file mode 100644 index 000000000..04677310c --- /dev/null +++ b/.licenses/npm/statuses.dep.yml @@ -0,0 +1,47 @@ +--- +name: statuses +version: 2.0.1 +type: npm +summary: HTTP status utility +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + + The MIT License (MIT) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [ci-image]: https://badgen.net/github/checks/jshttp/statuses/master?label=ci + [ci-url]: https://github.com/jshttp/statuses/actions?query=workflow%3Aci + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/statuses/master + [coveralls-url]: https://coveralls.io/r/jshttp/statuses?branch=master + [node-version-image]: https://badgen.net/npm/node/statuses + [node-version-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/statuses + [npm-url]: https://npmjs.org/package/statuses + [npm-version-image]: https://badgen.net/npm/v/statuses +notices: [] diff --git a/.licenses/npm/stop-iteration-iterator.dep.yml b/.licenses/npm/stop-iteration-iterator.dep.yml new file mode 100644 index 000000000..8ed293d73 --- /dev/null +++ b/.licenses/npm/stop-iteration-iterator.dep.yml @@ -0,0 +1,33 @@ +--- +name: stop-iteration-iterator +version: 1.1.0 +type: npm +summary: Firefox 17-26 iterators throw a StopIteration object to indicate "done". + This normalizes it. +homepage: https://github.com/ljharb/stop-iteration-iterator#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2023 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/stream-combiner.dep.yml b/.licenses/npm/stream-combiner.dep.yml new file mode 100644 index 000000000..f34c63327 --- /dev/null +++ b/.licenses/npm/stream-combiner.dep.yml @@ -0,0 +1,26 @@ +--- +name: stream-combiner +version: 0.0.4 +type: npm +summary: +homepage: https://github.com/dominictarr/stream-combiner +license: mit +licenses: +- sources: LICENSE + text: "Copyright (c) 2012 'Dominic Tarr'\n\nPermission is hereby granted, free of + charge, \nto any person obtaining a copy of this software and \nassociated documentation + files (the \"Software\"), to \ndeal in the Software without restriction, including + \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, + sublicense, and/or sell \ncopies of the Software, and to permit persons to whom + \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe + above copyright notice and this permission notice \nshall be included in all copies + or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", + WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE.\n" +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/streamsearch.dep.yml b/.licenses/npm/streamsearch.dep.yml new file mode 100644 index 000000000..0c7d5358d --- /dev/null +++ b/.licenses/npm/streamsearch.dep.yml @@ -0,0 +1,30 @@ +--- +name: streamsearch +version: 1.1.0 +type: npm +summary: Streaming Boyer-Moore-Horspool searching for node.js +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + Copyright Brian White. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/strict-uri-encode.dep.yml b/.licenses/npm/strict-uri-encode.dep.yml new file mode 100644 index 000000000..52665e852 --- /dev/null +++ b/.licenses/npm/strict-uri-encode.dep.yml @@ -0,0 +1,34 @@ +--- +name: strict-uri-encode +version: 2.0.0 +type: npm +summary: A stricter URI encode adhering to RFC 3986 +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Kevin Martensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Kevin Mårtensson](http://github.com/kevva) +notices: [] diff --git a/.licenses/npm/string-argv-0.1.2.dep.yml b/.licenses/npm/string-argv-0.1.2.dep.yml new file mode 100644 index 000000000..88b720e16 --- /dev/null +++ b/.licenses/npm/string-argv-0.1.2.dep.yml @@ -0,0 +1,34 @@ +--- +name: string-argv +version: 0.1.2 +type: npm +summary: string-argv parses a string into an argument array to mimic process.argv. + This is useful when testing Command Line Utilities that you want to pass arguments + to. +homepage: https://github.com/mccormicka/string-argv +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright 2014 Anthony McCormick + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/string-argv-0.3.1.dep.yml b/.licenses/npm/string-argv-0.3.1.dep.yml new file mode 100644 index 000000000..61c483ed5 --- /dev/null +++ b/.licenses/npm/string-argv-0.3.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: string-argv +version: 0.3.1 +type: npm +summary: string-argv parses a string into an argument array to mimic process.argv. + This is useful when testing Command Line Utilities that you want to pass arguments + to. +homepage: https://github.com/mccormicka/string-argv +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright 2014 Anthony McCormick + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/string-natural-compare.dep.yml b/.licenses/npm/string-natural-compare.dep.yml new file mode 100644 index 000000000..bd4918be1 --- /dev/null +++ b/.licenses/npm/string-natural-compare.dep.yml @@ -0,0 +1,35 @@ +--- +name: string-natural-compare +version: 2.0.3 +type: npm +summary: Compare alphanumeric strings the same way a human would, using a natural + order algorithm +homepage: https://github.com/nwoltman/string-natural-compare +license: mit +licenses: +- sources: LICENSE.txt + text: |+ + The MIT License (MIT) + + Copyright (c) 2015-2016 Nathan Woltman + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/string-width-1.0.2.dep.yml b/.licenses/npm/string-width-1.0.2.dep.yml new file mode 100644 index 000000000..2bffc065e --- /dev/null +++ b/.licenses/npm/string-width-1.0.2.dep.yml @@ -0,0 +1,35 @@ +--- +name: string-width +version: 1.0.2 +type: npm +summary: Get the visual width of a string - the number of columns required to display + it +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/string-width-4.2.3.dep.yml b/.licenses/npm/string-width-4.2.3.dep.yml new file mode 100644 index 000000000..e7d6c0bf4 --- /dev/null +++ b/.licenses/npm/string-width-4.2.3.dep.yml @@ -0,0 +1,21 @@ +--- +name: string-width +version: 4.2.3 +type: npm +summary: Get the visual width of a string - the number of columns required to display + it +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/string-width-5.1.2.dep.yml b/.licenses/npm/string-width-5.1.2.dep.yml new file mode 100644 index 000000000..24a8551ef --- /dev/null +++ b/.licenses/npm/string-width-5.1.2.dep.yml @@ -0,0 +1,21 @@ +--- +name: string-width +version: 5.1.2 +type: npm +summary: Get the visual width of a string - the number of columns required to display + it +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/string-width-cjs.dep.yml b/.licenses/npm/string-width-cjs.dep.yml new file mode 100644 index 000000000..1cecb5690 --- /dev/null +++ b/.licenses/npm/string-width-cjs.dep.yml @@ -0,0 +1,21 @@ +--- +name: string-width-cjs +version: 4.2.3 +type: npm +summary: Get the visual width of a string - the number of columns required to display + it +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/string_decoder-1.1.1.dep.yml b/.licenses/npm/string_decoder-1.1.1.dep.yml new file mode 100644 index 000000000..ab0a64f79 --- /dev/null +++ b/.licenses/npm/string_decoder-1.1.1.dep.yml @@ -0,0 +1,60 @@ +--- +name: string_decoder +version: 1.1.1 +type: npm +summary: The string_decoder module from Node core +homepage: https://github.com/nodejs/string_decoder +license: other +licenses: +- sources: LICENSE + text: |+ + Node.js is licensed for use as follows: + + """ + Copyright Node.js contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ + + This license applies to parts of Node.js originating from the + https://github.com/joyent/node repository: + + """ + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ + +notices: [] +... diff --git a/.licenses/npm/string_decoder-1.3.0.dep.yml b/.licenses/npm/string_decoder-1.3.0.dep.yml new file mode 100644 index 000000000..84d1b1ebd --- /dev/null +++ b/.licenses/npm/string_decoder-1.3.0.dep.yml @@ -0,0 +1,60 @@ +--- +name: string_decoder +version: 1.3.0 +type: npm +summary: The string_decoder module from Node core +homepage: https://github.com/nodejs/string_decoder +license: other +licenses: +- sources: LICENSE + text: |+ + Node.js is licensed for use as follows: + + """ + Copyright Node.js contributors. All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ + + This license applies to parts of Node.js originating from the + https://github.com/joyent/node repository: + + """ + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. + """ + +notices: [] +... diff --git a/.licenses/npm/stringify-object.dep.yml b/.licenses/npm/stringify-object.dep.yml new file mode 100644 index 000000000..75ed6ff23 --- /dev/null +++ b/.licenses/npm/stringify-object.dep.yml @@ -0,0 +1,35 @@ +--- +name: stringify-object +version: 3.3.0 +type: npm +summary: Stringify an object/array like JSON.stringify just without all the double-quotes +homepage: +license: bsd-2-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015, Yeoman team + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +- sources: readme.md + text: BSD-2-Clause © Yeoman team +notices: [] diff --git a/.licenses/npm/strip-ansi-3.0.1.dep.yml b/.licenses/npm/strip-ansi-3.0.1.dep.yml new file mode 100644 index 000000000..b41a199e1 --- /dev/null +++ b/.licenses/npm/strip-ansi-3.0.1.dep.yml @@ -0,0 +1,34 @@ +--- +name: strip-ansi +version: 3.0.1 +type: npm +summary: Strip ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/strip-ansi-6.0.1.dep.yml b/.licenses/npm/strip-ansi-6.0.1.dep.yml new file mode 100644 index 000000000..4e722bc76 --- /dev/null +++ b/.licenses/npm/strip-ansi-6.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: strip-ansi +version: 6.0.1 +type: npm +summary: Strip ANSI escape codes from a string +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/strip-ansi-7.1.0.dep.yml b/.licenses/npm/strip-ansi-7.1.0.dep.yml new file mode 100644 index 000000000..b8cfc08df --- /dev/null +++ b/.licenses/npm/strip-ansi-7.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: strip-ansi +version: 7.1.0 +type: npm +summary: Strip ANSI escape codes from a string +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/strip-ansi-cjs.dep.yml b/.licenses/npm/strip-ansi-cjs.dep.yml new file mode 100644 index 000000000..7d9eebbae --- /dev/null +++ b/.licenses/npm/strip-ansi-cjs.dep.yml @@ -0,0 +1,20 @@ +--- +name: strip-ansi-cjs +version: 6.0.1 +type: npm +summary: Strip ANSI escape codes from a string +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/strip-dirs.dep.yml b/.licenses/npm/strip-dirs.dep.yml new file mode 100644 index 000000000..b40084246 --- /dev/null +++ b/.licenses/npm/strip-dirs.dep.yml @@ -0,0 +1,37 @@ +--- +name: strip-dirs +version: 2.1.0 +type: npm +summary: Remove leading directory components from a path, like tar's --strip-components + option +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 - 2016 Shinnosuke Watanabe + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + Copyright (c) 2014 - 2016 [Shinnosuke Watanabe](https://github.com/shinnn) + + Licensed under [the MIT License](./LICENSE). +notices: [] diff --git a/.licenses/npm/strip-eof.dep.yml b/.licenses/npm/strip-eof.dep.yml new file mode 100644 index 000000000..ebb2e9f83 --- /dev/null +++ b/.licenses/npm/strip-eof.dep.yml @@ -0,0 +1,34 @@ +--- +name: strip-eof +version: 1.0.0 +type: npm +summary: Strip the End-Of-File (EOF) character from a string/buffer +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/strip-final-newline.dep.yml b/.licenses/npm/strip-final-newline.dep.yml new file mode 100644 index 000000000..ef98e3117 --- /dev/null +++ b/.licenses/npm/strip-final-newline.dep.yml @@ -0,0 +1,22 @@ +--- +name: strip-final-newline +version: 2.0.0 +type: npm +summary: Strip the final newline character from a string/buffer +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/strip-json-comments.dep.yml b/.licenses/npm/strip-json-comments.dep.yml new file mode 100644 index 000000000..cba3b35e9 --- /dev/null +++ b/.licenses/npm/strip-json-comments.dep.yml @@ -0,0 +1,34 @@ +--- +name: strip-json-comments +version: 2.0.1 +type: npm +summary: Strip comments from JSON. Lets you use comments in your JSON files! +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/strip-outer.dep.yml b/.licenses/npm/strip-outer.dep.yml new file mode 100644 index 000000000..d185bac2f --- /dev/null +++ b/.licenses/npm/strip-outer.dep.yml @@ -0,0 +1,34 @@ +--- +name: strip-outer +version: 1.0.1 +type: npm +summary: Strip a substring from the start/end of a string +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/style-to-object.dep.yml b/.licenses/npm/style-to-object.dep.yml new file mode 100644 index 000000000..7460ca3f1 --- /dev/null +++ b/.licenses/npm/style-to-object.dep.yml @@ -0,0 +1,35 @@ +--- +name: style-to-object +version: 0.4.4 +type: npm +summary: Converts inline style to object. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2017 Menglin "Mark" Xu + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/remarkablemark/style-to-object/blob/master/LICENSE)" +notices: [] diff --git a/.licenses/npm/stylis.dep.yml b/.licenses/npm/stylis.dep.yml new file mode 100644 index 000000000..abe1747ae --- /dev/null +++ b/.licenses/npm/stylis.dep.yml @@ -0,0 +1,34 @@ +--- +name: stylis +version: 4.2.0 +type: npm +summary: A Light–weight CSS Preprocessor +homepage: https://github.com/thysultan/stylis.js +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2016-present Sultan Tarimo + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: Stylis is [MIT licensed](./LICENSE). +notices: [] diff --git a/.licenses/npm/sumchecker.dep.yml b/.licenses/npm/sumchecker.dep.yml new file mode 100644 index 000000000..0119f7e9c --- /dev/null +++ b/.licenses/npm/sumchecker.dep.yml @@ -0,0 +1,213 @@ +--- +name: sumchecker +version: 3.0.1 +type: npm +summary: Checksum validator +homepage: https://github.com/malept/sumchecker#readme +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +notices: [] diff --git a/.licenses/npm/superagent.dep.yml b/.licenses/npm/superagent.dep.yml new file mode 100644 index 000000000..09f06a10e --- /dev/null +++ b/.licenses/npm/superagent.dep.yml @@ -0,0 +1,35 @@ +--- +name: superagent +version: 7.1.6 +type: npm +summary: elegant & feature rich browser / node HTTP with a fluent API +homepage: https://github.com/visionmedia/superagent +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2016 TJ Holowaychuk + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE) © TJ Holowaychuk" +notices: [] diff --git a/.licenses/npm/supports-color.dep.yml b/.licenses/npm/supports-color.dep.yml new file mode 100644 index 000000000..0e9c4de2d --- /dev/null +++ b/.licenses/npm/supports-color.dep.yml @@ -0,0 +1,20 @@ +--- +name: supports-color +version: 7.2.0 +type: npm +summary: Detect whether a terminal supports color +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/supports-preserve-symlinks-flag.dep.yml b/.licenses/npm/supports-preserve-symlinks-flag.dep.yml new file mode 100644 index 000000000..d59d45269 --- /dev/null +++ b/.licenses/npm/supports-preserve-symlinks-flag.dep.yml @@ -0,0 +1,33 @@ +--- +name: supports-preserve-symlinks-flag +version: 1.0.0 +type: npm +summary: Determine if the current node version supports the `--preserve-symlinks` + flag. +homepage: https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2022 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/symbol-tree.dep.yml b/.licenses/npm/symbol-tree.dep.yml new file mode 100644 index 000000000..5bb7ca1dd --- /dev/null +++ b/.licenses/npm/symbol-tree.dep.yml @@ -0,0 +1,33 @@ +--- +name: symbol-tree +version: 3.2.4 +type: npm +summary: Turn any collection of objects into its own efficient tree or linked list + using Symbol +homepage: https://github.com/jsdom/js-symbol-tree#symbol-tree +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015 Joris van der Wel + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/tar-fs-1.16.4.dep.yml b/.licenses/npm/tar-fs-1.16.4.dep.yml new file mode 100644 index 000000000..da320d5db --- /dev/null +++ b/.licenses/npm/tar-fs-1.16.4.dep.yml @@ -0,0 +1,34 @@ +--- +name: tar-fs +version: 1.16.4 +type: npm +summary: filesystem bindings for tar-stream +homepage: https://github.com/mafintosh/tar-fs +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/tar-fs-2.1.2.dep.yml b/.licenses/npm/tar-fs-2.1.2.dep.yml new file mode 100644 index 000000000..c6b72d3fc --- /dev/null +++ b/.licenses/npm/tar-fs-2.1.2.dep.yml @@ -0,0 +1,34 @@ +--- +name: tar-fs +version: 2.1.2 +type: npm +summary: filesystem bindings for tar-stream +homepage: https://github.com/mafintosh/tar-fs +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/tar-stream-1.6.2.dep.yml b/.licenses/npm/tar-stream-1.6.2.dep.yml new file mode 100644 index 000000000..7ac672f51 --- /dev/null +++ b/.licenses/npm/tar-stream-1.6.2.dep.yml @@ -0,0 +1,36 @@ +--- +name: tar-stream +version: 1.6.2 +type: npm +summary: tar-stream is a streaming tar parser and generator and nothing else. It is + streams2 and operates purely using streams which means you can easily extract/parse + tarballs without ever hitting the file system. +homepage: https://github.com/mafintosh/tar-stream +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/tar-stream-2.2.0.dep.yml b/.licenses/npm/tar-stream-2.2.0.dep.yml new file mode 100644 index 000000000..7368e77cd --- /dev/null +++ b/.licenses/npm/tar-stream-2.2.0.dep.yml @@ -0,0 +1,36 @@ +--- +name: tar-stream +version: 2.2.0 +type: npm +summary: tar-stream is a streaming tar parser and generator and nothing else. It is + streams2 and operates purely using streams which means you can easily extract/parse + tarballs without ever hitting the file system. +homepage: https://github.com/mafintosh/tar-stream +license: mit +licenses: +- sources: LICENSE + text: |- + The MIT License (MIT) + + Copyright (c) 2014 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/tar.dep.yml b/.licenses/npm/tar.dep.yml new file mode 100644 index 000000000..97f16087a --- /dev/null +++ b/.licenses/npm/tar.dep.yml @@ -0,0 +1,26 @@ +--- +name: tar +version: 6.2.1 +type: npm +summary: tar for node +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/temp-dir.dep.yml b/.licenses/npm/temp-dir.dep.yml new file mode 100644 index 000000000..55208d2c8 --- /dev/null +++ b/.licenses/npm/temp-dir.dep.yml @@ -0,0 +1,22 @@ +--- +name: temp-dir +version: 2.0.0 +type: npm +summary: Get the real path of the system temp directory +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/temp.dep.yml b/.licenses/npm/temp.dep.yml new file mode 100644 index 000000000..2d3fb42ab --- /dev/null +++ b/.licenses/npm/temp.dep.yml @@ -0,0 +1,31 @@ +--- +name: temp +version: 0.9.4 +type: npm +summary: Temporary files and directories +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2010-2014 Bruce Williams + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/through.dep.yml b/.licenses/npm/through.dep.yml new file mode 100644 index 000000000..369f47af5 --- /dev/null +++ b/.licenses/npm/through.dep.yml @@ -0,0 +1,43 @@ +--- +name: through +version: 2.3.8 +type: npm +summary: simplified stream construction +homepage: https://github.com/dominictarr/through +license: other +licenses: +- sources: LICENSE.APACHE2 + text: | + Apache License, Version 2.0 + + Copyright (c) 2011 Dominic Tarr + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +- sources: LICENSE.MIT + text: "The MIT License\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby + granted, free of charge, \nto any person obtaining a copy of this software and + \nassociated documentation files (the \"Software\"), to \ndeal in the Software + without restriction, including \nwithout limitation the rights to use, copy, modify, + \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, + and to permit persons to whom \nthe Software is furnished to do so, \nsubject + to the following conditions:\n\nThe above copyright notice and this permission + notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE + SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR + A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" +- sources: readme.markdown + text: MIT / Apache2 +notices: [] diff --git a/.licenses/npm/tippy.js.dep.yml b/.licenses/npm/tippy.js.dep.yml new file mode 100644 index 000000000..eb9d8a167 --- /dev/null +++ b/.licenses/npm/tippy.js.dep.yml @@ -0,0 +1,34 @@ +--- +name: tippy.js +version: 6.3.7 +type: npm +summary: The complete tooltip, popover, dropdown, and menu solution for the web +homepage: https://atomiks.github.io/tippyjs/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2017-present atomiks + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/to-buffer.dep.yml b/.licenses/npm/to-buffer.dep.yml new file mode 100644 index 000000000..37cbc58f5 --- /dev/null +++ b/.licenses/npm/to-buffer.dep.yml @@ -0,0 +1,35 @@ +--- +name: to-buffer +version: 1.1.1 +type: npm +summary: Pass in a string, get a buffer back. Pass in a buffer, get the same buffer + back +homepage: https://github.com/mafintosh/to-buffer +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2016 Mathias Buus + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/to-regex-range.dep.yml b/.licenses/npm/to-regex-range.dep.yml new file mode 100644 index 000000000..ebc941e27 --- /dev/null +++ b/.licenses/npm/to-regex-range.dep.yml @@ -0,0 +1,41 @@ +--- +name: to-regex-range +version: 5.0.1 +type: npm +summary: Pass two numbers, get a regex-compatible source string for matching ranges. + Validated against more than 2.78 million test assertions. +homepage: https://github.com/micromatch/to-regex-range +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2015-present, Jon Schlinkert. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: README.md + text: |- + Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert). + Released under the [MIT License](LICENSE). + + *** + + _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 07, 2019._ +notices: [] diff --git a/.licenses/npm/toidentifier.dep.yml b/.licenses/npm/toidentifier.dep.yml new file mode 100644 index 000000000..330de0c9a --- /dev/null +++ b/.licenses/npm/toidentifier.dep.yml @@ -0,0 +1,44 @@ +--- +name: toidentifier +version: 1.0.1 +type: npm +summary: Convert a string of words to a JavaScript identifier +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2016 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [codecov-image]: https://img.shields.io/codecov/c/github/component/toidentifier.svg + [codecov-url]: https://codecov.io/gh/component/toidentifier + [downloads-image]: https://img.shields.io/npm/dm/toidentifier.svg + [downloads-url]: https://npmjs.org/package/toidentifier + [github-actions-ci-image]: https://img.shields.io/github/workflow/status/component/toidentifier/ci/master?label=ci + [github-actions-ci-url]: https://github.com/component/toidentifier?query=workflow%3Aci + [npm-image]: https://img.shields.io/npm/v/toidentifier.svg + [npm-url]: https://npmjs.org/package/toidentifier +notices: [] diff --git a/.licenses/npm/tough-cookie.dep.yml b/.licenses/npm/tough-cookie.dep.yml new file mode 100644 index 000000000..06566540f --- /dev/null +++ b/.licenses/npm/tough-cookie.dep.yml @@ -0,0 +1,23 @@ +--- +name: tough-cookie +version: 4.1.4 +type: npm +summary: RFC6265 Cookies and Cookie Jar for node.js +homepage: https://github.com/salesforce/tough-cookie +license: bsd-3-clause +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015, Salesforce.com, Inc. + All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + 3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/tr46-0.0.3.dep.yml b/.licenses/npm/tr46-0.0.3.dep.yml new file mode 100644 index 000000000..3bacc6ec4 --- /dev/null +++ b/.licenses/npm/tr46-0.0.3.dep.yml @@ -0,0 +1,30 @@ +--- +name: tr46 +version: 0.0.3 +type: npm +summary: An implementation of the Unicode TR46 spec +homepage: https://github.com/Sebmaster/tr46.js#readme +license: mit +licenses: +- sources: Auto-generated MIT license text + text: | + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/tr46-4.1.1.dep.yml b/.licenses/npm/tr46-4.1.1.dep.yml new file mode 100644 index 000000000..77a0036dc --- /dev/null +++ b/.licenses/npm/tr46-4.1.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: tr46 +version: 4.1.1 +type: npm +summary: 'An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing' +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) Sebastian Mayr + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/trash.dep.yml b/.licenses/npm/trash.dep.yml new file mode 100644 index 000000000..e09b23251 --- /dev/null +++ b/.licenses/npm/trash.dep.yml @@ -0,0 +1,20 @@ +--- +name: trash +version: 7.2.0 +type: npm +summary: Move files and folders to the trash +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/traverse.dep.yml b/.licenses/npm/traverse.dep.yml new file mode 100644 index 000000000..6aa35da90 --- /dev/null +++ b/.licenses/npm/traverse.dep.yml @@ -0,0 +1,26 @@ +--- +name: traverse +version: 0.3.9 +type: npm +summary: Traverse and transform objects by visiting every node on a recursive walk +homepage: +license: other +licenses: +- sources: LICENSE + text: "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free + software released under the MIT/X11 license:\nhttp://www.opensource.org/licenses/mit-license.php + \n\nCopyright 2010 James Halliday (mail@substack.net)\n\nPermission is hereby + granted, free of charge, to any person obtaining a copy\nof this software and + associated documentation files (the \"Software\"), to deal\nin the Software without + restriction, including without limitation the rights\nto use, copy, modify, merge, + publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit + persons to whom the Software is\nfurnished to do so, subject to the following + conditions:\n\nThe above copyright notice and this permission notice shall be + included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE + IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" +notices: [] diff --git a/.licenses/npm/tree-kill.dep.yml b/.licenses/npm/tree-kill.dep.yml new file mode 100644 index 000000000..d054180be --- /dev/null +++ b/.licenses/npm/tree-kill.dep.yml @@ -0,0 +1,34 @@ +--- +name: tree-kill +version: 1.2.2 +type: npm +summary: kill trees of processes +homepage: https://github.com/pkrumins/node-tree-kill +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2018 Peter Krumins + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/trim-lines.dep.yml b/.licenses/npm/trim-lines.dep.yml new file mode 100644 index 000000000..90d12cf4a --- /dev/null +++ b/.licenses/npm/trim-lines.dep.yml @@ -0,0 +1,68 @@ +--- +name: trim-lines +version: 3.0.1 +type: npm +summary: Remove spaces and tabs around line-breaks +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/wooorm/trim-lines/workflows/main/badge.svg + + [build]: https://github.com/wooorm/trim-lines/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/trim-lines.svg + + [coverage]: https://codecov.io/github/wooorm/trim-lines + + [downloads-badge]: https://img.shields.io/npm/dm/trim-lines.svg + + [downloads]: https://www.npmjs.com/package/trim-lines + + [size-badge]: https://img.shields.io/bundlephobia/minzip/trim-lines.svg + + [size]: https://bundlephobia.com/result?p=trim-lines + + [npm]: https://docs.npmjs.com/cli/install + + [license]: license + + [author]: https://wooorm.com + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [contribute]: https://opensource.guide/how-to-contribute/ +notices: [] diff --git a/.licenses/npm/trim-repeated.dep.yml b/.licenses/npm/trim-repeated.dep.yml new file mode 100644 index 000000000..2bc454c31 --- /dev/null +++ b/.licenses/npm/trim-repeated.dep.yml @@ -0,0 +1,34 @@ +--- +name: trim-repeated +version: 1.0.0 +type: npm +summary: 'Trim a consecutively repeated substring: foo--bar---baz → foo-bar-baz' +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/trough.dep.yml b/.licenses/npm/trough.dep.yml new file mode 100644 index 000000000..f763c40bf --- /dev/null +++ b/.licenses/npm/trough.dep.yml @@ -0,0 +1,83 @@ +--- +name: trough +version: 2.2.0 +type: npm +summary: "`trough` is middleware" +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][file-license] © [Titus Wormer][wooorm] + + + + [api-callback]: #callback + + [api-middleware]: #middleware + + [api-pipeline]: #pipeline + + [api-run]: #run + + [api-trough]: #trough + + [api-use]: #use + + [api-wrap]: #wrapmiddleware-callback + + [badge-build-image]: https://github.com/wooorm/trough/workflows/main/badge.svg + + [badge-build-url]: https://github.com/wooorm/trough/actions + + [badge-coverage-image]: https://img.shields.io/codecov/c/github/wooorm/trough.svg + + [badge-coverage-url]: https://codecov.io/github/wooorm/trough + + [badge-downloads-image]: https://img.shields.io/npm/dm/trough.svg + + [badge-downloads-url]: https://www.npmjs.com/package/trough + + [badge-size-image]: https://img.shields.io/bundlejs/size/trough + + [badge-size-url]: https://bundlejs.com/?q=trough + + [npm-install]: https://docs.npmjs.com/cli/install + + [esm-sh]: https://esm.sh + + [file-license]: license + + [github-gist-esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [github-segmentio-ware]: https://github.com/segmentio/ware + + [open-source-guide-contribute]: https://opensource.guide/how-to-contribute/ + + [typescript]: https://www.typescriptlang.org + + [wooorm]: https://wooorm.com +notices: [] diff --git a/.licenses/npm/ts-error.dep.yml b/.licenses/npm/ts-error.dep.yml new file mode 100644 index 000000000..3ae03d333 --- /dev/null +++ b/.licenses/npm/ts-error.dep.yml @@ -0,0 +1,38 @@ +--- +name: ts-error +version: 1.0.6 +type: npm +summary: An extendable Error class that actually works, with TypeScript definition + files, supporting old and new style classes and compatibility even with the oldest + browsers +homepage: https://github.com/gfmio/ts-error#readme +license: mit +licenses: +- sources: LICENSE + text: |+ + MIT License + + Copyright (c) 2018 Frédérique Mittelstaedt + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: MIT (see [./LICENSE](./LICENSE)). +notices: [] +... diff --git a/.licenses/npm/ts-md5.dep.yml b/.licenses/npm/ts-md5.dep.yml new file mode 100644 index 000000000..06d518a77 --- /dev/null +++ b/.licenses/npm/ts-md5.dep.yml @@ -0,0 +1,34 @@ +--- +name: ts-md5 +version: 1.3.1 +type: npm +summary: TypeScript MD5 implementation +homepage: https://github.com/cotag/ts-md5 +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2020 Place Technology + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/tslib.dep.yml b/.licenses/npm/tslib.dep.yml new file mode 100644 index 000000000..4611137ca --- /dev/null +++ b/.licenses/npm/tslib.dep.yml @@ -0,0 +1,23 @@ +--- +name: tslib +version: 2.8.1 +type: npm +summary: Runtime library for TypeScript helper functions +homepage: https://www.typescriptlang.org/ +license: 0bsd +licenses: +- sources: LICENSE.txt + text: |- + Copyright (c) Microsoft Corporation. + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/tunnel-agent.dep.yml b/.licenses/npm/tunnel-agent.dep.yml new file mode 100644 index 000000000..d81e6c5a3 --- /dev/null +++ b/.licenses/npm/tunnel-agent.dep.yml @@ -0,0 +1,67 @@ +--- +name: tunnel-agent +version: 0.6.0 +type: npm +summary: HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone + module. +homepage: +license: apache-2.0 +licenses: +- sources: LICENSE + text: |- + Apache License + + Version 2.0, January 2004 + + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + You must give any other recipients of the Work or Derivative Works a copy of this License; and + + You must cause any modified files to carry prominent notices stating that You changed the files; and + + You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS +notices: [] diff --git a/.licenses/npm/type-fest-0.13.1.dep.yml b/.licenses/npm/type-fest-0.13.1.dep.yml new file mode 100644 index 000000000..ae1e2dd39 --- /dev/null +++ b/.licenses/npm/type-fest-0.13.1.dep.yml @@ -0,0 +1,25 @@ +--- +name: type-fest +version: 0.13.1 +type: npm +summary: A collection of essential TypeScript types +homepage: +license: other +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https:/sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: "(MIT OR CC0-1.0)\n\n---\n\n
\n\t\n\t\tGet + professional support for this package with a Tidelift subscription\n\t\n\t
\n\t\n\t\tTidelift + helps make open source sustainable for maintainers while giving companies
assurances + about security, maintenance, and licensing for their dependencies.\n\t
\n
" +notices: [] diff --git a/.licenses/npm/type-fest-0.21.3.dep.yml b/.licenses/npm/type-fest-0.21.3.dep.yml new file mode 100644 index 000000000..a80a6d290 --- /dev/null +++ b/.licenses/npm/type-fest-0.21.3.dep.yml @@ -0,0 +1,25 @@ +--- +name: type-fest +version: 0.21.3 +type: npm +summary: A collection of essential TypeScript types +homepage: +license: other +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https:/sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: "(MIT OR CC0-1.0)\n\n---\n\n
\n\t\n\t\tGet + professional support for this package with a Tidelift subscription\n\t\n\t
\n\t\n\t\tTidelift + helps make open source sustainable for maintainers while giving companies
assurances + about security, maintenance, and licensing for their dependencies.\n\t
\n
" +notices: [] diff --git a/.licenses/npm/type-fest-2.19.0.dep.yml b/.licenses/npm/type-fest-2.19.0.dep.yml new file mode 100644 index 000000000..ce45b13ff --- /dev/null +++ b/.licenses/npm/type-fest-2.19.0.dep.yml @@ -0,0 +1,15 @@ +--- +name: type-fest +version: 2.19.0 +type: npm +summary: A collection of essential TypeScript types +homepage: +license: other +licenses: +- sources: readme.md + text: "SPDX-License-Identifier: (MIT OR CC0-1.0)\n\n---\n\n
\n\t\n\t\tGet + professional support for this package with a Tidelift subscription\n\t\n\t
\n\t\n\t\tTidelift + helps make open source sustainable for maintainers while giving companies
assurances + about security, maintenance, and licensing for their dependencies.\n\t
\n
" +notices: [] diff --git a/.licenses/npm/type-is.dep.yml b/.licenses/npm/type-is.dep.yml new file mode 100644 index 000000000..fef20df9e --- /dev/null +++ b/.licenses/npm/type-is.dep.yml @@ -0,0 +1,47 @@ +--- +name: type-is +version: 1.6.18 +type: npm +summary: Infer the content-type of a request. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2014-2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/type-is/master + [coveralls-url]: https://coveralls.io/r/jshttp/type-is?branch=master + [node-version-image]: https://badgen.net/npm/node/type-is + [node-version-url]: https://nodejs.org/en/download + [npm-downloads-image]: https://badgen.net/npm/dm/type-is + [npm-url]: https://npmjs.org/package/type-is + [npm-version-image]: https://badgen.net/npm/v/type-is + [travis-image]: https://badgen.net/travis/jshttp/type-is/master + [travis-url]: https://travis-ci.org/jshttp/type-is +notices: [] diff --git a/.licenses/npm/typedarray.dep.yml b/.licenses/npm/typedarray.dep.yml new file mode 100644 index 000000000..dd7d9a1d1 --- /dev/null +++ b/.licenses/npm/typedarray.dep.yml @@ -0,0 +1,48 @@ +--- +name: typedarray +version: 0.0.6 +type: npm +summary: TypedArray polyfill for old browsers +homepage: https://github.com/substack/typedarray +license: other +licenses: +- sources: LICENSE + text: | + /* + Copyright (c) 2010, Linden Research, Inc. + Copyright (c) 2012, Joshua Bell + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + $/LicenseInfo$ + */ + + // Original can be found at: + // https://bitbucket.org/lindenlab/llsd + // Modifications by Joshua Bell inexorabletash@gmail.com + // https://github.com/inexorabletash/polyfill + + // ES3/ES5 implementation of the Krhonos Typed Array Specification + // Ref: http://www.khronos.org/registry/typedarray/specs/latest/ + // Date: 2011-02-01 + // + // Variations: + // * Allows typed_array.get/set() as alias for subscripts (typed_array[]) +- sources: readme.markdown + text: MIT +notices: [] diff --git a/.licenses/npm/uc.micro.dep.yml b/.licenses/npm/uc.micro.dep.yml new file mode 100644 index 000000000..92015b117 --- /dev/null +++ b/.licenses/npm/uc.micro.dep.yml @@ -0,0 +1,31 @@ +--- +name: uc.micro +version: 1.0.6 +type: npm +summary: Micro subset of unicode data files for markdown-it projects. +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright Mathias Bynens + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/unbzip2-stream.dep.yml b/.licenses/npm/unbzip2-stream.dep.yml new file mode 100644 index 000000000..55a63fbcb --- /dev/null +++ b/.licenses/npm/unbzip2-stream.dep.yml @@ -0,0 +1,35 @@ +--- +name: unbzip2-stream +version: 1.4.3 +type: npm +summary: streaming unbzip2 implementation in pure javascript for node and browsers +homepage: +license: other +licenses: +- sources: LICENSE + text: | + Copyright (c) 2017 by Jan Boelsche (jan@lagomorph.de) + + based on bzip2.js - a small bzip2 decompression implementation + Copyright 2011 by antimatter15 (antimatter15@gmail.com) + + Based on micro-bunzip by Rob Landley (rob@landley.net). + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH + THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/undici-types-6.19.8.dep.yml b/.licenses/npm/undici-types-6.19.8.dep.yml new file mode 100644 index 000000000..1116934a5 --- /dev/null +++ b/.licenses/npm/undici-types-6.19.8.dep.yml @@ -0,0 +1,32 @@ +--- +name: undici-types +version: 6.19.8 +type: npm +summary: A stand-alone types package for Undici +homepage: https://undici.nodejs.org +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Matteo Collina and Undici contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/undici-types-6.20.0.dep.yml b/.licenses/npm/undici-types-6.20.0.dep.yml new file mode 100644 index 000000000..b2706ae51 --- /dev/null +++ b/.licenses/npm/undici-types-6.20.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: undici-types +version: 6.20.0 +type: npm +summary: A stand-alone types package for Undici +homepage: https://undici.nodejs.org +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Matteo Collina and Undici contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/unfetch.dep.yml b/.licenses/npm/unfetch.dep.yml new file mode 100644 index 000000000..771ff14aa --- /dev/null +++ b/.licenses/npm/unfetch.dep.yml @@ -0,0 +1,34 @@ +--- +name: unfetch +version: 4.2.0 +type: npm +summary: Bare minimum fetch polyfill in 500 bytes +homepage: https://github.com/developit/unfetch +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2017 Jason Miller + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT License](LICENSE.md) © [Jason Miller](https://jasonformat.com/)" +notices: [] diff --git a/.licenses/npm/unified.dep.yml b/.licenses/npm/unified.dep.yml new file mode 100644 index 000000000..4934766c6 --- /dev/null +++ b/.licenses/npm/unified.dep.yml @@ -0,0 +1,69 @@ +--- +name: unified +version: 10.1.2 +type: npm +summary: Interface for parsing, inspecting, transforming, and serializing content + through syntax trees +homepage: https://unifiedjs.com +license: other +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: |- + ``` + + `index.js`: + + ```js + import {remark} from 'remark' + import {toVFile} from 'to-vfile' + import {reporter} from 'vfile-reporter' + import {preset} from './preset.js' + + remark() + .use(preset) + .process(toVFile.readSync('example.md')) + .then( + (file) => { + console.error(reporter(file)) + toVFile.writeSync(file) + }, + (error) => { + // Handle your error here! + throw error + } + ) + ``` + + Yields: + + ```txt + example.md: no issues found + ``` + + `example.md` now contains: + + ```markdown +notices: [] diff --git a/.licenses/npm/unist-util-generated.dep.yml b/.licenses/npm/unist-util-generated.dep.yml new file mode 100644 index 000000000..a5688ac51 --- /dev/null +++ b/.licenses/npm/unist-util-generated.dep.yml @@ -0,0 +1,96 @@ +--- +name: unist-util-generated +version: 2.0.1 +type: npm +summary: unist utility to check if a node is generated +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/unist-util-generated/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/unist-util-generated/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-generated.svg + + [coverage]: https://codecov.io/github/syntax-tree/unist-util-generated + + [downloads-badge]: https://img.shields.io/npm/dm/unist-util-generated.svg + + [downloads]: https://www.npmjs.com/package/unist-util-generated + + [size-badge]: https://img.shields.io/bundlephobia/minzip/unist-util-generated.svg + + [size]: https://bundlephobia.com/result?p=unist-util-generated + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [unist]: https://github.com/syntax-tree/unist + + [node]: https://github.com/syntax-tree/unist#node + + [generated-term]: https://github.com/syntax-tree/unist#generated + + [unist-util-position]: https://github.com/syntax-tree/unist-util-position + + [unist-util-stringify-position]: https://github.com/syntax-tree/unist-util-stringify-position + + [generated]: #generatednode +notices: [] diff --git a/.licenses/npm/unist-util-is.dep.yml b/.licenses/npm/unist-util-is.dep.yml new file mode 100644 index 000000000..09e5e1eb8 --- /dev/null +++ b/.licenses/npm/unist-util-is.dep.yml @@ -0,0 +1,108 @@ +--- +name: unist-util-is +version: 5.2.1 +type: npm +summary: unist utility to check if a node passes a test +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT license) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/unist-util-is/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/unist-util-is/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-is.svg + + [coverage]: https://codecov.io/github/syntax-tree/unist-util-is + + [downloads-badge]: https://img.shields.io/npm/dm/unist-util-is.svg + + [downloads]: https://www.npmjs.com/package/unist-util-is + + [size-badge]: https://img.shields.io/bundlephobia/minzip/unist-util-is.svg + + [size]: https://bundlephobia.com/result?p=unist-util-is + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [unist]: https://github.com/syntax-tree/unist + + [node]: https://github.com/syntax-tree/unist#node + + [hast-util-is-element]: https://github.com/syntax-tree/hast-util-is-element + + [unist-util-select]: https://github.com/syntax-tree/unist-util-select + + [is]: #isnode-test-index-parent-context + + [convert]: #converttest + + [assertanything]: #assertanything + + [assertpredicate]: #assertpredicate + + [test]: #test + + [testfunctionanything]: #testfunctionanything + + [testfunctionpredicate]: #testfunctionpredicate + + [predicatetest]: #predicatetest +notices: [] diff --git a/.licenses/npm/unist-util-position.dep.yml b/.licenses/npm/unist-util-position.dep.yml new file mode 100644 index 000000000..349167431 --- /dev/null +++ b/.licenses/npm/unist-util-position.dep.yml @@ -0,0 +1,102 @@ +--- +name: unist-util-position +version: 4.0.4 +type: npm +summary: unist utility to get the position of a node +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/unist-util-position/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/unist-util-position/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-position.svg + + [coverage]: https://codecov.io/github/syntax-tree/unist-util-position + + [downloads-badge]: https://img.shields.io/npm/dm/unist-util-position.svg + + [downloads]: https://www.npmjs.com/package/unist-util-position + + [size-badge]: https://img.shields.io/bundlephobia/minzip/unist-util-position.svg + + [size]: https://bundlephobia.com/result?p=unist-util-position + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [unist]: https://github.com/syntax-tree/unist + + [node]: https://github.com/syntax-tree/unist#node + + [unist-position]: https://github.com/syntax-tree/unist#position + + [unist-point]: https://github.com/syntax-tree/unist#point + + [unist-util-generated]: https://github.com/syntax-tree/unist-util-generated + + [unist-util-stringify-position]: https://github.com/syntax-tree/unist-util-stringify-position + + [position]: #positionnode + + [pointend]: #pointendnode + + [pointstart]: #pointstartnode +notices: [] diff --git a/.licenses/npm/unist-util-stringify-position.dep.yml b/.licenses/npm/unist-util-stringify-position.dep.yml new file mode 100644 index 000000000..6af2e7a8d --- /dev/null +++ b/.licenses/npm/unist-util-stringify-position.dep.yml @@ -0,0 +1,93 @@ +--- +name: unist-util-stringify-position +version: 3.0.3 +type: npm +summary: unist utility to serialize a node, position, or point as a human readable + location +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/unist-util-stringify-position/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/unist-util-stringify-position/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-stringify-position.svg + + [coverage]: https://codecov.io/github/syntax-tree/unist-util-stringify-position + + [downloads-badge]: https://img.shields.io/npm/dm/unist-util-stringify-position.svg + + [downloads]: https://www.npmjs.com/package/unist-util-stringify-position + + [size-badge]: https://img.shields.io/bundlephobia/minzip/unist-util-stringify-position.svg + + [size]: https://bundlephobia.com/result?p=unist-util-stringify-position + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [license]: license + + [author]: https://wooorm.com + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [contributing]: https://github.com/syntax-tree/.github/blob/HEAD/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/HEAD/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/HEAD/code-of-conduct.md + + [unist]: https://github.com/syntax-tree/unist + + [node]: https://github.com/syntax-tree/unist#node + + [position]: https://github.com/syntax-tree/unist#position + + [point]: https://github.com/syntax-tree/unist#point + + [stringifyposition]: #stringifypositionnodepositionpoint +notices: [] diff --git a/.licenses/npm/unist-util-visit-parents.dep.yml b/.licenses/npm/unist-util-visit-parents.dep.yml new file mode 100644 index 000000000..5667f673b --- /dev/null +++ b/.licenses/npm/unist-util-visit-parents.dep.yml @@ -0,0 +1,120 @@ +--- +name: unist-util-visit-parents +version: 5.1.3 +type: npm +summary: unist utility to recursively walk over nodes, with ancestral information +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2016 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/unist-util-visit-parents/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/unist-util-visit-parents/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-visit-parents.svg + + [coverage]: https://codecov.io/github/syntax-tree/unist-util-visit-parents + + [downloads-badge]: https://img.shields.io/npm/dm/unist-util-visit-parents.svg + + [downloads]: https://www.npmjs.com/package/unist-util-visit-parents + + [size-badge]: https://img.shields.io/bundlephobia/minzip/unist-util-visit-parents.svg + + [size]: https://bundlephobia.com/result?p=unist-util-visit-parents + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/HEAD/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/HEAD/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/HEAD/code-of-conduct.md + + [unist]: https://github.com/syntax-tree/unist + + [node]: https://github.com/syntax-tree/unist#node + + [depth-first]: https://github.com/syntax-tree/unist#depth-first-traversal + + [tree-traversal]: https://github.com/syntax-tree/unist#tree-traversal + + [preorder]: https://github.com/syntax-tree/unist#preorder + + [unist-util-visit]: https://github.com/syntax-tree/unist-util-visit + + [unist-util-is]: https://github.com/syntax-tree/unist-util-is + + [api-visitparents]: #visitparentstree-test-visitor-reverse + + [api-continue]: #continue + + [api-exit]: #exit + + [api-skip]: #skip + + [api-action]: #action + + [api-actiontuple]: #actiontuple + + [api-buildvisitor]: #buildvisitor + + [api-index]: #index + + [api-test]: #test + + [api-visitor]: #visitor + + [api-visitorresult]: #visitorresult +notices: [] diff --git a/.licenses/npm/unist-util-visit.dep.yml b/.licenses/npm/unist-util-visit.dep.yml new file mode 100644 index 000000000..497d6c83e --- /dev/null +++ b/.licenses/npm/unist-util-visit.dep.yml @@ -0,0 +1,124 @@ +--- +name: unist-util-visit +version: 4.1.2 +type: npm +summary: unist utility to visit nodes +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/syntax-tree/unist-util-visit/workflows/main/badge.svg + + [build]: https://github.com/syntax-tree/unist-util-visit/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/unist-util-visit.svg + + [coverage]: https://codecov.io/github/syntax-tree/unist-util-visit + + [downloads-badge]: https://img.shields.io/npm/dm/unist-util-visit.svg + + [downloads]: https://www.npmjs.com/package/unist-util-visit + + [size-badge]: https://img.shields.io/bundlephobia/minzip/unist-util-visit.svg + + [size]: https://bundlephobia.com/result?p=unist-util-visit + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/syntax-tree/unist/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [health]: https://github.com/syntax-tree/.github + + [contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md + + [support]: https://github.com/syntax-tree/.github/blob/main/support.md + + [coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md + + [unist]: https://github.com/syntax-tree/unist + + [node]: https://github.com/syntax-tree/unist#nodes + + [unist-util-is]: https://github.com/syntax-tree/unist-util-is + + [vp]: https://github.com/syntax-tree/unist-util-visit-parents + + [vp-action]: https://github.com/syntax-tree/unist-util-visit-parents#action + + [vp-actiontuple]: https://github.com/syntax-tree/unist-util-visit-parents#actiontuple + + [vp-buildvisitor]: https://github.com/syntax-tree/unist-util-visit-parents#buildvisitor + + [vp-index]: https://github.com/syntax-tree/unist-util-visit-parents#index + + [vp-visitorresult]: https://github.com/syntax-tree/unist-util-visit-parents#visitorresult + + [api-visit]: #visittree-test-visitor-reverse + + [api-continue]: #continue + + [api-exit]: #exit + + [api-skip]: #skip + + [api-action]: #action + + [api-actiontuple]: #actiontuple + + [api-buildvisitor]: #buildvisitor + + [api-index]: #index + + [api-test]: #test + + [api-visitor]: #visitor + + [api-visitorresult]: #visitorresult +notices: [] diff --git a/.licenses/npm/universalify-0.1.2.dep.yml b/.licenses/npm/universalify-0.1.2.dep.yml new file mode 100644 index 000000000..0a1c4cde3 --- /dev/null +++ b/.licenses/npm/universalify-0.1.2.dep.yml @@ -0,0 +1,33 @@ +--- +name: universalify +version: 0.1.2 +type: npm +summary: Make a callback- or promise-based function support both promises and callbacks. +homepage: https://github.com/RyanZim/universalify#readme +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2017, Ryan Zimmerman + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the 'Software'), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/universalify-0.2.0.dep.yml b/.licenses/npm/universalify-0.2.0.dep.yml new file mode 100644 index 000000000..57933a6c4 --- /dev/null +++ b/.licenses/npm/universalify-0.2.0.dep.yml @@ -0,0 +1,33 @@ +--- +name: universalify +version: 0.2.0 +type: npm +summary: Make a callback- or promise-based function support both promises and callbacks. +homepage: https://github.com/RyanZim/universalify#readme +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2017, Ryan Zimmerman + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the 'Software'), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/universalify-2.0.1.dep.yml b/.licenses/npm/universalify-2.0.1.dep.yml new file mode 100644 index 000000000..fe63a391a --- /dev/null +++ b/.licenses/npm/universalify-2.0.1.dep.yml @@ -0,0 +1,33 @@ +--- +name: universalify +version: 2.0.1 +type: npm +summary: Make a callback- or promise-based function support both promises and callbacks. +homepage: https://github.com/RyanZim/universalify#readme +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2017, Ryan Zimmerman + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the 'Software'), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/unpipe.dep.yml b/.licenses/npm/unpipe.dep.yml new file mode 100644 index 000000000..004506a22 --- /dev/null +++ b/.licenses/npm/unpipe.dep.yml @@ -0,0 +1,47 @@ +--- +name: unpipe +version: 1.0.0 +type: npm +summary: Unpipe a stream from all destinations +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/unpipe.svg + [npm-url]: https://npmjs.org/package/unpipe + [node-image]: https://img.shields.io/node/v/unpipe.svg + [node-url]: http://nodejs.org/download/ + [travis-image]: https://img.shields.io/travis/stream-utils/unpipe.svg + [travis-url]: https://travis-ci.org/stream-utils/unpipe + [coveralls-image]: https://img.shields.io/coveralls/stream-utils/unpipe.svg + [coveralls-url]: https://coveralls.io/r/stream-utils/unpipe?branch=master + [downloads-image]: https://img.shields.io/npm/dm/unpipe.svg + [downloads-url]: https://npmjs.org/package/unpipe +notices: [] diff --git a/.licenses/npm/unzipper.dep.yml b/.licenses/npm/unzipper.dep.yml new file mode 100644 index 000000000..5c47c0140 --- /dev/null +++ b/.licenses/npm/unzipper.dep.yml @@ -0,0 +1,36 @@ +--- +name: unzipper +version: 0.10.14 +type: npm +summary: 'Unzip cross-platform streaming API ' +homepage: +license: other +licenses: +- sources: LICENSE + text: |- + Copyright (c) 2012 - 2013 Near Infinity Corporation + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + --- + + Commits in this fork are (c) Ziggy Jonsson (ziggy.jonsson.nyc@gmail.com) + and fall under same licence structure as the original repo (MIT) +notices: [] diff --git a/.licenses/npm/uri-js.dep.yml b/.licenses/npm/uri-js.dep.yml new file mode 100644 index 000000000..9ec198333 --- /dev/null +++ b/.licenses/npm/uri-js.dep.yml @@ -0,0 +1,29 @@ +--- +name: uri-js +version: 4.4.1 +type: npm +summary: An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving + library for JavaScript. +homepage: https://github.com/garycourt/uri-js +license: other +licenses: +- sources: LICENSE + text: "Copyright 2011 Gary Court. All rights reserved.\n\nRedistribution and use + in source and binary forms, with or without modification, are permitted provided + that the following conditions are met:\n\n1.\tRedistributions of source code must + retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2.\tRedistributions + in binary form must reproduce the above copyright notice, this list of conditions + and the following disclaimer in the documentation and/or other materials provided + with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY GARY COURT \"AS IS\" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER + IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE.\n\nThe views and conclusions contained in the software and documentation + are those of the authors and should not be interpreted as representing official + policies, either expressed or implied, of Gary Court.\n" +notices: [] diff --git a/.licenses/npm/url-join.dep.yml b/.licenses/npm/url-join.dep.yml new file mode 100644 index 000000000..e65a5c636 --- /dev/null +++ b/.licenses/npm/url-join.dep.yml @@ -0,0 +1,34 @@ +--- +name: url-join +version: 4.0.1 +type: npm +summary: Join urls and normalize as in path.join. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2015 José F. Romaniello + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/url-parse.dep.yml b/.licenses/npm/url-parse.dep.yml new file mode 100644 index 000000000..b8c7d4791 --- /dev/null +++ b/.licenses/npm/url-parse.dep.yml @@ -0,0 +1,37 @@ +--- +name: url-parse +version: 1.5.10 +type: npm +summary: Small footprint URL parser that works seamlessly across Node.js and browser + environments +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +- sources: README.md + text: "[MIT](LICENSE)" +notices: [] +... diff --git a/.licenses/npm/use-isomorphic-layout-effect.dep.yml b/.licenses/npm/use-isomorphic-layout-effect.dep.yml new file mode 100644 index 000000000..137314067 --- /dev/null +++ b/.licenses/npm/use-isomorphic-layout-effect.dep.yml @@ -0,0 +1,34 @@ +--- +name: use-isomorphic-layout-effect +version: 1.2.0 +type: npm +summary: A React helper hook for scheduling a layout effect with a fallback to a regular + effect for environments where layout effects should not be used (such as server-side + rendering). +homepage: https://github.com/Andarist/use-isomorphic-layout-effect#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Mateusz Burzyński + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/user-home.dep.yml b/.licenses/npm/user-home.dep.yml new file mode 100644 index 000000000..c26259785 --- /dev/null +++ b/.licenses/npm/user-home.dep.yml @@ -0,0 +1,34 @@ +--- +name: user-home +version: 2.0.0 +type: npm +summary: Get the path to the user home directory +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](http://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/util-deprecate.dep.yml b/.licenses/npm/util-deprecate.dep.yml new file mode 100644 index 000000000..b59b4f739 --- /dev/null +++ b/.licenses/npm/util-deprecate.dep.yml @@ -0,0 +1,61 @@ +--- +name: util-deprecate +version: 1.0.2 +type: npm +summary: The Node.js `util.deprecate()` function with browser support +homepage: https://github.com/TooTallNate/util-deprecate +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Nathan Rajlich + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014 Nathan Rajlich + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/util.dep.yml b/.licenses/npm/util.dep.yml new file mode 100644 index 000000000..dd04e79ef --- /dev/null +++ b/.licenses/npm/util.dep.yml @@ -0,0 +1,34 @@ +--- +name: util +version: 0.12.5 +type: npm +summary: Node.js's util module for all engines +homepage: https://github.com/browserify/node-util +license: mit +licenses: +- sources: LICENSE + text: | + Copyright Joyent, Inc. and other Node contributors. All rights reserved. + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](./LICENSE) + + [util]: https://nodejs.org/docs/latest-v8.x/api/util.html +notices: [] diff --git a/.licenses/npm/utils-merge.dep.yml b/.licenses/npm/utils-merge.dep.yml new file mode 100644 index 000000000..c47d8e392 --- /dev/null +++ b/.licenses/npm/utils-merge.dep.yml @@ -0,0 +1,38 @@ +--- +name: utils-merge +version: 1.0.1 +type: npm +summary: merge() utility function +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2013-2017 Jared Hanson + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [The MIT License](http://opensource.org/licenses/MIT) + + Copyright (c) 2013-2017 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)> + + Sponsor +notices: [] diff --git a/.licenses/npm/uuid-7.0.3.dep.yml b/.licenses/npm/uuid-7.0.3.dep.yml new file mode 100644 index 000000000..ea9e21dd9 --- /dev/null +++ b/.licenses/npm/uuid-7.0.3.dep.yml @@ -0,0 +1,32 @@ +--- +name: uuid +version: 7.0.3 +type: npm +summary: RFC4122 (v1, v4, and v5) UUIDs +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2010-2016 Robert Kieffer and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/uuid-8.3.2.dep.yml b/.licenses/npm/uuid-8.3.2.dep.yml new file mode 100644 index 000000000..1aa22dea3 --- /dev/null +++ b/.licenses/npm/uuid-8.3.2.dep.yml @@ -0,0 +1,20 @@ +--- +name: uuid +version: 8.3.2 +type: npm +summary: RFC4122 (v1, v4, and v5) UUIDs +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2010-2020 Robert Kieffer and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/uuid-9.0.1.dep.yml b/.licenses/npm/uuid-9.0.1.dep.yml new file mode 100644 index 000000000..6b4e046a9 --- /dev/null +++ b/.licenses/npm/uuid-9.0.1.dep.yml @@ -0,0 +1,20 @@ +--- +name: uuid +version: 9.0.1 +type: npm +summary: RFC4122 (v1, v4, and v5) UUIDs +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) 2010-2020 Robert Kieffer and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/uvu.dep.yml b/.licenses/npm/uvu.dep.yml new file mode 100644 index 000000000..773a91a5b --- /dev/null +++ b/.licenses/npm/uvu.dep.yml @@ -0,0 +1,35 @@ +--- +name: uvu +version: 0.5.6 +type: npm +summary: uvu is an extremely fast and lightweight test runner for Node.js and the + browser +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Luke Edwards (lukeed.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Luke Edwards](https://lukeed.com) +notices: [] diff --git a/.licenses/npm/valid-filename.dep.yml b/.licenses/npm/valid-filename.dep.yml new file mode 100644 index 000000000..7fa3dec74 --- /dev/null +++ b/.licenses/npm/valid-filename.dep.yml @@ -0,0 +1,34 @@ +--- +name: valid-filename +version: 2.0.1 +type: npm +summary: Check if a string is a valid filename +homepage: +license: mit +licenses: +- sources: license + text: | + The MIT License (MIT) + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/vary.dep.yml b/.licenses/npm/vary.dep.yml new file mode 100644 index 000000000..0abefd457 --- /dev/null +++ b/.licenses/npm/vary.dep.yml @@ -0,0 +1,47 @@ +--- +name: vary +version: 1.1.2 +type: npm +summary: Manipulate the HTTP Vary header +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014-2017 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/vary.svg + [npm-url]: https://npmjs.org/package/vary + [node-version-image]: https://img.shields.io/node/v/vary.svg + [node-version-url]: https://nodejs.org/en/download + [travis-image]: https://img.shields.io/travis/jshttp/vary/master.svg + [travis-url]: https://travis-ci.org/jshttp/vary + [coveralls-image]: https://img.shields.io/coveralls/jshttp/vary/master.svg + [coveralls-url]: https://coveralls.io/r/jshttp/vary + [downloads-image]: https://img.shields.io/npm/dm/vary.svg + [downloads-url]: https://npmjs.org/package/vary +notices: [] diff --git a/.licenses/npm/vfile-message.dep.yml b/.licenses/npm/vfile-message.dep.yml new file mode 100644 index 000000000..6862b7e6c --- /dev/null +++ b/.licenses/npm/vfile-message.dep.yml @@ -0,0 +1,98 @@ +--- +name: vfile-message +version: 3.1.4 +type: npm +summary: vfile utility to create a virtual message +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2017 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/vfile/vfile-message/workflows/main/badge.svg + + [build]: https://github.com/vfile/vfile-message/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/vfile/vfile-message.svg + + [coverage]: https://codecov.io/github/vfile/vfile-message + + [downloads-badge]: https://img.shields.io/npm/dm/vfile-message.svg + + [downloads]: https://www.npmjs.com/package/vfile-message + + [size-badge]: https://img.shields.io/bundlephobia/minzip/vfile-message.svg + + [size]: https://bundlephobia.com/result?p=vfile-message + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/vfile/vfile/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [contributing]: https://github.com/vfile/.github/blob/main/contributing.md + + [support]: https://github.com/vfile/.github/blob/main/support.md + + [health]: https://github.com/vfile/.github + + [coc]: https://github.com/vfile/.github/blob/main/code-of-conduct.md + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [license]: license + + [author]: https://wooorm.com + + [error]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error + + [node]: https://github.com/syntax-tree/unist#node + + [position]: https://github.com/syntax-tree/unist#position + + [point]: https://github.com/syntax-tree/unist#point + + [vfile]: https://github.com/vfile/vfile + + [util]: https://github.com/vfile/vfile#utilities + + [api-vfile-message]: #vfilemessagereason-place-origin +notices: [] diff --git a/.licenses/npm/vfile.dep.yml b/.licenses/npm/vfile.dep.yml new file mode 100644 index 000000000..0bebbd444 --- /dev/null +++ b/.licenses/npm/vfile.dep.yml @@ -0,0 +1,131 @@ +--- +name: vfile +version: 5.3.7 +type: npm +summary: Virtual file format for text processing +homepage: +license: mit +licenses: +- sources: license + text: | + (The MIT License) + + Copyright (c) 2015 Titus Wormer + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +- sources: readme.md + text: |- + [MIT][license] © [Titus Wormer][author] + + + + [build-badge]: https://github.com/vfile/vfile/workflows/main/badge.svg + + [build]: https://github.com/vfile/vfile/actions + + [coverage-badge]: https://img.shields.io/codecov/c/github/vfile/vfile.svg + + [coverage]: https://codecov.io/github/vfile/vfile + + [downloads-badge]: https://img.shields.io/npm/dm/vfile.svg + + [downloads]: https://www.npmjs.com/package/vfile + + [size-badge]: https://img.shields.io/bundlephobia/minzip/vfile.svg + + [size]: https://bundlephobia.com/result?p=vfile + + [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg + + [backers-badge]: https://opencollective.com/unified/backers/badge.svg + + [collective]: https://opencollective.com/unified + + [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg + + [chat]: https://github.com/vfile/vfile/discussions + + [npm]: https://docs.npmjs.com/cli/install + + [esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c + + [esmsh]: https://esm.sh + + [typescript]: https://www.typescriptlang.org + + [health]: https://github.com/vfile/.github + + [contributing]: https://github.com/vfile/.github/blob/main/contributing.md + + [support]: https://github.com/vfile/.github/blob/main/support.md + + [coc]: https://github.com/vfile/.github/blob/main/code-of-conduct.md + + [license]: license + + [author]: https://wooorm.com + + [unified]: https://github.com/unifiedjs/unified + + [vinyl]: https://github.com/gulpjs/vinyl + + [site]: https://unifiedjs.com + + [twitter]: https://twitter.com/unifiedjs + + [unist]: https://github.com/syntax-tree/unist#list-of-utilities + + [reporter]: https://github.com/vfile/vfile-reporter + + [vmessage]: https://github.com/vfile/vfile-message + + [messages]: #filemessages + + [message]: #vfilemessagereason-position-origin + + [encoding]: https://nodejs.org/api/buffer.html#buffer_buffers_and_character_encodings + + [buffer]: https://nodejs.org/api/buffer.html + + [source-map]: https://github.com/mozilla/source-map/blob/58819f0/source-map.d.ts#L15-L23 + + [file-url-to-path]: https://nodejs.org/api/url.html#url_url_fileurltopath_url + + [governance]: https://github.com/unifiedjs/collective + + [api-vfile]: #vfileoptions + + [api-buffer-encoding]: #bufferencoding + + [api-compatible]: #compatible + + [api-data]: #data + + [api-data-map]: #datamap + + [api-map]: #map + + [api-options]: #options + + [api-reporter]: #reporter + + [api-reporter-settings]: #reportersettings + + [api-value]: #value +notices: [] diff --git a/.licenses/npm/vhost.dep.yml b/.licenses/npm/vhost.dep.yml new file mode 100644 index 000000000..ad1ea5d57 --- /dev/null +++ b/.licenses/npm/vhost.dep.yml @@ -0,0 +1,48 @@ +--- +name: vhost +version: 3.0.2 +type: npm +summary: virtual domain hosting +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + (The MIT License) + + Copyright (c) 2014 Jonathan Ong + Copyright (c) 2014-2015 Douglas Christopher Wilson + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + 'Software'), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [npm-image]: https://img.shields.io/npm/v/vhost.svg + [npm-url]: https://npmjs.org/package/vhost + [travis-image]: https://img.shields.io/travis/expressjs/vhost/master.svg + [travis-url]: https://travis-ci.org/expressjs/vhost + [coveralls-image]: https://img.shields.io/coveralls/expressjs/vhost/master.svg + [coveralls-url]: https://coveralls.io/r/expressjs/vhost + [downloads-image]: https://img.shields.io/npm/dm/vhost.svg + [downloads-url]: https://npmjs.org/package/vhost + [gratipay-image]: https://img.shields.io/gratipay/dougwilson.svg + [gratipay-url]: https://gratipay.com/dougwilson/ +notices: [] diff --git a/.licenses/npm/vinyl.dep.yml b/.licenses/npm/vinyl.dep.yml new file mode 100644 index 000000000..425495d4d --- /dev/null +++ b/.licenses/npm/vinyl.dep.yml @@ -0,0 +1,65 @@ +--- +name: vinyl +version: 2.2.1 +type: npm +summary: Virtual file format. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2013 Blaine Bublitz , Eric Schoffstall and other contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + MIT + + [is-symbolic]: #issymbolic + [is-directory]: #isdirectory + [normalization]: #normalization-and-concatenation + [extending-vinyl]: #extending-vinyl + [stream]: https://nodejs.org/api/stream.html#stream_stream + [readable-stream]: https://nodejs.org/api/stream.html#stream_readable_streams + [buffer]: https://nodejs.org/api/buffer.html#buffer_class_buffer + [fs-stats]: http://nodejs.org/api/fs.html#fs_class_fs_stats + [vinyl-fs]: https://github.com/gulpjs/vinyl-fs + [cloneable-readable]: https://github.com/mcollina/cloneable-readable + + [downloads-image]: https://img.shields.io/npm/dm/vinyl.svg + [npm-url]: https://www.npmjs.com/package/vinyl + [npm-image]: https://img.shields.io/npm/v/vinyl.svg + + [azure-pipelines-url]: https://dev.azure.com/gulpjs/gulp/_build/latest?definitionId=$PROJECT_ID&branchName=master + [azure-pipelines-image]: https://dev.azure.com/gulpjs/gulp/_apis/build/status/vinyl?branchName=master + + [travis-url]: https://travis-ci.org/gulpjs/vinyl + [travis-image]: https://img.shields.io/travis/gulpjs/vinyl.svg?label=travis-ci + + [appveyor-url]: https://ci.appveyor.com/project/gulpjs/vinyl + [appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/vinyl.svg?label=appveyor + + [coveralls-url]: https://coveralls.io/r/gulpjs/vinyl + [coveralls-image]: https://img.shields.io/coveralls/gulpjs/vinyl/master.svg + + [gitter-url]: https://gitter.im/gulpjs/gulp + [gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg +notices: [] diff --git a/.licenses/npm/vscode-arduino-api.dep.yml b/.licenses/npm/vscode-arduino-api.dep.yml new file mode 100644 index 000000000..1300eaa2d --- /dev/null +++ b/.licenses/npm/vscode-arduino-api.dep.yml @@ -0,0 +1,32 @@ +--- +name: vscode-arduino-api +version: 0.1.2 +type: npm +summary: Lightweight API between the Arduino IDE and VS Code extensions +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2023 dankeboy36 + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/vscode-jsonrpc.dep.yml b/.licenses/npm/vscode-jsonrpc.dep.yml new file mode 100644 index 000000000..b3213ecb8 --- /dev/null +++ b/.licenses/npm/vscode-jsonrpc.dep.yml @@ -0,0 +1,24 @@ +--- +name: vscode-jsonrpc +version: 8.2.0 +type: npm +summary: A json rpc implementation over streams +homepage: +license: mit +licenses: +- sources: License.txt + text: | + Copyright (c) Microsoft Corporation + + All rights reserved. + + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)" +notices: [] diff --git a/.licenses/npm/vscode-languageserver-protocol.dep.yml b/.licenses/npm/vscode-languageserver-protocol.dep.yml new file mode 100644 index 000000000..6b42d1125 --- /dev/null +++ b/.licenses/npm/vscode-languageserver-protocol.dep.yml @@ -0,0 +1,24 @@ +--- +name: vscode-languageserver-protocol +version: 3.17.5 +type: npm +summary: VSCode Language Server Protocol implementation +homepage: +license: mit +licenses: +- sources: License.txt + text: | + Copyright (c) Microsoft Corporation + + All rights reserved. + + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)" +notices: [] diff --git a/.licenses/npm/vscode-languageserver-textdocument.dep.yml b/.licenses/npm/vscode-languageserver-textdocument.dep.yml new file mode 100644 index 000000000..997eb8379 --- /dev/null +++ b/.licenses/npm/vscode-languageserver-textdocument.dep.yml @@ -0,0 +1,24 @@ +--- +name: vscode-languageserver-textdocument +version: 1.0.12 +type: npm +summary: A simple text document implementation for Node LSP servers +homepage: +license: mit +licenses: +- sources: License.txt + text: | + Copyright (c) Microsoft Corporation + + All rights reserved. + + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)" +notices: [] diff --git a/.licenses/npm/vscode-languageserver-types.dep.yml b/.licenses/npm/vscode-languageserver-types.dep.yml new file mode 100644 index 000000000..b010502cf --- /dev/null +++ b/.licenses/npm/vscode-languageserver-types.dep.yml @@ -0,0 +1,24 @@ +--- +name: vscode-languageserver-types +version: 3.17.5 +type: npm +summary: Types used by the Language server for node +homepage: +license: mit +licenses: +- sources: License.txt + text: | + Copyright (c) Microsoft Corporation + + All rights reserved. + + MIT License + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/Microsoft/vscode-languageserver-node/blob/master/License.txt)" +notices: [] diff --git a/.licenses/npm/vscode-oniguruma.dep.yml b/.licenses/npm/vscode-oniguruma.dep.yml new file mode 100644 index 000000000..7c1dcaa55 --- /dev/null +++ b/.licenses/npm/vscode-oniguruma.dep.yml @@ -0,0 +1,39 @@ +--- +name: vscode-oniguruma +version: 1.6.1 +type: npm +summary: VSCode oniguruma bindings +homepage: +license: other +licenses: +- sources: LICENSE.txt + text: | + VS Code Oniguruma Bindings + + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: |- + [MIT](https://github.com/microsoft/vscode-oniguruma/blob/master/LICENSE.txt) + + This project incorporates material from other projects. Please see [NOTICES.txt](https://github.com/microsoft/vscode-oniguruma/blob/master/NOTICES.txt) +notices: [] diff --git a/.licenses/npm/vscode-textmate.dep.yml b/.licenses/npm/vscode-textmate.dep.yml new file mode 100644 index 000000000..188de4c8d --- /dev/null +++ b/.licenses/npm/vscode-textmate.dep.yml @@ -0,0 +1,34 @@ +--- +name: vscode-textmate +version: 9.2.0 +type: npm +summary: VSCode TextMate grammar helpers +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + + Copyright (c) Microsoft Corporation + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](https://github.com/Microsoft/vscode-textmate/blob/master/LICENSE.md)" +notices: [] diff --git a/.licenses/npm/vscode-uri.dep.yml b/.licenses/npm/vscode-uri.dep.yml new file mode 100644 index 000000000..27ba98a39 --- /dev/null +++ b/.licenses/npm/vscode-uri.dep.yml @@ -0,0 +1,20 @@ +--- +name: vscode-uri +version: 2.1.2 +type: npm +summary: The URI implementation that is used by VS Code and its extensions +homepage: https://github.com/Microsoft/vscode-uri#readme +license: mit +licenses: +- sources: LICENSE.md + text: |- + The MIT License (MIT) + + Copyright (c) Microsoft + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/w3c-xmlserializer.dep.yml b/.licenses/npm/w3c-xmlserializer.dep.yml new file mode 100644 index 000000000..439436745 --- /dev/null +++ b/.licenses/npm/w3c-xmlserializer.dep.yml @@ -0,0 +1,36 @@ +--- +name: w3c-xmlserializer +version: 4.0.0 +type: npm +summary: A per-spec XML serializer implementation +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + The MIT License (MIT) + ===================== + + Copyright © Sebastian Mayr + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the “Software”), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/web-streams-polyfill.dep.yml b/.licenses/npm/web-streams-polyfill.dep.yml new file mode 100644 index 000000000..089ca2e68 --- /dev/null +++ b/.licenses/npm/web-streams-polyfill.dep.yml @@ -0,0 +1,33 @@ +--- +name: web-streams-polyfill +version: 3.3.3 +type: npm +summary: Web Streams, based on the WHATWG spec reference implementation +homepage: https://github.com/MattiasBuelens/web-streams-polyfill#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2024 Mattias Buelens + Copyright (c) 2016 Diwank Singh Tomer + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/webidl-conversions-3.0.1.dep.yml b/.licenses/npm/webidl-conversions-3.0.1.dep.yml new file mode 100644 index 000000000..8c8957137 --- /dev/null +++ b/.licenses/npm/webidl-conversions-3.0.1.dep.yml @@ -0,0 +1,23 @@ +--- +name: webidl-conversions +version: 3.0.1 +type: npm +summary: Implements the WebIDL algorithms for converting to and from JavaScript values +homepage: +license: bsd-2-clause +licenses: +- sources: LICENSE.md + text: | + # The BSD 2-Clause License + + Copyright (c) 2014, Domenic Denicola + All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/webidl-conversions-7.0.0.dep.yml b/.licenses/npm/webidl-conversions-7.0.0.dep.yml new file mode 100644 index 000000000..d415fc9be --- /dev/null +++ b/.licenses/npm/webidl-conversions-7.0.0.dep.yml @@ -0,0 +1,23 @@ +--- +name: webidl-conversions +version: 7.0.0 +type: npm +summary: Implements the WebIDL algorithms for converting to and from JavaScript values +homepage: +license: bsd-2-clause +licenses: +- sources: LICENSE.md + text: | + # The BSD 2-Clause License + + Copyright (c) 2014, Domenic Denicola + All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +notices: [] diff --git a/.licenses/npm/whatwg-encoding.dep.yml b/.licenses/npm/whatwg-encoding.dep.yml new file mode 100644 index 000000000..16d3a77c8 --- /dev/null +++ b/.licenses/npm/whatwg-encoding.dep.yml @@ -0,0 +1,18 @@ +--- +name: whatwg-encoding +version: 2.0.0 +type: npm +summary: Decode strings according to the WHATWG Encoding Standard +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright © Domenic Denicola + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/whatwg-mimetype.dep.yml b/.licenses/npm/whatwg-mimetype.dep.yml new file mode 100644 index 000000000..dd03c1a06 --- /dev/null +++ b/.licenses/npm/whatwg-mimetype.dep.yml @@ -0,0 +1,19 @@ +--- +name: whatwg-mimetype +version: 3.0.0 +type: npm +summary: Parses, serializes, and manipulates MIME types, according to the WHATWG MIME + Sniffing Standard +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + Copyright © Domenic Denicola + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/whatwg-url-12.0.1.dep.yml b/.licenses/npm/whatwg-url-12.0.1.dep.yml new file mode 100644 index 000000000..d869b18e6 --- /dev/null +++ b/.licenses/npm/whatwg-url-12.0.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: whatwg-url +version: 12.0.1 +type: npm +summary: An implementation of the WHATWG URL Standard's URL API and parsing machinery +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + The MIT License (MIT) + + Copyright (c) Sebastian Mayr + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/whatwg-url-5.0.0.dep.yml b/.licenses/npm/whatwg-url-5.0.0.dep.yml new file mode 100644 index 000000000..73a698840 --- /dev/null +++ b/.licenses/npm/whatwg-url-5.0.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: whatwg-url +version: 5.0.0 +type: npm +summary: An implementation of the WHATWG URL Standard's URL API and parsing machinery +homepage: +license: mit +licenses: +- sources: LICENSE.txt + text: | + The MIT License (MIT) + + Copyright (c) 2015–2016 Sebastian Mayr + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/which-1.3.1.dep.yml b/.licenses/npm/which-1.3.1.dep.yml new file mode 100644 index 000000000..2dae73345 --- /dev/null +++ b/.licenses/npm/which-1.3.1.dep.yml @@ -0,0 +1,27 @@ +--- +name: which +version: 1.3.1 +type: npm +summary: Like which(1) unix command. Find the first instance of an executable in the + PATH. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/which-2.0.2.dep.yml b/.licenses/npm/which-2.0.2.dep.yml new file mode 100644 index 000000000..0232a3798 --- /dev/null +++ b/.licenses/npm/which-2.0.2.dep.yml @@ -0,0 +1,27 @@ +--- +name: which +version: 2.0.2 +type: npm +summary: Like which(1) unix command. Find the first instance of an executable in the + PATH. +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/which-boxed-primitive.dep.yml b/.licenses/npm/which-boxed-primitive.dep.yml new file mode 100644 index 000000000..c95a4ddef --- /dev/null +++ b/.licenses/npm/which-boxed-primitive.dep.yml @@ -0,0 +1,32 @@ +--- +name: which-boxed-primitive +version: 1.1.1 +type: npm +summary: Which kind of boxed JS primitive is this? +homepage: https://github.com/inspect-js/which-boxed-primitive#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/which-collection.dep.yml b/.licenses/npm/which-collection.dep.yml new file mode 100644 index 000000000..e1ba318d1 --- /dev/null +++ b/.licenses/npm/which-collection.dep.yml @@ -0,0 +1,33 @@ +--- +name: which-collection +version: 1.0.2 +type: npm +summary: Which kind of Collection (Map, Set, WeakMap, WeakSet) is this JavaScript + value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag. +homepage: https://github.com/inspect-js/which-collection#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2019 Inspect JS + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] diff --git a/.licenses/npm/which-module.dep.yml b/.licenses/npm/which-module.dep.yml new file mode 100644 index 000000000..a77711483 --- /dev/null +++ b/.licenses/npm/which-module.dep.yml @@ -0,0 +1,29 @@ +--- +name: which-module +version: 2.0.1 +type: npm +summary: Find the module object for something that was require()d +homepage: https://github.com/nexdrew/which-module#readme +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2016, Contributors + + Permission to use, copy, modify, and/or distribute this software for any purpose + with or without fee is hereby granted, provided that the above copyright notice + and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF + THIS SOFTWARE. +- sources: README.md + text: |- + ISC © Contributors + + [opensourceregistry_package_id]: # (458260416784685e5ef3091fee54001785dd4360406aa3000315ff256eef6878) +notices: [] diff --git a/.licenses/npm/which-pm-runs.dep.yml b/.licenses/npm/which-pm-runs.dep.yml new file mode 100644 index 000000000..29e809436 --- /dev/null +++ b/.licenses/npm/which-pm-runs.dep.yml @@ -0,0 +1,34 @@ +--- +name: which-pm-runs +version: 1.1.0 +type: npm +summary: Detects what package manager executes the process +homepage: https://github.com/zkochan/packages/tree/main/which-pm-runs#readme +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2017-2022 Zoltan Kochan + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +- sources: README.md + text: "[MIT](LICENSE) © [Zoltan Kochan](http://kochan.io)" +notices: [] diff --git a/.licenses/npm/which-typed-array.dep.yml b/.licenses/npm/which-typed-array.dep.yml new file mode 100644 index 000000000..d47dedea8 --- /dev/null +++ b/.licenses/npm/which-typed-array.dep.yml @@ -0,0 +1,35 @@ +--- +name: which-typed-array +version: 1.1.19 +type: npm +summary: Which kind of Typed Array is this JavaScript value? Works cross-realm, without + `instanceof`, and despite Symbol.toStringTag. +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + The MIT License (MIT) + + Copyright (c) 2015 Jordan Harband + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/wide-align.dep.yml b/.licenses/npm/wide-align.dep.yml new file mode 100644 index 000000000..93c61f870 --- /dev/null +++ b/.licenses/npm/wide-align.dep.yml @@ -0,0 +1,27 @@ +--- +name: wide-align +version: 1.1.5 +type: npm +summary: A wide-character aware text alignment function for use on the console or + with fixed width fonts. +homepage: +license: isc +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2015, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/winchan.dep.yml b/.licenses/npm/winchan.dep.yml new file mode 100644 index 000000000..a28ab50d7 --- /dev/null +++ b/.licenses/npm/winchan.dep.yml @@ -0,0 +1,29 @@ +--- +name: winchan +version: 0.2.2 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE.md + text: | + Copyright (c) 2014 Auth0 Inc. + Copyright (c) 2012 Lloyd Hilaiel + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the + Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE + FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/wrap-ansi-6.2.0.dep.yml b/.licenses/npm/wrap-ansi-6.2.0.dep.yml new file mode 100644 index 000000000..c340546e3 --- /dev/null +++ b/.licenses/npm/wrap-ansi-6.2.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: wrap-ansi +version: 6.2.0 +type: npm +summary: Wordwrap a string with ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/wrap-ansi-7.0.0.dep.yml b/.licenses/npm/wrap-ansi-7.0.0.dep.yml new file mode 100644 index 000000000..33039c50a --- /dev/null +++ b/.licenses/npm/wrap-ansi-7.0.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: wrap-ansi +version: 7.0.0 +type: npm +summary: Wordwrap a string with ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/wrap-ansi-8.1.0.dep.yml b/.licenses/npm/wrap-ansi-8.1.0.dep.yml new file mode 100644 index 000000000..7eb9a2720 --- /dev/null +++ b/.licenses/npm/wrap-ansi-8.1.0.dep.yml @@ -0,0 +1,20 @@ +--- +name: wrap-ansi +version: 8.1.0 +type: npm +summary: Wordwrap a string with ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/wrap-ansi-cjs.dep.yml b/.licenses/npm/wrap-ansi-cjs.dep.yml new file mode 100644 index 000000000..1abba43f0 --- /dev/null +++ b/.licenses/npm/wrap-ansi-cjs.dep.yml @@ -0,0 +1,20 @@ +--- +name: wrap-ansi-cjs +version: 7.0.0 +type: npm +summary: Wordwrap a string with ANSI escape codes +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (https://sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/wrappy.dep.yml b/.licenses/npm/wrappy.dep.yml new file mode 100644 index 000000000..2a532ec34 --- /dev/null +++ b/.licenses/npm/wrappy.dep.yml @@ -0,0 +1,26 @@ +--- +name: wrappy +version: 1.0.2 +type: npm +summary: Callback wrapping utility +homepage: https://github.com/npm/wrappy +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/write-file-atomic.dep.yml b/.licenses/npm/write-file-atomic.dep.yml new file mode 100644 index 000000000..0f85f3e49 --- /dev/null +++ b/.licenses/npm/write-file-atomic.dep.yml @@ -0,0 +1,18 @@ +--- +name: write-file-atomic +version: 2.4.3 +type: npm +summary: Write files in an atomic fashion w/configurable ownership +homepage: https://github.com/iarna/write-file-atomic +license: isc +licenses: +- sources: LICENSE + text: |+ + Copyright (c) 2015, Rebecca Turner + + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +notices: [] +... diff --git a/.licenses/npm/write-json-file.dep.yml b/.licenses/npm/write-json-file.dep.yml new file mode 100644 index 000000000..11be51334 --- /dev/null +++ b/.licenses/npm/write-json-file.dep.yml @@ -0,0 +1,22 @@ +--- +name: write-json-file +version: 2.3.0 +type: npm +summary: Stringify and write JSON to a file atomically +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/ws-8.17.1.dep.yml b/.licenses/npm/ws-8.17.1.dep.yml new file mode 100644 index 000000000..ec4fb2288 --- /dev/null +++ b/.licenses/npm/ws-8.17.1.dep.yml @@ -0,0 +1,50 @@ +--- +name: ws +version: 8.17.1 +type: npm +summary: Simple to use, blazing fast and thoroughly tested websocket client and server + for Node.js +homepage: https://github.com/websockets/ws +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2011 Einar Otto Stangvik + Copyright (c) 2013 Arnout Kazemier and contributors + Copyright (c) 2016 Luigi Pinca and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [`buffer.isutf8()`]: https://nodejs.org/api/buffer.html#bufferisutf8input + [bufferutil]: https://github.com/websockets/bufferutil + [changelog]: https://github.com/websockets/ws/releases + [client-report]: http://websockets.github.io/ws/autobahn/clients/ + [https-proxy-agent]: https://github.com/TooTallNate/node-https-proxy-agent + [node-zlib-bug]: https://github.com/nodejs/node/issues/8871 + [node-zlib-deflaterawdocs]: + https://nodejs.org/api/zlib.html#zlib_zlib_createdeflateraw_options + [permessage-deflate]: https://tools.ietf.org/html/rfc7692 + [server-report]: http://websockets.github.io/ws/autobahn/servers/ + [session-parse-example]: ./examples/express-session-parse + [socks-proxy-agent]: https://github.com/TooTallNate/node-socks-proxy-agent + [utf-8-validate]: https://github.com/websockets/utf-8-validate + [ws-server-options]: ./doc/ws.md#new-websocketserveroptions-callback +notices: [] diff --git a/.licenses/npm/ws-8.18.1.dep.yml b/.licenses/npm/ws-8.18.1.dep.yml new file mode 100644 index 000000000..d65f2d13b --- /dev/null +++ b/.licenses/npm/ws-8.18.1.dep.yml @@ -0,0 +1,50 @@ +--- +name: ws +version: 8.18.1 +type: npm +summary: Simple to use, blazing fast and thoroughly tested websocket client and server + for Node.js +homepage: https://github.com/websockets/ws +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2011 Einar Otto Stangvik + Copyright (c) 2013 Arnout Kazemier and contributors + Copyright (c) 2016 Luigi Pinca and contributors + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: |- + [MIT](LICENSE) + + [`buffer.isutf8()`]: https://nodejs.org/api/buffer.html#bufferisutf8input + [bufferutil]: https://github.com/websockets/bufferutil + [changelog]: https://github.com/websockets/ws/releases + [client-report]: http://websockets.github.io/ws/autobahn/clients/ + [https-proxy-agent]: https://github.com/TooTallNate/node-https-proxy-agent + [node-zlib-bug]: https://github.com/nodejs/node/issues/8871 + [node-zlib-deflaterawdocs]: + https://nodejs.org/api/zlib.html#zlib_zlib_createdeflateraw_options + [permessage-deflate]: https://tools.ietf.org/html/rfc7692 + [server-report]: http://websockets.github.io/ws/autobahn/servers/ + [session-parse-example]: ./examples/express-session-parse + [socks-proxy-agent]: https://github.com/TooTallNate/node-socks-proxy-agent + [utf-8-validate]: https://github.com/websockets/utf-8-validate + [ws-server-options]: ./doc/ws.md#new-websocketserveroptions-callback +notices: [] diff --git a/.licenses/npm/xdg-basedir.dep.yml b/.licenses/npm/xdg-basedir.dep.yml new file mode 100644 index 000000000..92a8a0947 --- /dev/null +++ b/.licenses/npm/xdg-basedir.dep.yml @@ -0,0 +1,22 @@ +--- +name: xdg-basedir +version: 4.0.0 +type: npm +summary: Get XDG Base Directory paths +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Sindre Sorhus (sindresorhus.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +- sources: readme.md + text: MIT © [Sindre Sorhus](https://sindresorhus.com) +notices: [] diff --git a/.licenses/npm/xdg-trashdir.dep.yml b/.licenses/npm/xdg-trashdir.dep.yml new file mode 100644 index 000000000..59921467f --- /dev/null +++ b/.licenses/npm/xdg-trashdir.dep.yml @@ -0,0 +1,20 @@ +--- +name: xdg-trashdir +version: 3.1.0 +type: npm +summary: Get the correct trash path on Linux +homepage: +license: mit +licenses: +- sources: license + text: | + MIT License + + Copyright (c) Kevin Mårtensson (github.com/kevva) + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/xml-name-validator.dep.yml b/.licenses/npm/xml-name-validator.dep.yml new file mode 100644 index 000000000..af3cfb487 --- /dev/null +++ b/.licenses/npm/xml-name-validator.dep.yml @@ -0,0 +1,188 @@ +--- +name: xml-name-validator +version: 4.0.0 +type: npm +summary: Validates whether a string matches the production for an XML name or qualified + name +homepage: +license: apache-2.0 +licenses: +- sources: LICENSE.txt + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS +notices: [] diff --git a/.licenses/npm/xmlchars.dep.yml b/.licenses/npm/xmlchars.dep.yml new file mode 100644 index 000000000..43a1ecc18 --- /dev/null +++ b/.licenses/npm/xmlchars.dep.yml @@ -0,0 +1,30 @@ +--- +name: xmlchars +version: 2.2.0 +type: npm +summary: Utilities for determining if characters belong to character classes defined + by the XML specs. +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright Louis-Dominique Dubeau and contributors to xmlchars + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/xmlhttprequest-ssl.dep.yml b/.licenses/npm/xmlhttprequest-ssl.dep.yml new file mode 100644 index 000000000..aa959a99a --- /dev/null +++ b/.licenses/npm/xmlhttprequest-ssl.dep.yml @@ -0,0 +1,35 @@ +--- +name: xmlhttprequest-ssl +version: 2.1.2 +type: npm +summary: XMLHttpRequest for Node +homepage: +license: mit +licenses: +- sources: LICENSE + text: |2 + Copyright (c) 2010 passive.ly LLC + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. +- sources: README.md + text: MIT license. See LICENSE for full details. +notices: [] diff --git a/.licenses/npm/xtend.dep.yml b/.licenses/npm/xtend.dep.yml new file mode 100644 index 000000000..5cb59482e --- /dev/null +++ b/.licenses/npm/xtend.dep.yml @@ -0,0 +1,31 @@ +--- +name: xtend +version: 4.0.2 +type: npm +summary: extend like a boss +homepage: https://github.com/Raynos/xtend +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + Copyright (c) 2012-2014 Raynos. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/xterm-4.19.0.dep.yml b/.licenses/npm/xterm-4.19.0.dep.yml new file mode 100644 index 000000000..02926605d --- /dev/null +++ b/.licenses/npm/xterm-4.19.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: xterm +version: 4.19.0 +type: npm +summary: Full xterm terminal, in your browser +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2017-2019, The xterm.js authors (https://github.com/xtermjs/xterm.js) + Copyright (c) 2014-2016, SourceLair Private Company (https://www.sourcelair.com) + Copyright (c) 2012-2013, Christopher Jeffrey (https://github.com/chjj/) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/xterm-5.3.0.dep.yml b/.licenses/npm/xterm-5.3.0.dep.yml new file mode 100644 index 000000000..fffad55b4 --- /dev/null +++ b/.licenses/npm/xterm-5.3.0.dep.yml @@ -0,0 +1,32 @@ +--- +name: xterm +version: 5.3.0 +type: npm +summary: Full xterm terminal, in your browser +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2017-2019, The xterm.js authors (https://github.com/xtermjs/xterm.js) + Copyright (c) 2014-2016, SourceLair Private Company (https://www.sourcelair.com) + Copyright (c) 2012-2013, Christopher Jeffrey (https://github.com/chjj/) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/xterm-addon-fit-0.5.0.dep.yml b/.licenses/npm/xterm-addon-fit-0.5.0.dep.yml new file mode 100644 index 000000000..03998fa84 --- /dev/null +++ b/.licenses/npm/xterm-addon-fit-0.5.0.dep.yml @@ -0,0 +1,30 @@ +--- +name: xterm-addon-fit +version: 0.5.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/xterm-addon-fit-0.8.0.dep.yml b/.licenses/npm/xterm-addon-fit-0.8.0.dep.yml new file mode 100644 index 000000000..e973e62ed --- /dev/null +++ b/.licenses/npm/xterm-addon-fit-0.8.0.dep.yml @@ -0,0 +1,30 @@ +--- +name: xterm-addon-fit +version: 0.8.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/xterm-addon-search.dep.yml b/.licenses/npm/xterm-addon-search.dep.yml new file mode 100644 index 000000000..65819a85c --- /dev/null +++ b/.licenses/npm/xterm-addon-search.dep.yml @@ -0,0 +1,30 @@ +--- +name: xterm-addon-search +version: 0.13.0 +type: npm +summary: +homepage: +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) 2017, The xterm.js authors (https://github.com/xtermjs/xterm.js) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/y18n-4.0.3.dep.yml b/.licenses/npm/y18n-4.0.3.dep.yml new file mode 100644 index 000000000..9f1e940b1 --- /dev/null +++ b/.licenses/npm/y18n-4.0.3.dep.yml @@ -0,0 +1,36 @@ +--- +name: y18n +version: 4.0.3 +type: npm +summary: the bare-bones internationalization library used by yargs +homepage: https://github.com/yargs/y18n +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015, Contributors + + Permission to use, copy, modify, and/or distribute this software for any purpose + with or without fee is hereby granted, provided that the above copyright notice + and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF + THIS SOFTWARE. +- sources: README.md + text: |- + ISC + + [travis-url]: https://travis-ci.org/yargs/y18n + [travis-image]: https://img.shields.io/travis/yargs/y18n.svg + [coveralls-url]: https://coveralls.io/github/yargs/y18n + [coveralls-image]: https://img.shields.io/coveralls/yargs/y18n.svg + [npm-url]: https://npmjs.org/package/y18n + [npm-image]: https://img.shields.io/npm/v/y18n.svg + [standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg + [standard-url]: https://github.com/feross/standard +notices: [] diff --git a/.licenses/npm/y18n-5.0.8.dep.yml b/.licenses/npm/y18n-5.0.8.dep.yml new file mode 100644 index 000000000..651b2a065 --- /dev/null +++ b/.licenses/npm/y18n-5.0.8.dep.yml @@ -0,0 +1,32 @@ +--- +name: y18n +version: 5.0.8 +type: npm +summary: the bare-bones internationalization library used by yargs +homepage: https://github.com/yargs/y18n +license: isc +licenses: +- sources: LICENSE + text: | + Copyright (c) 2015, Contributors + + Permission to use, copy, modify, and/or distribute this software for any purpose + with or without fee is hereby granted, provided that the above copyright notice + and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF + THIS SOFTWARE. +- sources: README.md + text: |- + ISC + + [npm-url]: https://npmjs.org/package/y18n + [npm-image]: https://img.shields.io/npm/v/y18n.svg + [standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg + [standard-url]: https://github.com/feross/standard +notices: [] diff --git a/.licenses/npm/yallist-2.1.2.dep.yml b/.licenses/npm/yallist-2.1.2.dep.yml new file mode 100644 index 000000000..b436fcfda --- /dev/null +++ b/.licenses/npm/yallist-2.1.2.dep.yml @@ -0,0 +1,26 @@ +--- +name: yallist +version: 2.1.2 +type: npm +summary: Yet Another Linked List +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/yallist-4.0.0.dep.yml b/.licenses/npm/yallist-4.0.0.dep.yml new file mode 100644 index 000000000..f767d8af3 --- /dev/null +++ b/.licenses/npm/yallist-4.0.0.dep.yml @@ -0,0 +1,26 @@ +--- +name: yallist +version: 4.0.0 +type: npm +summary: Yet Another Linked List +homepage: +license: isc +licenses: +- sources: LICENSE + text: | + The ISC License + + Copyright (c) Isaac Z. Schlueter and Contributors + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/yaml.dep.yml b/.licenses/npm/yaml.dep.yml new file mode 100644 index 000000000..a870f57bd --- /dev/null +++ b/.licenses/npm/yaml.dep.yml @@ -0,0 +1,24 @@ +--- +name: yaml +version: 1.10.2 +type: npm +summary: JavaScript parser and stringifier for YAML +homepage: https://eemeli.org/yaml/v1/ +license: isc +licenses: +- sources: LICENSE + text: | + Copyright 2018 Eemeli Aro + + Permission to use, copy, modify, and/or distribute this software for any purpose + with or without fee is hereby granted, provided that the above copyright notice + and this permission notice appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF + THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/yargs-15.4.1.dep.yml b/.licenses/npm/yargs-15.4.1.dep.yml new file mode 100644 index 000000000..05073b694 --- /dev/null +++ b/.licenses/npm/yargs-15.4.1.dep.yml @@ -0,0 +1,32 @@ +--- +name: yargs +version: 15.4.1 +type: npm +summary: yargs the modern, pirate-themed, successor to optimist. +homepage: https://yargs.js.org/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright 2010 James Halliday (mail@substack.net); Modified work Copyright 2014 Contributors (ben@npmjs.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/yargs-17.7.2.dep.yml b/.licenses/npm/yargs-17.7.2.dep.yml new file mode 100644 index 000000000..2e84b8757 --- /dev/null +++ b/.licenses/npm/yargs-17.7.2.dep.yml @@ -0,0 +1,32 @@ +--- +name: yargs +version: 17.7.2 +type: npm +summary: yargs the modern, pirate-themed, successor to optimist. +homepage: https://yargs.js.org/ +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright 2010 James Halliday (mail@substack.net); Modified work Copyright 2014 Contributors (ben@npmjs.com) + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +notices: [] diff --git a/.licenses/npm/yargs-parser-18.1.3.dep.yml b/.licenses/npm/yargs-parser-18.1.3.dep.yml new file mode 100644 index 000000000..5bf90faea --- /dev/null +++ b/.licenses/npm/yargs-parser-18.1.3.dep.yml @@ -0,0 +1,27 @@ +--- +name: yargs-parser +version: 18.1.3 +type: npm +summary: the mighty option parser used by yargs +homepage: +license: isc +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2016, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +- sources: README.md + text: ISC +notices: [] diff --git a/.licenses/npm/yargs-parser-21.1.1.dep.yml b/.licenses/npm/yargs-parser-21.1.1.dep.yml new file mode 100644 index 000000000..6502311f7 --- /dev/null +++ b/.licenses/npm/yargs-parser-21.1.1.dep.yml @@ -0,0 +1,27 @@ +--- +name: yargs-parser +version: 21.1.1 +type: npm +summary: the mighty option parser used by yargs +homepage: +license: isc +licenses: +- sources: LICENSE.txt + text: | + Copyright (c) 2016, Contributors + + Permission to use, copy, modify, and/or distribute this software + for any purpose with or without fee is hereby granted, provided + that the above copyright notice and this permission notice + appear in all copies. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES + OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +- sources: README.md + text: ISC +notices: [] diff --git a/.licenses/npm/yauzl.dep.yml b/.licenses/npm/yauzl.dep.yml new file mode 100644 index 000000000..ed7d09bc4 --- /dev/null +++ b/.licenses/npm/yauzl.dep.yml @@ -0,0 +1,32 @@ +--- +name: yauzl +version: 2.10.0 +type: npm +summary: yet another unzip library for node +homepage: https://github.com/thejoshwolfe/yauzl +license: mit +licenses: +- sources: LICENSE + text: | + The MIT License (MIT) + + Copyright (c) 2014 Josh Wolfe + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. +notices: [] From 8ac17355c65364bd2d9e498178bd499bfc7bfec7 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 22 Dec 2025 15:49:35 +0100 Subject: [PATCH 3/5] Manually reviewed a bunch of licenses --- .licensed.yml | 16 ++++++++++++++-- .licenses/npm/@pkgjs/parseargs.dep.yml | 2 +- .licenses/npm/@theia/debug.dep.yml | 2 +- .licenses/npm/@vscode/codicons.dep.yml | 2 +- .licenses/npm/@vscode/ripgrep.dep.yml | 2 +- .licenses/npm/abab.dep.yml | 2 +- .licenses/npm/abbrev.dep.yml | 2 +- .licenses/npm/arduino-ide-extension.dep.yml | 9 --------- .../npm/arduino-serial-plotter-webapp.dep.yml | 2 +- .licenses/npm/are-we-there-yet-2.0.0.dep.yml | 2 +- .licenses/npm/argparse-2.0.1.dep.yml | 2 +- .licenses/npm/bl-1.2.3.dep.yml | 2 +- .licenses/npm/bl-4.1.0.dep.yml | 2 +- .licenses/npm/btoa.dep.yml | 2 +- .licenses/npm/chainsaw.dep.yml | 2 +- .licenses/npm/color-convert.dep.yml | 2 +- .licenses/npm/crypto-js.dep.yml | 2 +- .licenses/npm/diff.dep.yml | 2 +- .licenses/npm/dompurify.dep.yml | 2 +- .licenses/npm/duplexer2.dep.yml | 2 +- .licenses/npm/electron-app.dep.yml | 9 --------- .licenses/npm/encoding.dep.yml | 2 +- .licenses/npm/escodegen.dep.yml | 2 +- .licenses/npm/estraverse.dep.yml | 2 +- .licenses/npm/esutils.dep.yml | 2 +- .licenses/npm/fast-uri.dep.yml | 2 +- .licenses/npm/font-awesome.dep.yml | 2 +- .licenses/npm/fs.realpath.dep.yml | 2 +- .licenses/npm/glob-7.2.3.dep.yml | 2 +- .licenses/npm/global-agent.dep.yml | 2 +- .licenses/npm/hoist-non-react-statics.dep.yml | 2 +- .licenses/npm/ieee754.dep.yml | 2 +- .licenses/npm/jsbn.dep.yml | 2 +- .licenses/npm/jschardet.dep.yml | 2 +- .../npm/json-parse-even-better-errors.dep.yml | 2 +- .licenses/npm/lodash.camelcase.dep.yml | 2 +- .licenses/npm/lodash.clonedeep.dep.yml | 2 +- .licenses/npm/lodash.debounce.dep.yml | 2 +- .licenses/npm/lodash.dep.yml | 2 +- .licenses/npm/lodash.escaperegexp.dep.yml | 2 +- .licenses/npm/lodash.isequal.dep.yml | 2 +- .licenses/npm/lodash.throttle.dep.yml | 2 +- .licenses/npm/mdurl.dep.yml | 2 +- .licenses/npm/minizlib.dep.yml | 2 +- .licenses/npm/node-addon-api-3.2.1.dep.yml | 2 +- .licenses/npm/node-pty.dep.yml | 2 +- .licenses/npm/package-json-from-dist.dep.yml | 2 +- .licenses/npm/pause-stream.dep.yml | 2 +- .licenses/npm/protobufjs.dep.yml | 2 +- .licenses/npm/rc.dep.yml | 2 +- .licenses/npm/react-transition-group.dep.yml | 2 +- .licenses/npm/readable-stream-2.3.8.dep.yml | 2 +- .licenses/npm/readable-stream-3.6.2.dep.yml | 2 +- .licenses/npm/roarr.dep.yml | 2 +- .licenses/npm/sax.dep.yml | 2 +- .licenses/npm/seek-bzip.dep.yml | 2 +- .licenses/npm/source-map-0.5.7.dep.yml | 2 +- .licenses/npm/source-map-0.6.1.dep.yml | 2 +- .licenses/npm/sprintf-js-1.0.3.dep.yml | 2 +- .licenses/npm/string_decoder-1.1.1.dep.yml | 2 +- .licenses/npm/string_decoder-1.3.0.dep.yml | 2 +- .licenses/npm/traverse.dep.yml | 2 +- .licenses/npm/type-fest-2.19.0.dep.yml | 2 +- .licenses/npm/typedarray.dep.yml | 2 +- .licenses/npm/unbzip2-stream.dep.yml | 2 +- .licenses/npm/unified.dep.yml | 2 +- .licenses/npm/unzipper.dep.yml | 2 +- .licenses/npm/uri-js.dep.yml | 2 +- 68 files changed, 79 insertions(+), 85 deletions(-) delete mode 100644 .licenses/npm/arduino-ide-extension.dep.yml delete mode 100644 .licenses/npm/electron-app.dep.yml diff --git a/.licensed.yml b/.licensed.yml index 9324ebf6c..275bc449b 100644 --- a/.licensed.yml +++ b/.licensed.yml @@ -5,10 +5,14 @@ sources: ignored: npm: + - arduino-ide-extension # this is a project in this repo + - electron-app # this is a project in this repo + # "msgpackr-extract" and "@parcel/watcher" have some optional (architecutre native) packages. - "@msgpackr-extract/msgpackr-extract-**" # ignored in favor of parent package "msgpackr-extract" - "@parcel/watcher-**" # ignored in favor of parent package "@parcel-watcher" - # "@vscode/windows-ca-certs" is installed only windows + + # "@vscode/windows-ca-certs" is installed only on windows - "@vscode/windows-ca-certs" # Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies/AGPL-3.0/.licensed.yml @@ -89,4 +93,12 @@ allowed: - zpl-2.0 - zpl-2.1 # The following are based on individual license text - - eupl-1.2 \ No newline at end of file + - eupl-1.2 + + # to check + - 0bsd + - epl-2.0 + - blueoak-1.0.0 + - Python-2.0 + - OFL-1.1 + - CC-BY-4.0 \ No newline at end of file diff --git a/.licenses/npm/@pkgjs/parseargs.dep.yml b/.licenses/npm/@pkgjs/parseargs.dep.yml index 13fa21a60..ac55fc016 100644 --- a/.licenses/npm/@pkgjs/parseargs.dep.yml +++ b/.licenses/npm/@pkgjs/parseargs.dep.yml @@ -4,7 +4,7 @@ version: 0.11.0 type: npm summary: Polyfill of future proposal for `util.parseArgs()` homepage: https://github.com/pkgjs/parseargs#readme -license: other +license: apache-2.0 licenses: - sources: LICENSE text: |2 diff --git a/.licenses/npm/@theia/debug.dep.yml b/.licenses/npm/@theia/debug.dep.yml index eae6e09b2..23f648a95 100644 --- a/.licenses/npm/@theia/debug.dep.yml +++ b/.licenses/npm/@theia/debug.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Debug Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 licenses: - sources: README.md text: |- diff --git a/.licenses/npm/@vscode/codicons.dep.yml b/.licenses/npm/@vscode/codicons.dep.yml index 904e7f674..8900f883e 100644 --- a/.licenses/npm/@vscode/codicons.dep.yml +++ b/.licenses/npm/@vscode/codicons.dep.yml @@ -4,7 +4,7 @@ version: 0.0.36 type: npm summary: The icon font for Visual Studio Code homepage: -license: other +license: CC-BY-4.0 licenses: - sources: LICENSE text: "\uFEFFAttribution 4.0 International\n\n=======================================================================\n\nCreative diff --git a/.licenses/npm/@vscode/ripgrep.dep.yml b/.licenses/npm/@vscode/ripgrep.dep.yml index 27b61fb2e..1b8d3253d 100644 --- a/.licenses/npm/@vscode/ripgrep.dep.yml +++ b/.licenses/npm/@vscode/ripgrep.dep.yml @@ -4,7 +4,7 @@ version: 1.15.11 type: npm summary: A module for using ripgrep in a Node project homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/abab.dep.yml b/.licenses/npm/abab.dep.yml index 2d367a0d1..9eeb8036f 100644 --- a/.licenses/npm/abab.dep.yml +++ b/.licenses/npm/abab.dep.yml @@ -4,7 +4,7 @@ version: 2.0.6 type: npm summary: WHATWG spec-compliant implementations of window.atob and window.btoa. homepage: https://github.com/jsdom/abab#readme -license: other +license: bsd-3-clause licenses: - sources: LICENSE.md text: | diff --git a/.licenses/npm/abbrev.dep.yml b/.licenses/npm/abbrev.dep.yml index 81d12b14d..395684d08 100644 --- a/.licenses/npm/abbrev.dep.yml +++ b/.licenses/npm/abbrev.dep.yml @@ -4,7 +4,7 @@ version: 1.1.1 type: npm summary: Like ruby's abbrev module, but in js homepage: -license: other +license: isc licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/arduino-ide-extension.dep.yml b/.licenses/npm/arduino-ide-extension.dep.yml deleted file mode 100644 index 78d445848..000000000 --- a/.licenses/npm/arduino-ide-extension.dep.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: arduino-ide-extension -version: 2.3.7 -type: npm -summary: An extension for Theia building the Arduino IDE -homepage: -license: other -licenses: [] -notices: [] diff --git a/.licenses/npm/arduino-serial-plotter-webapp.dep.yml b/.licenses/npm/arduino-serial-plotter-webapp.dep.yml index 47116c8bd..1706b5580 100644 --- a/.licenses/npm/arduino-serial-plotter-webapp.dep.yml +++ b/.licenses/npm/arduino-serial-plotter-webapp.dep.yml @@ -4,7 +4,7 @@ version: 0.2.0 type: npm summary: homepage: -license: other +license: agpl-3.0 licenses: - sources: LICENSE text: |2 diff --git a/.licenses/npm/are-we-there-yet-2.0.0.dep.yml b/.licenses/npm/are-we-there-yet-2.0.0.dep.yml index c230e0fd2..d4928fe77 100644 --- a/.licenses/npm/are-we-there-yet-2.0.0.dep.yml +++ b/.licenses/npm/are-we-there-yet-2.0.0.dep.yml @@ -4,7 +4,7 @@ version: 2.0.0 type: npm summary: Keep track of the overall completion of many disparate processes homepage: https://github.com/npm/are-we-there-yet -license: other +license: isc licenses: - sources: LICENSE.md text: | diff --git a/.licenses/npm/argparse-2.0.1.dep.yml b/.licenses/npm/argparse-2.0.1.dep.yml index 0eba425d7..a3d6ef973 100644 --- a/.licenses/npm/argparse-2.0.1.dep.yml +++ b/.licenses/npm/argparse-2.0.1.dep.yml @@ -4,7 +4,7 @@ version: 2.0.1 type: npm summary: CLI arguments parser. Native port of python's argparse. homepage: -license: other +license: Python-2.0 licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/bl-1.2.3.dep.yml b/.licenses/npm/bl-1.2.3.dep.yml index e71c908c4..b08504aae 100644 --- a/.licenses/npm/bl-1.2.3.dep.yml +++ b/.licenses/npm/bl-1.2.3.dep.yml @@ -5,7 +5,7 @@ type: npm summary: 'Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!' homepage: https://github.com/rvagg/bl -license: other +license: mit licenses: - sources: LICENSE.md text: | diff --git a/.licenses/npm/bl-4.1.0.dep.yml b/.licenses/npm/bl-4.1.0.dep.yml index 096d01525..76e04eb28 100644 --- a/.licenses/npm/bl-4.1.0.dep.yml +++ b/.licenses/npm/bl-4.1.0.dep.yml @@ -5,7 +5,7 @@ type: npm summary: 'Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!' homepage: https://github.com/rvagg/bl -license: other +license: mit licenses: - sources: LICENSE.md text: | diff --git a/.licenses/npm/btoa.dep.yml b/.licenses/npm/btoa.dep.yml index e697be395..2ddf03c53 100644 --- a/.licenses/npm/btoa.dep.yml +++ b/.licenses/npm/btoa.dep.yml @@ -4,7 +4,7 @@ version: 1.2.1 type: npm summary: btoa for Node.JS (it's a one-liner) homepage: https://git.coolaj86.com/coolaj86/btoa.js.git -license: other +license: apache-2.0 licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/chainsaw.dep.yml b/.licenses/npm/chainsaw.dep.yml index 692ef61c6..1f2e0cd09 100644 --- a/.licenses/npm/chainsaw.dep.yml +++ b/.licenses/npm/chainsaw.dep.yml @@ -4,6 +4,6 @@ version: 0.1.0 type: npm summary: Build chainable fluent interfaces the easy way... with a freakin' chainsaw! homepage: -license: none +license: mit # https://www.npmjs.com/package/chainsaw licenses: [] notices: [] diff --git a/.licenses/npm/color-convert.dep.yml b/.licenses/npm/color-convert.dep.yml index 5a7944b2b..3d412c5dc 100644 --- a/.licenses/npm/color-convert.dep.yml +++ b/.licenses/npm/color-convert.dep.yml @@ -4,7 +4,7 @@ version: 2.0.1 type: npm summary: Plain color conversion functions homepage: -license: other +license: mit licenses: - sources: LICENSE text: |+ diff --git a/.licenses/npm/crypto-js.dep.yml b/.licenses/npm/crypto-js.dep.yml index dcb75bc31..b564f77bf 100644 --- a/.licenses/npm/crypto-js.dep.yml +++ b/.licenses/npm/crypto-js.dep.yml @@ -4,7 +4,7 @@ version: 4.2.0 type: npm summary: JavaScript library of crypto standards. homepage: http://github.com/brix/crypto-js -license: other +license: mit licenses: - sources: LICENSE text: "# License\n\n[The MIT License (MIT)](http://opensource.org/licenses/MIT)\n\nCopyright diff --git a/.licenses/npm/diff.dep.yml b/.licenses/npm/diff.dep.yml index 45716f467..2f1c49a35 100644 --- a/.licenses/npm/diff.dep.yml +++ b/.licenses/npm/diff.dep.yml @@ -4,7 +4,7 @@ version: 5.2.0 type: npm summary: A JavaScript text diff implementation. homepage: -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/dompurify.dep.yml b/.licenses/npm/dompurify.dep.yml index ab7cf3d8c..ddc08eba6 100644 --- a/.licenses/npm/dompurify.dep.yml +++ b/.licenses/npm/dompurify.dep.yml @@ -8,7 +8,7 @@ summary: DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HT else using Blink or WebKit). DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not. homepage: https://github.com/cure53/DOMPurify -license: other +license: apache-2.0 licenses: - sources: LICENSE text: |+ diff --git a/.licenses/npm/duplexer2.dep.yml b/.licenses/npm/duplexer2.dep.yml index 43a95d451..e308a179e 100644 --- a/.licenses/npm/duplexer2.dep.yml +++ b/.licenses/npm/duplexer2.dep.yml @@ -4,7 +4,7 @@ version: 0.1.4 type: npm summary: Like duplexer but using streams3 homepage: -license: other +license: bsd-3-clause licenses: - sources: LICENSE.md text: "Copyright (c) 2013, Deoxxa Development\n======================================\nAll diff --git a/.licenses/npm/electron-app.dep.yml b/.licenses/npm/electron-app.dep.yml deleted file mode 100644 index 8e94767c1..000000000 --- a/.licenses/npm/electron-app.dep.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: electron-app -version: 2.3.7 -type: npm -summary: Arduino IDE -homepage: -license: other -licenses: [] -notices: [] diff --git a/.licenses/npm/encoding.dep.yml b/.licenses/npm/encoding.dep.yml index f1741ff97..b548a9eab 100644 --- a/.licenses/npm/encoding.dep.yml +++ b/.licenses/npm/encoding.dep.yml @@ -4,7 +4,7 @@ version: 0.1.13 type: npm summary: Convert encodings, uses iconv-lite homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/escodegen.dep.yml b/.licenses/npm/escodegen.dep.yml index 64c715740..9c49863fa 100644 --- a/.licenses/npm/escodegen.dep.yml +++ b/.licenses/npm/escodegen.dep.yml @@ -4,7 +4,7 @@ version: 2.1.0 type: npm summary: ECMAScript code generator homepage: http://github.com/estools/escodegen -license: other +license: bsd-2-clause licenses: - sources: LICENSE.BSD text: | diff --git a/.licenses/npm/estraverse.dep.yml b/.licenses/npm/estraverse.dep.yml index 0d5f0883b..1b06346e0 100644 --- a/.licenses/npm/estraverse.dep.yml +++ b/.licenses/npm/estraverse.dep.yml @@ -4,7 +4,7 @@ version: 5.3.0 type: npm summary: ECMAScript JS AST traversal functions homepage: https://github.com/estools/estraverse -license: other +license: bsd-2-clause licenses: - sources: LICENSE.BSD text: | diff --git a/.licenses/npm/esutils.dep.yml b/.licenses/npm/esutils.dep.yml index f1b0e4ce0..c10411570 100644 --- a/.licenses/npm/esutils.dep.yml +++ b/.licenses/npm/esutils.dep.yml @@ -4,7 +4,7 @@ version: 2.0.3 type: npm summary: utility box for ECMAScript language tools homepage: https://github.com/estools/esutils -license: other +license: bsd-2-clause licenses: - sources: LICENSE.BSD text: | diff --git a/.licenses/npm/fast-uri.dep.yml b/.licenses/npm/fast-uri.dep.yml index a48878e76..f069878de 100644 --- a/.licenses/npm/fast-uri.dep.yml +++ b/.licenses/npm/fast-uri.dep.yml @@ -4,7 +4,7 @@ version: 3.0.6 type: npm summary: Dependency-free RFC 3986 URI toolbox homepage: https://github.com/fastify/fast-uri -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: |- diff --git a/.licenses/npm/font-awesome.dep.yml b/.licenses/npm/font-awesome.dep.yml index fcdd3ea6a..f281167c1 100644 --- a/.licenses/npm/font-awesome.dep.yml +++ b/.licenses/npm/font-awesome.dep.yml @@ -4,7 +4,7 @@ version: 4.7.0 type: npm summary: The iconic font and CSS framework homepage: http://fontawesome.io/ -license: other +license: OFL-1.1 licenses: - sources: README.md text: "- The Font Awesome font is licensed under the SIL OFL 1.1:" diff --git a/.licenses/npm/fs.realpath.dep.yml b/.licenses/npm/fs.realpath.dep.yml index 18567bbc3..28f5754f4 100644 --- a/.licenses/npm/fs.realpath.dep.yml +++ b/.licenses/npm/fs.realpath.dep.yml @@ -5,7 +5,7 @@ type: npm summary: Use node's fs.realpath, but fall back to the JS implementation if the native one fails homepage: -license: other +license: isc licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/glob-7.2.3.dep.yml b/.licenses/npm/glob-7.2.3.dep.yml index 257b41bfe..915452e51 100644 --- a/.licenses/npm/glob-7.2.3.dep.yml +++ b/.licenses/npm/glob-7.2.3.dep.yml @@ -4,7 +4,7 @@ version: 7.2.3 type: npm summary: a little globber homepage: -license: other +license: isc licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/global-agent.dep.yml b/.licenses/npm/global-agent.dep.yml index 6aa1d8a94..637784fdb 100644 --- a/.licenses/npm/global-agent.dep.yml +++ b/.licenses/npm/global-agent.dep.yml @@ -4,7 +4,7 @@ version: 3.0.0 type: npm summary: Global HTTP/HTTPS proxy configurable using environment variables. homepage: -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/hoist-non-react-statics.dep.yml b/.licenses/npm/hoist-non-react-statics.dep.yml index 452a2c7cf..41a1e0fa1 100644 --- a/.licenses/npm/hoist-non-react-statics.dep.yml +++ b/.licenses/npm/hoist-non-react-statics.dep.yml @@ -4,7 +4,7 @@ version: 3.3.2 type: npm summary: Copies non-react specific statics from a child component to a parent component homepage: -license: other +license: bsd-3-clause licenses: - sources: LICENSE.md text: | diff --git a/.licenses/npm/ieee754.dep.yml b/.licenses/npm/ieee754.dep.yml index 02746b61b..327234bb1 100644 --- a/.licenses/npm/ieee754.dep.yml +++ b/.licenses/npm/ieee754.dep.yml @@ -5,7 +5,7 @@ type: npm summary: Read/write IEEE754 floating point numbers from/to a Buffer or array-like object homepage: -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/jsbn.dep.yml b/.licenses/npm/jsbn.dep.yml index ada87f6f6..d0d82cf8f 100644 --- a/.licenses/npm/jsbn.dep.yml +++ b/.licenses/npm/jsbn.dep.yml @@ -6,7 +6,7 @@ summary: The jsbn library is a fast, portable implementation of large-number mat in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers. homepage: -license: other +license: mit licenses: - sources: LICENSE text: "Licensing\n---------\n\nThis software is covered under the following copyright:\n\n/*\n diff --git a/.licenses/npm/jschardet.dep.yml b/.licenses/npm/jschardet.dep.yml index f92d7cf31..631c53d37 100644 --- a/.licenses/npm/jschardet.dep.yml +++ b/.licenses/npm/jschardet.dep.yml @@ -4,7 +4,7 @@ version: 2.3.0 type: npm summary: Character encoding auto-detection in JavaScript (port of python's chardet) homepage: -license: other +license: lgpl-2.1 licenses: - sources: LICENSE text: |2 diff --git a/.licenses/npm/json-parse-even-better-errors.dep.yml b/.licenses/npm/json-parse-even-better-errors.dep.yml index 699d56744..82af87ef6 100644 --- a/.licenses/npm/json-parse-even-better-errors.dep.yml +++ b/.licenses/npm/json-parse-even-better-errors.dep.yml @@ -4,7 +4,7 @@ version: 2.3.1 type: npm summary: JSON.parse with context information on error homepage: -license: other +license: mit licenses: - sources: LICENSE.md text: | diff --git a/.licenses/npm/lodash.camelcase.dep.yml b/.licenses/npm/lodash.camelcase.dep.yml index e3edd2be6..1529516ce 100644 --- a/.licenses/npm/lodash.camelcase.dep.yml +++ b/.licenses/npm/lodash.camelcase.dep.yml @@ -4,7 +4,7 @@ version: 4.3.0 type: npm summary: The lodash method `_.camelCase` exported as a module. homepage: https://lodash.com/ -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/lodash.clonedeep.dep.yml b/.licenses/npm/lodash.clonedeep.dep.yml index a1b0a157a..900d7ba24 100644 --- a/.licenses/npm/lodash.clonedeep.dep.yml +++ b/.licenses/npm/lodash.clonedeep.dep.yml @@ -4,7 +4,7 @@ version: 4.5.0 type: npm summary: The lodash method `_.cloneDeep` exported as a module. homepage: https://lodash.com/ -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/lodash.debounce.dep.yml b/.licenses/npm/lodash.debounce.dep.yml index 768fe359a..2a23769d9 100644 --- a/.licenses/npm/lodash.debounce.dep.yml +++ b/.licenses/npm/lodash.debounce.dep.yml @@ -4,7 +4,7 @@ version: 4.0.8 type: npm summary: The lodash method `_.debounce` exported as a module. homepage: https://lodash.com/ -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/lodash.dep.yml b/.licenses/npm/lodash.dep.yml index fce2daa37..4314a88a5 100644 --- a/.licenses/npm/lodash.dep.yml +++ b/.licenses/npm/lodash.dep.yml @@ -4,7 +4,7 @@ version: 4.17.21 type: npm summary: Lodash modular utilities. homepage: https://lodash.com/ -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/lodash.escaperegexp.dep.yml b/.licenses/npm/lodash.escaperegexp.dep.yml index 036dbc923..085b1a40c 100644 --- a/.licenses/npm/lodash.escaperegexp.dep.yml +++ b/.licenses/npm/lodash.escaperegexp.dep.yml @@ -4,7 +4,7 @@ version: 4.1.2 type: npm summary: The lodash method `_.escapeRegExp` exported as a module. homepage: https://lodash.com/ -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/lodash.isequal.dep.yml b/.licenses/npm/lodash.isequal.dep.yml index 9189ffce5..4bc8358e0 100644 --- a/.licenses/npm/lodash.isequal.dep.yml +++ b/.licenses/npm/lodash.isequal.dep.yml @@ -4,7 +4,7 @@ version: 4.5.0 type: npm summary: The Lodash method `_.isEqual` exported as a module. homepage: https://lodash.com/ -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/lodash.throttle.dep.yml b/.licenses/npm/lodash.throttle.dep.yml index afa397f95..c59b62109 100644 --- a/.licenses/npm/lodash.throttle.dep.yml +++ b/.licenses/npm/lodash.throttle.dep.yml @@ -4,7 +4,7 @@ version: 4.1.1 type: npm summary: The lodash method `_.throttle` exported as a module. homepage: https://lodash.com/ -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/mdurl.dep.yml b/.licenses/npm/mdurl.dep.yml index 2db3755d4..2ee6eba15 100644 --- a/.licenses/npm/mdurl.dep.yml +++ b/.licenses/npm/mdurl.dep.yml @@ -4,7 +4,7 @@ version: 1.0.1 type: npm summary: URL utilities for markdown-it homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/minizlib.dep.yml b/.licenses/npm/minizlib.dep.yml index a583d9bc5..270cc242d 100644 --- a/.licenses/npm/minizlib.dep.yml +++ b/.licenses/npm/minizlib.dep.yml @@ -5,7 +5,7 @@ type: npm summary: A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding. homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/node-addon-api-3.2.1.dep.yml b/.licenses/npm/node-addon-api-3.2.1.dep.yml index 6d7bbe338..0e8827f7d 100644 --- a/.licenses/npm/node-addon-api-3.2.1.dep.yml +++ b/.licenses/npm/node-addon-api-3.2.1.dep.yml @@ -4,7 +4,7 @@ version: 3.2.1 type: npm summary: Node.js API (Node-API) homepage: https://github.com/nodejs/node-addon-api -license: other +license: mit licenses: - sources: LICENSE.md text: |- diff --git a/.licenses/npm/node-pty.dep.yml b/.licenses/npm/node-pty.dep.yml index f873a3663..c93b0e656 100644 --- a/.licenses/npm/node-pty.dep.yml +++ b/.licenses/npm/node-pty.dep.yml @@ -4,7 +4,7 @@ version: 0.11.0-beta24 type: npm summary: Fork pseudoterminals in Node.JS homepage: https://github.com/microsoft/node-pty -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/package-json-from-dist.dep.yml b/.licenses/npm/package-json-from-dist.dep.yml index 54e71eb0f..42809920b 100644 --- a/.licenses/npm/package-json-from-dist.dep.yml +++ b/.licenses/npm/package-json-from-dist.dep.yml @@ -4,7 +4,7 @@ version: 1.0.1 type: npm summary: Load the local package.json from either src or dist folder homepage: -license: other +license: blueoak-1.0.0 licenses: - sources: LICENSE.md text: | diff --git a/.licenses/npm/pause-stream.dep.yml b/.licenses/npm/pause-stream.dep.yml index c73c8f64b..ac91dca42 100644 --- a/.licenses/npm/pause-stream.dep.yml +++ b/.licenses/npm/pause-stream.dep.yml @@ -4,7 +4,7 @@ version: 0.0.11 type: npm summary: a ThroughStream that strictly buffers all readable events when paused. homepage: -license: other +license: mit licenses: - sources: LICENSE text: "Dual Licensed MIT and Apache 2\n\nThe MIT License\n\nCopyright (c) 2013 Dominic diff --git a/.licenses/npm/protobufjs.dep.yml b/.licenses/npm/protobufjs.dep.yml index 2093b4d12..88ffc71ce 100644 --- a/.licenses/npm/protobufjs.dep.yml +++ b/.licenses/npm/protobufjs.dep.yml @@ -4,7 +4,7 @@ version: 7.4.0 type: npm summary: Protocol Buffers for JavaScript (& TypeScript). homepage: https://protobufjs.github.io/protobuf.js/ -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/rc.dep.yml b/.licenses/npm/rc.dep.yml index d4d7c6f5c..2ece98e4c 100644 --- a/.licenses/npm/rc.dep.yml +++ b/.licenses/npm/rc.dep.yml @@ -4,7 +4,7 @@ version: 1.2.8 type: npm summary: hardwired configuration loader homepage: -license: other +license: mit licenses: - sources: LICENSE.APACHE2 text: | diff --git a/.licenses/npm/react-transition-group.dep.yml b/.licenses/npm/react-transition-group.dep.yml index 022d9c18e..c78621687 100644 --- a/.licenses/npm/react-transition-group.dep.yml +++ b/.licenses/npm/react-transition-group.dep.yml @@ -4,7 +4,7 @@ version: 4.4.5 type: npm summary: A react component toolset for managing animations homepage: https://github.com/reactjs/react-transition-group#readme -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/readable-stream-2.3.8.dep.yml b/.licenses/npm/readable-stream-2.3.8.dep.yml index 7cf8551a4..a0c9a0489 100644 --- a/.licenses/npm/readable-stream-2.3.8.dep.yml +++ b/.licenses/npm/readable-stream-2.3.8.dep.yml @@ -4,7 +4,7 @@ version: 2.3.8 type: npm summary: Streams3, a user-land copy of the stream library from Node.js homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/readable-stream-3.6.2.dep.yml b/.licenses/npm/readable-stream-3.6.2.dep.yml index ffe196f6e..3ba1f7632 100644 --- a/.licenses/npm/readable-stream-3.6.2.dep.yml +++ b/.licenses/npm/readable-stream-3.6.2.dep.yml @@ -4,7 +4,7 @@ version: 3.6.2 type: npm summary: Streams3, a user-land copy of the stream library from Node.js homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/roarr.dep.yml b/.licenses/npm/roarr.dep.yml index 0ef2c2051..694e5ff5b 100644 --- a/.licenses/npm/roarr.dep.yml +++ b/.licenses/npm/roarr.dep.yml @@ -4,7 +4,7 @@ version: 2.15.4 type: npm summary: JSON logger for Node.js and browser. homepage: -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/sax.dep.yml b/.licenses/npm/sax.dep.yml index 096f4ae4f..4a899d0f0 100644 --- a/.licenses/npm/sax.dep.yml +++ b/.licenses/npm/sax.dep.yml @@ -4,7 +4,7 @@ version: 1.4.1 type: npm summary: An evented streaming XML parser in JavaScript homepage: -license: other +license: isc # https://interoperable-europe.ec.europa.eu/licence/compatibility-check/MIT/ISC licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/seek-bzip.dep.yml b/.licenses/npm/seek-bzip.dep.yml index a68b286ca..ee81a77c0 100644 --- a/.licenses/npm/seek-bzip.dep.yml +++ b/.licenses/npm/seek-bzip.dep.yml @@ -4,7 +4,7 @@ version: 1.0.6 type: npm summary: a pure-JavaScript Node.JS module for random-access decoding bzip2 data homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/source-map-0.5.7.dep.yml b/.licenses/npm/source-map-0.5.7.dep.yml index dc4feb762..472093450 100644 --- a/.licenses/npm/source-map-0.5.7.dep.yml +++ b/.licenses/npm/source-map-0.5.7.dep.yml @@ -4,7 +4,7 @@ version: 0.5.7 type: npm summary: Generates and consumes source maps homepage: https://github.com/mozilla/source-map -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: |2 diff --git a/.licenses/npm/source-map-0.6.1.dep.yml b/.licenses/npm/source-map-0.6.1.dep.yml index e442ede9f..4eb82470a 100644 --- a/.licenses/npm/source-map-0.6.1.dep.yml +++ b/.licenses/npm/source-map-0.6.1.dep.yml @@ -4,7 +4,7 @@ version: 0.6.1 type: npm summary: Generates and consumes source maps homepage: https://github.com/mozilla/source-map -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: |2 diff --git a/.licenses/npm/sprintf-js-1.0.3.dep.yml b/.licenses/npm/sprintf-js-1.0.3.dep.yml index 0b10755e8..3ee563d8b 100644 --- a/.licenses/npm/sprintf-js-1.0.3.dep.yml +++ b/.licenses/npm/sprintf-js-1.0.3.dep.yml @@ -4,7 +4,7 @@ version: 1.0.3 type: npm summary: JavaScript sprintf implementation homepage: -license: other +license: bsd-3-clause licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/string_decoder-1.1.1.dep.yml b/.licenses/npm/string_decoder-1.1.1.dep.yml index ab0a64f79..bd9eabd60 100644 --- a/.licenses/npm/string_decoder-1.1.1.dep.yml +++ b/.licenses/npm/string_decoder-1.1.1.dep.yml @@ -4,7 +4,7 @@ version: 1.1.1 type: npm summary: The string_decoder module from Node core homepage: https://github.com/nodejs/string_decoder -license: other +license: mit licenses: - sources: LICENSE text: |+ diff --git a/.licenses/npm/string_decoder-1.3.0.dep.yml b/.licenses/npm/string_decoder-1.3.0.dep.yml index 84d1b1ebd..c1382e25b 100644 --- a/.licenses/npm/string_decoder-1.3.0.dep.yml +++ b/.licenses/npm/string_decoder-1.3.0.dep.yml @@ -4,7 +4,7 @@ version: 1.3.0 type: npm summary: The string_decoder module from Node core homepage: https://github.com/nodejs/string_decoder -license: other +license: mit licenses: - sources: LICENSE text: |+ diff --git a/.licenses/npm/traverse.dep.yml b/.licenses/npm/traverse.dep.yml index 6aa35da90..d3f850cf8 100644 --- a/.licenses/npm/traverse.dep.yml +++ b/.licenses/npm/traverse.dep.yml @@ -4,7 +4,7 @@ version: 0.3.9 type: npm summary: Traverse and transform objects by visiting every node on a recursive walk homepage: -license: other +license: mit licenses: - sources: LICENSE text: "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free diff --git a/.licenses/npm/type-fest-2.19.0.dep.yml b/.licenses/npm/type-fest-2.19.0.dep.yml index ce45b13ff..ad9f25c8b 100644 --- a/.licenses/npm/type-fest-2.19.0.dep.yml +++ b/.licenses/npm/type-fest-2.19.0.dep.yml @@ -4,7 +4,7 @@ version: 2.19.0 type: npm summary: A collection of essential TypeScript types homepage: -license: other +license: mit licenses: - sources: readme.md text: "SPDX-License-Identifier: (MIT OR CC0-1.0)\n\n---\n\n
\n\t\n\t\t Date: Mon, 22 Dec 2025 16:33:35 +0100 Subject: [PATCH 4/5] Reviewed all Theia packages --- .licensed.yml | 2 +- .licenses/npm/@theia/application-package.dep.yml | 2 +- .licenses/npm/@theia/bulk-edit.dep.yml | 2 +- .licenses/npm/@theia/callhierarchy.dep.yml | 2 +- .licenses/npm/@theia/console.dep.yml | 2 +- .licenses/npm/@theia/core.dep.yml | 2 +- .licenses/npm/@theia/editor-preview.dep.yml | 2 +- .licenses/npm/@theia/editor.dep.yml | 2 +- .licenses/npm/@theia/electron.dep.yml | 2 +- .licenses/npm/@theia/file-search.dep.yml | 2 +- .licenses/npm/@theia/filesystem.dep.yml | 2 +- .licenses/npm/@theia/keymaps.dep.yml | 2 +- .licenses/npm/@theia/markers.dep.yml | 2 +- .licenses/npm/@theia/messages.dep.yml | 2 +- .licenses/npm/@theia/monaco-editor-core.dep.yml | 2 +- .licenses/npm/@theia/monaco.dep.yml | 2 +- .licenses/npm/@theia/navigator.dep.yml | 2 +- .licenses/npm/@theia/notebook.dep.yml | 2 +- .licenses/npm/@theia/outline-view.dep.yml | 2 +- .licenses/npm/@theia/output.dep.yml | 2 +- .licenses/npm/@theia/plugin-ext-vscode.dep.yml | 2 +- .licenses/npm/@theia/plugin-ext.dep.yml | 2 +- .licenses/npm/@theia/plugin.dep.yml | 2 +- .licenses/npm/@theia/preferences.dep.yml | 2 +- .licenses/npm/@theia/process.dep.yml | 2 +- .licenses/npm/@theia/request.dep.yml | 2 +- .licenses/npm/@theia/scm.dep.yml | 2 +- .licenses/npm/@theia/search-in-workspace.dep.yml | 2 +- .licenses/npm/@theia/task.dep.yml | 2 +- .licenses/npm/@theia/terminal.dep.yml | 2 +- .licenses/npm/@theia/test.dep.yml | 2 +- .licenses/npm/@theia/timeline.dep.yml | 2 +- .licenses/npm/@theia/typehierarchy.dep.yml | 2 +- .licenses/npm/@theia/userstorage.dep.yml | 2 +- .licenses/npm/@theia/variable-resolver.dep.yml | 2 +- .licenses/npm/@theia/workspace.dep.yml | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.licensed.yml b/.licensed.yml index 275bc449b..036f39135 100644 --- a/.licensed.yml +++ b/.licensed.yml @@ -95,9 +95,9 @@ allowed: # The following are based on individual license text - eupl-1.2 + - epl-2.0 # https://interoperable-europe.ec.europa.eu/licence/compatibility-check/EPL-2.0/AGPL-3.0-only # to check - 0bsd - - epl-2.0 - blueoak-1.0.0 - Python-2.0 - OFL-1.1 diff --git a/.licenses/npm/@theia/application-package.dep.yml b/.licenses/npm/@theia/application-package.dep.yml index faaba49be..47a0d1c30 100644 --- a/.licenses/npm/@theia/application-package.dep.yml +++ b/.licenses/npm/@theia/application-package.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia application package API. homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/bulk-edit.dep.yml b/.licenses/npm/@theia/bulk-edit.dep.yml index 5a66d3165..bb7210dc3 100644 --- a/.licenses/npm/@theia/bulk-edit.dep.yml +++ b/.licenses/npm/@theia/bulk-edit.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Bulk Edit Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/callhierarchy.dep.yml b/.licenses/npm/@theia/callhierarchy.dep.yml index 1d33f7a0c..b6debdfb8 100644 --- a/.licenses/npm/@theia/callhierarchy.dep.yml +++ b/.licenses/npm/@theia/callhierarchy.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Call Hierarchy Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/console.dep.yml b/.licenses/npm/@theia/console.dep.yml index d027c340e..d75ee2a24 100644 --- a/.licenses/npm/@theia/console.dep.yml +++ b/.licenses/npm/@theia/console.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Console Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/core.dep.yml b/.licenses/npm/@theia/core.dep.yml index f6fcac95a..b4850a36e 100644 --- a/.licenses/npm/@theia/core.dep.yml +++ b/.licenses/npm/@theia/core.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia is a cloud & desktop IDE framework implemented in TypeScript. homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/editor-preview.dep.yml b/.licenses/npm/@theia/editor-preview.dep.yml index 4a8dc6a06..27d7968ef 100644 --- a/.licenses/npm/@theia/editor-preview.dep.yml +++ b/.licenses/npm/@theia/editor-preview.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Editor Preview Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/editor.dep.yml b/.licenses/npm/@theia/editor.dep.yml index d7815d83a..9d7f6b779 100644 --- a/.licenses/npm/@theia/editor.dep.yml +++ b/.licenses/npm/@theia/editor.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Editor Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/electron.dep.yml b/.licenses/npm/@theia/electron.dep.yml index 21aa522f4..52acd09c6 100644 --- a/.licenses/npm/@theia/electron.dep.yml +++ b/.licenses/npm/@theia/electron.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Electron utility package homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/file-search.dep.yml b/.licenses/npm/@theia/file-search.dep.yml index 49e149df6..96733a618 100644 --- a/.licenses/npm/@theia/file-search.dep.yml +++ b/.licenses/npm/@theia/file-search.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - File Search Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/filesystem.dep.yml b/.licenses/npm/@theia/filesystem.dep.yml index d90792821..d56b1dd34 100644 --- a/.licenses/npm/@theia/filesystem.dep.yml +++ b/.licenses/npm/@theia/filesystem.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - FileSystem Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/keymaps.dep.yml b/.licenses/npm/@theia/keymaps.dep.yml index aa6f966db..aba29d706 100644 --- a/.licenses/npm/@theia/keymaps.dep.yml +++ b/.licenses/npm/@theia/keymaps.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Custom Keymaps Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/markers.dep.yml b/.licenses/npm/@theia/markers.dep.yml index aa1c0200b..26c5f5eec 100644 --- a/.licenses/npm/@theia/markers.dep.yml +++ b/.licenses/npm/@theia/markers.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Markers Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/messages.dep.yml b/.licenses/npm/@theia/messages.dep.yml index 1d354e5ce..8da2b3446 100644 --- a/.licenses/npm/@theia/messages.dep.yml +++ b/.licenses/npm/@theia/messages.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Messages Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/monaco-editor-core.dep.yml b/.licenses/npm/@theia/monaco-editor-core.dep.yml index 927fd84ed..e15fc2dcb 100644 --- a/.licenses/npm/@theia/monaco-editor-core.dep.yml +++ b/.licenses/npm/@theia/monaco-editor-core.dep.yml @@ -4,7 +4,7 @@ version: 1.83.101 type: npm summary: A browser based code editor homepage: -license: other +license: mit licenses: - sources: LICENSE text: | diff --git a/.licenses/npm/@theia/monaco.dep.yml b/.licenses/npm/@theia/monaco.dep.yml index e64baa69d..b197ed9f0 100644 --- a/.licenses/npm/@theia/monaco.dep.yml +++ b/.licenses/npm/@theia/monaco.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Monaco Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/navigator.dep.yml b/.licenses/npm/@theia/navigator.dep.yml index d3a9f7751..da84599af 100644 --- a/.licenses/npm/@theia/navigator.dep.yml +++ b/.licenses/npm/@theia/navigator.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Navigator Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/notebook.dep.yml b/.licenses/npm/@theia/notebook.dep.yml index cabb06f59..0672c51ed 100644 --- a/.licenses/npm/@theia/notebook.dep.yml +++ b/.licenses/npm/@theia/notebook.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Notebook Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/outline-view.dep.yml b/.licenses/npm/@theia/outline-view.dep.yml index 73d29a7a5..f27394db3 100644 --- a/.licenses/npm/@theia/outline-view.dep.yml +++ b/.licenses/npm/@theia/outline-view.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Outline View Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/output.dep.yml b/.licenses/npm/@theia/output.dep.yml index 38b4b9093..02bbc509a 100644 --- a/.licenses/npm/@theia/output.dep.yml +++ b/.licenses/npm/@theia/output.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Output Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/plugin-ext-vscode.dep.yml b/.licenses/npm/@theia/plugin-ext-vscode.dep.yml index 8a721290f..83a603624 100644 --- a/.licenses/npm/@theia/plugin-ext-vscode.dep.yml +++ b/.licenses/npm/@theia/plugin-ext-vscode.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Plugin Extension for VsCode homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/plugin-ext.dep.yml b/.licenses/npm/@theia/plugin-ext.dep.yml index e765319e2..690b24893 100644 --- a/.licenses/npm/@theia/plugin-ext.dep.yml +++ b/.licenses/npm/@theia/plugin-ext.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Plugin Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/plugin.dep.yml b/.licenses/npm/@theia/plugin.dep.yml index e564a50e0..ed9ed224d 100644 --- a/.licenses/npm/@theia/plugin.dep.yml +++ b/.licenses/npm/@theia/plugin.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Plugin API homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/preferences.dep.yml b/.licenses/npm/@theia/preferences.dep.yml index 1bdeaa439..c5d35ee32 100644 --- a/.licenses/npm/@theia/preferences.dep.yml +++ b/.licenses/npm/@theia/preferences.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Preferences Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/process.dep.yml b/.licenses/npm/@theia/process.dep.yml index 3ac8d359e..84fac7060 100644 --- a/.licenses/npm/@theia/process.dep.yml +++ b/.licenses/npm/@theia/process.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia process support. homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/request.dep.yml b/.licenses/npm/@theia/request.dep.yml index 2150a7eb5..b55da55ae 100644 --- a/.licenses/npm/@theia/request.dep.yml +++ b/.licenses/npm/@theia/request.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia Proxy-Aware Request Service homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/scm.dep.yml b/.licenses/npm/@theia/scm.dep.yml index 179cbd6b1..21110df6a 100644 --- a/.licenses/npm/@theia/scm.dep.yml +++ b/.licenses/npm/@theia/scm.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Source control Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/search-in-workspace.dep.yml b/.licenses/npm/@theia/search-in-workspace.dep.yml index 05b0c4ba5..21f8cac37 100644 --- a/.licenses/npm/@theia/search-in-workspace.dep.yml +++ b/.licenses/npm/@theia/search-in-workspace.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Search in workspace homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/task.dep.yml b/.licenses/npm/@theia/task.dep.yml index 19159864f..de6c34950 100644 --- a/.licenses/npm/@theia/task.dep.yml +++ b/.licenses/npm/@theia/task.dep.yml @@ -5,7 +5,7 @@ type: npm summary: Theia - Task extension. This extension adds support for executing raw or terminal processes in the backend. homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/terminal.dep.yml b/.licenses/npm/@theia/terminal.dep.yml index 832849a5c..cde5bc38c 100644 --- a/.licenses/npm/@theia/terminal.dep.yml +++ b/.licenses/npm/@theia/terminal.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Terminal Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/test.dep.yml b/.licenses/npm/@theia/test.dep.yml index 9413105a5..9064bd1e8 100644 --- a/.licenses/npm/@theia/test.dep.yml +++ b/.licenses/npm/@theia/test.dep.yml @@ -4,6 +4,6 @@ version: 1.57.0 type: npm summary: Theia - Test Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: [] notices: [] diff --git a/.licenses/npm/@theia/timeline.dep.yml b/.licenses/npm/@theia/timeline.dep.yml index 0fc5883cd..4fc31576e 100644 --- a/.licenses/npm/@theia/timeline.dep.yml +++ b/.licenses/npm/@theia/timeline.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Timeline Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/typehierarchy.dep.yml b/.licenses/npm/@theia/typehierarchy.dep.yml index e3e867a7f..9ea1e3a1e 100644 --- a/.licenses/npm/@theia/typehierarchy.dep.yml +++ b/.licenses/npm/@theia/typehierarchy.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Type Hierarchy Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/userstorage.dep.yml b/.licenses/npm/@theia/userstorage.dep.yml index 07eab0ad6..0e131f311 100644 --- a/.licenses/npm/@theia/userstorage.dep.yml +++ b/.licenses/npm/@theia/userstorage.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - User Storage Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/variable-resolver.dep.yml b/.licenses/npm/@theia/variable-resolver.dep.yml index a42973684..442a9946c 100644 --- a/.licenses/npm/@theia/variable-resolver.dep.yml +++ b/.licenses/npm/@theia/variable-resolver.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Variable Resolver Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' diff --git a/.licenses/npm/@theia/workspace.dep.yml b/.licenses/npm/@theia/workspace.dep.yml index ec86ca7a0..47bff8bd0 100644 --- a/.licenses/npm/@theia/workspace.dep.yml +++ b/.licenses/npm/@theia/workspace.dep.yml @@ -4,7 +4,7 @@ version: 1.57.0 type: npm summary: Theia - Workspace Extension homepage: https://github.com/eclipse-theia/theia -license: other +license: epl-2.0 # https://github.com/eclipse-theia/theia?tab=readme-ov-file#license licenses: - sources: README.md text: '' From d6420e97a69d3c68137b5345c3ed58ddc59d8f46 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 22 Dec 2025 18:00:15 +0100 Subject: [PATCH 5/5] Some refinements to licensed config --- .licensed.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.licensed.yml b/.licensed.yml index 036f39135..8e350a833 100644 --- a/.licensed.yml +++ b/.licensed.yml @@ -95,10 +95,10 @@ allowed: # The following are based on individual license text - eupl-1.2 - - epl-2.0 # https://interoperable-europe.ec.europa.eu/licence/compatibility-check/EPL-2.0/AGPL-3.0-only + - epl-2.0 # https://interoperable-europe.ec.europa.eu/licence/compatibility-check/EPL-2.0/AGPL-3.0-only + - 0bsd # https://interoperable-europe.ec.europa.eu/licence/compatibility-check/0bsd/AGPL-3.0-only + - CC-BY-4.0 # https://interoperable-europe.ec.europa.eu/licence/compatibility-check/CC-BY-4.0/AGPL-3.0-only # to check - - 0bsd - - blueoak-1.0.0 - - Python-2.0 - - OFL-1.1 - - CC-BY-4.0 \ No newline at end of file + #- blueoak-1.0.0 + #- Python-2.0 + #- OFL-1.1 \ No newline at end of file